/* ==========================================================================
   410 BARBERSHOP — BESPOKE ARCHITECTURAL DESIGN SYSTEM
   Dark Obsidian / Brushed Titanium / Mechanical Amber Neon
   ========================================================================== */

:root {
	--bg-void: #07080b;
	--bg-base: #0d1017;
	--bg-surface: #131722;
	--bg-card: #181e2b;
	--bg-card-hover: #1f2737;
	--bg-glass: rgba(19, 23, 34, 0.75);
	--bg-glass-card: rgba(24, 30, 43, 0.65);

	--amber-500: #f59e0b;
	--amber-400: #fbbf24;
	--amber-600: #d97706;
	--amber-glow: rgba(245, 158, 11, 0.22);
	--amber-glow-strong: rgba(245, 158, 11, 0.45);
	--amber-surface: rgba(245, 158, 11, 0.08);

	--titanium-100: #f1f5f9;
	--titanium-200: #e2e8f0;
	--titanium-300: #cbd5e1;
	--titanium-400: #94a3b8;
	--titanium-500: #64748b;
	--titanium-700: #334155;
	--titanium-800: #1e293b;
	--border-subtle: #222b3d;
	--border-focus: #f59e0b;

	--emerald-500: #10b981;
	--emerald-glow: rgba(16, 185, 129, 0.2);

	--font-display: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-full: 9999px;

	--shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
	--shadow-glass: 0 12px 40px -10px rgba(0, 0, 0, 0.6);
	--shadow-glow: 0 0 35px var(--amber-glow);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-void);
	color: var(--titanium-200);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
}

body {
	min-height: 100vh;
	background: 
		radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 10% 45%, rgba(30, 41, 59, 0.45) 0%, transparent 50%),
		radial-gradient(circle at 90% 85%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
		var(--bg-void);
	background-attachment: fixed;
	line-height: 1.55;
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .font-display {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--titanium-100);
}

a {
	color: inherit;
	text-decoration: none;
}

button, input, select, textarea {
	font-family: inherit;
}

/* Global App Shell */
.app-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.main-content {
	flex: 1;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	background: rgba(13, 16, 23, 0.85);
	border-bottom: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

.nav-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0.85rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	text-decoration: none;
}

.brand-symbol {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, #2a313e 0%, #161b24 100%);
	border: 1px solid var(--amber-500);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amber-400);
	box-shadow: 0 0 16px var(--amber-glow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo:hover .brand-symbol {
	transform: scale(1.05) rotate(2deg);
	box-shadow: 0 0 24px var(--amber-glow-strong);
}

.brand-text {
	display: flex;
	flex-direction: column;
}

.brand-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--titanium-100);
	line-height: 1.1;
}

.brand-subtitle {
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber-400);
	font-weight: 600;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-link-btn {
	background: transparent;
	border: 1px solid transparent;
	color: var(--titanium-300);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.nav-link-btn:hover {
	color: var(--titanium-100);
	background: rgba(255, 255, 255, 0.04);
}

.nav-link-btn.active {
	color: var(--amber-400);
	background: var(--amber-surface);
	border-color: rgba(245, 158, 11, 0.3);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.phone-quick-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.85rem;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-subtle);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--titanium-200);
	transition: all 0.2s ease;
}

.phone-quick-link:hover {
	border-color: var(--titanium-400);
	color: var(--amber-400);
}

.btn-primary-action {
	background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-600) 100%);
	color: #0b0d11;
	border: none;
	padding: 0.55rem 1.25rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: 0 4px 18px var(--amber-glow);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-primary-action:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px var(--amber-glow-strong);
	filter: brightness(1.08);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
	display: none;
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--titanium-200);
	padding: 0.5rem;
	border-radius: var(--radius-md);
	cursor: pointer;
}

/* ==========================================================================
   HERO SECTION — ASYMMETRIC CINEMATIC COMPOSITION
   ========================================================================== */
