/* nn-core/assets/css/frontend.css — shared booking UI primitives v1.0.0 */

.nn-price {
	font-family: var(--font-mono, 'JetBrains Mono', monospace);
	font-weight: 700;
	color: var(--saffron-2, #C97F0F);
}
.nn-price-original {
	color: var(--faint, #9AA3BD);
	text-decoration: line-through;
	font-size: 0.85em;
	margin-left: 6px;
	font-weight: 400;
}

/* Booking widget shell — used by tour/houseboat/hotel detail pages */
.nn-booking-widget {
	background: var(--surface, #fff);
	border: 1px solid var(--border, #E5E9F0);
	border-radius: var(--radius-lg, 16px);
	padding: 22px;
	box-shadow: var(--shadow, 0 8px 24px rgba(10,15,31,.06));
	position: sticky;
	top: 80px;
}
.nn-booking-widget-head {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--border-soft, #EEF1F6);
}
.nn-booking-widget-price {
	font-family: var(--font-display, 'Instrument Serif', serif);
	font-size: 32px;
	color: var(--brand, #2456E8);
	font-style: italic;
	font-weight: 400;
	line-height: 1;
}
.nn-booking-widget-price-meta {
	font-size: 12px;
	color: var(--muted, #6B7693);
	font-family: var(--font-bn, 'Hind Siliguri', sans-serif);
	margin-top: 4px;
}
.nn-booking-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 12px;
}
.nn-booking-row label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted, #6B7693);
	font-family: var(--font-mono, monospace);
}
.nn-booking-row input,
.nn-booking-row select {
	height: 42px;
	padding: 0 12px;
	border: 1.5px solid var(--border, #E5E9F0);
	border-radius: 10px;
	background: #fff;
	font-family: var(--font-bn, 'Hind Siliguri', sans-serif);
	font-size: 14px;
	color: var(--ink, #0A0F1F);
}
.nn-booking-row input:focus,
.nn-booking-row select:focus {
	border-color: var(--brand, #2456E8);
	box-shadow: 0 0 0 3px var(--brand-glow, rgba(36,86,232,.15));
	outline: none;
}

.nn-stepper {
	display: flex;
	align-items: center;
	border: 1.5px solid var(--border, #E5E9F0);
	border-radius: 10px;
	overflow: hidden;
	height: 42px;
	background: #fff;
}
.nn-stepper button {
	width: 36px;
	height: 100%;
	background: none;
	border: 0;
	font-size: 16px;
	cursor: pointer;
	color: var(--text, #3D4A6B);
}
.nn-stepper button:hover { background: var(--bg-alt, #F3F5F8); }
.nn-stepper span {
	flex: 1;
	text-align: center;
	font-family: var(--font-mono, monospace);
	font-weight: 600;
}

.nn-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 48px;
	background: var(--ink, #0A0F1F);
	color: #fff;
	border: 0;
	border-radius: 10px;
	font-family: var(--font-bn, 'Hind Siliguri', sans-serif);
	font-weight: 700;
	font-size: 14.5px;
	cursor: pointer;
	transition: all 0.18s;
}
.nn-cta:hover {
	background: var(--brand, #2456E8);
	box-shadow: 0 0 0 1px rgba(36,86,232,.15), 0 8px 32px rgba(36,86,232,.16);
	transform: translateY(-1px);
}
.nn-cta-whatsapp {
	background: #1FAA5C;
	margin-top: 8px;
}
.nn-cta-whatsapp:hover { background: #178a48; box-shadow: none; }

.nn-trust-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 12px;
	color: var(--muted, #6B7693);
	margin-top: 10px;
	font-family: var(--font-bn, sans-serif);
}

.nn-rating-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--saffron, #E89B2B);
}