.hero-wrapper {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 3.5rem 1.5rem 4.5rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-badge-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.live-status-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #34d399;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.35rem 0.8rem;
	border-radius: var(--radius-full);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.pulse-dot {
	width: 7px;
	height: 7px;
	background-color: var(--emerald-500);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--emerald-500);
	animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.85); }
}

.rating-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	padding: 0.35rem 0.8rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--titanium-100);
}

.hero-heading {
	font-size: clamp(2.5rem, 5.5vw, 4.2rem);
	line-height: 1.05;
	font-weight: 800;
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
}

.hero-heading .amber-gradient-text {
	background: linear-gradient(135deg, #ffffff 30%, var(--amber-400) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-heading .amber-italic {
	font-style: italic;
	color: var(--amber-400);
	-webkit-text-fill-color: var(--amber-400);
}

.hero-lede {
	font-size: 1.15rem;
	color: var(--titanium-300);
	line-height: 1.7;
	max-width: 580px;
	margin-bottom: 2.2rem;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-bottom: 2.5rem;
}

.btn-hero-primary {
	background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-600) 100%);
	color: #090a0f;
	padding: 0.95rem 2rem;
	border-radius: var(--radius-full);
	font-weight: 800;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	box-shadow: 0 8px 30px var(--amber-glow-strong);
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
}

.btn-hero-secondary {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	color: var(--titanium-100);
	padding: 0.95rem 1.8rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
	background: var(--bg-card-hover);
	border-color: var(--titanium-500);
	transform: translateY(-2px);
}

/* Asymmetric Hero Showcase Cards */
.hero-visual-cluster {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.hero-main-card {
	background: linear-gradient(145deg, rgba(26, 33, 47, 0.85) 0%, rgba(14, 18, 27, 0.95) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: var(--shadow-glass);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
}

.hero-card-glow {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 140px;
	height: 140px;
	background: radial-gradient(circle, var(--amber-glow-strong) 0%, transparent 70%);
	pointer-events: none;
}

.card-top-accent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.tag-monogram {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--amber-400);
	letter-spacing: 0.1em;
	background: rgba(245, 158, 11, 0.1);
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(245, 158, 11, 0.2);
}

.shop-highlights-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	margin-bottom: 1.5rem;
}

.shop-highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.92rem;
	color: var(--titanium-200);
}

.check-icon-amber {
	color: var(--amber-400);
	flex-shrink: 0;
	margin-top: 2px;
}

.hero-sub-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.stat-tile {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	transition: all 0.25s ease;
}

.stat-tile:hover {
	border-color: rgba(245, 158, 11, 0.4);
	transform: translateY(-2px);
}

.stat-tile-value {
	font-family: var(--font-display);
	font-size: 1.85rem;
	font-weight: 800;
	color: var(--amber-400);
	line-height: 1;
	margin-bottom: 0.35rem;
}

.stat-tile-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--titanium-400);
	font-weight: 600;
}

/* ==========================================================================
   SECTION COMMON WRAPPERS
   ========================================================================== */
.section-wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 4rem 1.5rem;
}

.section-header {
	margin-bottom: 2.5rem;
}

.section-header.centered {
	text-align: center;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--amber-400);
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	line-height: 1.15;
	margin-bottom: 1rem;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--titanium-400);
	line-height: 1.6;
}

/* ==========================================================================
   SERVICES SHOWCASE & FILTER SYSTEM
   ========================================================================== */
.filter-tabs-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2.2rem;
	justify-content: center;
}

.filter-pill {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	color: var(--titanium-300);
	padding: 0.5rem 1.15rem;
	border-radius: var(--radius-full);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-pill:hover {
	background: var(--bg-card-hover);
	color: var(--titanium-100);
	border-color: var(--titanium-500);
}

.filter-pill.active {
	background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
	color: #0b0d11;
	border-color: transparent;
	font-weight: 700;
	box-shadow: 0 4px 15px var(--amber-glow);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 1.75rem;
}

.service-card {
	background: linear-gradient(160deg, rgba(24, 30, 43, 0.8) 0%, rgba(15, 19, 28, 0.95) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	backdrop-filter: blur(12px);
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(245, 158, 11, 0.45);
	box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.12);
}

.service-card-top {
	margin-bottom: 1.25rem;
}

.service-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.85rem;
}

.service-category-tag {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--amber-400);
}

.service-badge-chip {
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.2rem 0.55rem;
	border-radius: var(--radius-sm);
	background: rgba(245, 158, 11, 0.15);
	color: var(--amber-300);
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.service-title {
	font-size: 1.3rem;
	line-height: 1.25;
	margin-bottom: 0.65rem;
	color: var(--titanium-100);
}

.service-desc {
	font-size: 0.88rem;
	color: var(--titanium-400);
	line-height: 1.55;
	margin-bottom: 1.25rem;
}

.service-includes-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--border-subtle);
}

.service-includes-item {
	font-size: 0.82rem;
	color: var(--titanium-300);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.service-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.service-price-block {
	display: flex;
	flex-direction: column;
}

.service-price-val {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 800;
	color: var(--titanium-100);
	line-height: 1;
}

.service-duration-val {
	font-size: 0.75rem;
	color: var(--titanium-400);
	font-weight: 500;
	margin-top: 2px;
}

.btn-book-service {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--amber-400);
	padding: 0.55rem 1.1rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.btn-book-service:hover {
	background: var(--amber-500);
	color: #0b0d11;
	border-color: var(--amber-500);
	box-shadow: 0 4px 15px var(--amber-glow);
}

/* ==========================================================================
   BOOKING PAGE & ENGINE
   ========================================================================== */
.booking-page-layout {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 5rem;
}

.booking-header-box {
	text-align: center;
	margin-bottom: 2.5rem;
}

.booking-steps-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.step-indicator {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--titanium-500);
}

.step-indicator.active {
	color: var(--amber-400);
}

.step-indicator.completed {
	color: var(--emerald-500);
}

.step-badge {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
}

.step-indicator.active .step-badge {
	background: var(--amber-500);
	color: #0b0d11;
	border-color: var(--amber-400);
	box-shadow: 0 0 12px var(--amber-glow);
}

.step-indicator.completed .step-badge {
	background: var(--emerald-500);
	color: #0b0d11;
	border-color: var(--emerald-500);
}

.step-divider-line {
	width: 32px;
	height: 1px;
	background: var(--border-subtle);
}

.booking-container-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.85fr;
	gap: 2rem;
	align-items: start;
}

.booking-form-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2.2rem;
	box-shadow: var(--shadow-glass);
}

.form-group-title {
	font-size: 1.15rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--titanium-100);
}

.form-field {
	margin-bottom: 1.35rem;
}

.form-label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--titanium-400);
	margin-bottom: 0.45rem;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	color: var(--titanium-100);
	font-size: 0.95rem;
	transition: all 0.2s ease;
	outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	border-color: var(--amber-500);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-hint {
	font-size: 0.75rem;
	color: var(--titanium-500);
	margin-top: 0.35rem;
}

.service-select-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-height: 300px;
	overflow-y: auto;
	padding-right: 0.25rem;
}

.service-select-item {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 0.85rem 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.2s ease;
}

.service-select-item:hover {
	border-color: var(--titanium-500);
	background: rgba(255, 255, 255, 0.03);
}

.service-select-item.selected {
	border-color: var(--amber-500);
	background: var(--amber-surface);
	box-shadow: 0 0 15px rgba(245, 158, 11, 0.12);
}

.barber-cards-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.barber-choice-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 0.85rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.barber-choice-card:hover {
	border-color: var(--titanium-400);
}

.barber-choice-card.selected {
	border-color: var(--amber-500);
	background: var(--amber-surface);
}

.barber-avatar-sm {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bg-card-hover);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.45rem;
	color: var(--amber-400);
	border: 1px solid var(--border-subtle);
}

.barber-name-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--titanium-100);
}

.barber-role-label {
	font-size: 0.7rem;
	color: var(--titanium-400);
}

.quick-dates-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.quick-date-btn {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--titanium-300);
	padding: 0.45rem 0.85rem;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quick-date-btn.selected {
	border-color: var(--amber-500);
	color: var(--amber-400);
	background: var(--amber-surface);
}

.time-slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.time-slot-btn {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--titanium-200);
	padding: 0.5rem 0.25rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-mono);
	font-size: 0.82rem;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
}

.time-slot-btn:hover {
	border-color: var(--titanium-400);
}

.time-slot-btn.selected {
	background: var(--amber-500);
	color: #0b0d11;
	border-color: var(--amber-400);
	font-weight: 700;
	box-shadow: 0 0 10px var(--amber-glow);
}

/* Booking Summary Card */
.booking-summary-sticky {
	position: sticky;
	top: 90px;
	background: linear-gradient(150deg, rgba(24, 30, 43, 0.95) 0%, rgba(15, 19, 28, 0.98) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 1.75rem;
	box-shadow: var(--shadow-glass);
}

.summary-title {
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.summary-details-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin-bottom: 1.5rem;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 0.88rem;
}

.summary-item-label {
	color: var(--titanium-400);
}

.summary-item-val {
	font-weight: 600;
	color: var(--titanium-100);
	text-align: right;
}

.summary-total-box {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1rem;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.total-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--titanium-400);
	font-weight: 600;
}

.total-amount {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--amber-400);
}

.shop-perks-reminder {
	font-size: 0.78rem;
	color: var(--titanium-400);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.5rem;
}

.perk-line {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Digital Boarding Pass Ticket */
.ticket-container {
	background: linear-gradient(135deg, #18202d 0%, #10141d 100%);
	border: 2px solid var(--amber-500);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	box-shadow: 0 0 50px rgba(245, 158, 11, 0.25);
	position: relative;
	overflow: hidden;
	margin: 1.5rem auto;
	max-width: 680px;
}

.ticket-notch-left, .ticket-notch-right {
	position: absolute;
	top: 50%;
	width: 28px;
	height: 28px;
	background: var(--bg-void);
	border-radius: 50%;
	transform: translateY(-50%);
	border: 1px solid var(--amber-500);
}

.ticket-notch-left { left: -14px; }
.ticket-notch-right { right: -14px; }

.ticket-header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.75rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px dashed var(--border-subtle);
}

.ticket-code-badge {
	font-family: var(--font-mono);
	font-size: 1rem;
	font-weight: 700;
	color: var(--amber-400);
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid var(--amber-500);
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-md);
}

.ticket-data-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 1.75rem;
}

.ticket-field-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--titanium-400);
	margin-bottom: 0.25rem;
}

.ticket-field-val {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--titanium-100);
}

.ticket-actions-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   REVIEWS & SOCIAL PROOF SECTION
   ========================================================================== */
.reviews-section {
	background: rgba(13, 16, 23, 0.6);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	padding: 4.5rem 1.5rem;
}

.reviews-header-summary {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.review-score-box {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.giant-rating-num {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--amber-400);
	line-height: 1;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.review-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.25s ease;
}

.review-card:hover {
	border-color: rgba(245, 158, 11, 0.35);
	transform: translateY(-3px);
}

.review-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 0.75rem;
}

.review-author-name {
	font-weight: 700;
	color: var(--titanium-100);
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.verified-pill {
	font-size: 0.68rem;
	background: rgba(16, 185, 129, 0.15);
	color: #34d399;
	padding: 0.15rem 0.45rem;
	border-radius: var(--radius-full);
	font-weight: 700;
}

.review-body-text {
	font-size: 0.88rem;
	color: var(--titanium-300);
	line-height: 1.6;
	margin-bottom: 1rem;
	font-style: italic;
}

.review-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	color: var(--titanium-500);
	padding-top: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   LOCATION & SHOP DETAILS MODULE
   ========================================================================== */
.location-card-container {
	background: linear-gradient(145deg, var(--bg-card) 0%, #10141e 100%);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	box-shadow: var(--shadow-glass);
}

.location-info-pane {
	padding: 2.75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.info-item-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.info-item-icon {
	width: 38px;
	height: 38px;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amber-400);
	flex-shrink: 0;
}

.info-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--titanium-400);
	margin-bottom: 0.2rem;
}

.info-val {
	font-size: 1rem;
	font-weight: 600;
	color: var(--titanium-100);
}

.location-map-pane {
	background: #0f131a;
	border-left: 1px solid var(--border-subtle);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.interactive-map-mock {
	background: radial-gradient(circle at center, #1b2333 0%, #0d1117 100%);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2.5rem 1.5rem;
	text-align: center;
	position: relative;
}

.map-radar-pin {
	width: 56px;
	height: 56px;
	background: var(--amber-500);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0b0d11;
	margin: 0 auto 1.25rem;
	box-shadow: 0 0 30px var(--amber-glow-strong);
	animation: pinFloat 3s ease-in-out infinite;
}

@keyframes pinFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background: #08090d;
	border-top: 1px solid var(--border-subtle);
	padding: 4rem 1.5rem 2rem;
	margin-top: auto;
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.footer-top-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
	margin-bottom: 3.5rem;
}

.footer-col-title {
	font-family: var(--font-display);
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	color: var(--titanium-100);
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.footer-links-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.88rem;
	color: var(--titanium-400);
}

.footer-links-list a:hover, .footer-links-list button:hover {
	color: var(--amber-400);
}

.footer-legal-bar {
	padding-top: 2rem;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	font-size: 0.8rem;
	color: var(--titanium-500);
}

/* ==========================================================================
   UI HELPER COMPONENTS (Loading, Empty, Error, Stars)
   ========================================================================== */
.loading-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 1.5rem;
	gap: 1.25rem;
}

.barber-pole-spinner {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid var(--border-subtle);
	border-top-color: var(--amber-500);
	border-right-color: #ef4444;
	animation: spin 0.85s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.loading-label {
	font-size: 0.9rem;
	color: var(--titanium-400);
	font-family: var(--font-mono);
}

.empty-state {
	text-align: center;
	padding: 4rem 1.5rem;
	background: var(--bg-card);
	border: 1px dashed var(--border-subtle);
	border-radius: var(--radius-xl);
	margin: 2rem 0;
}

.empty-icon-box {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--bg-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--titanium-400);
	margin: 0 auto 1rem;
}

.empty-title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--titanium-100);
}

.empty-desc {
	font-size: 0.9rem;
	color: var(--titanium-400);
	max-width: 420px;
	margin: 0 auto;
}

.error-strip {
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #fca5a5;
	padding: 0.85rem 1.25rem;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--amber-400);
}

.star-filled {
	color: var(--amber-400);
}

.star-empty {
	color: var(--titanium-700);
}

/* 404 Fallback Screen */
.error-404-container {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 1.5rem;
	text-align: center;
}

.error-404-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 3.5rem 2.5rem;
	max-width: 560px;
	box-shadow: var(--shadow-glass);
}

.error-code-giant {
	font-family: var(--font-display);
	font-size: 6rem;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, var(--amber-400) 0%, #ef4444 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
}

/* Modal Dialog Backdrop & Card */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(7, 8, 11, 0.85);
	backdrop-filter: blur(8px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.modal-dialog-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	max-width: 520px;
	width: 100%;
	box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 960px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.booking-container-grid {
		grid-template-columns: 1fr;
	}
	.location-card-container {
		grid-template-columns: 1fr;
	}
	.location-map-pane {
		border-left: none;
		border-top: 1px solid var(--border-subtle);
	}
	.footer-top-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.nav-links.mobile-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg-surface);
		border-bottom: 1px solid var(--border-subtle);
		padding: 1rem;
		gap: 0.5rem;
	}
	.mobile-menu-btn {
		display: block;
	}
	.phone-quick-link {
		display: none;
	}
	.footer-top-grid {
		grid-template-columns: 1fr;
	}
	.ticket-data-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-wrapper {
		padding-top: 2rem;
	}
	.hero-cta-group {
		flex-direction: column;
		width: 100%;
	}
	.btn-hero-primary, .btn-hero-secondary {
		width: 100%;
		justify-content: center;
	}
	.hero-sub-grid {
		grid-template-columns: 1fr;
	}
}
