:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: rgba(17,17,17,.72);
  --subtle: rgba(17,17,17,.08);
  --blush: #f4d7dc;
  --nude: #ead6c7;
  --beige: #dfc8ac;
  --gold: #c6a15b;
  --card: rgba(255,255,255,.9);
  --shadow: 0 12px 30px rgba(17,17,17,.10);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
  --serif: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html{ color-scheme: light; }
body{
  margin: 0;
  background: radial-gradient(1200px 800px at 14% 0%, rgba(244,215,220,.55), transparent 56%),
    radial-gradient(1000px 680px at 98% 10%, rgba(234,214,199,.48), transparent 55%),
    radial-gradient(1000px 700px at 50% 100%, rgba(223,200,172,.35), transparent 52%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
img{ max-width: 100%; display: block; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--subtle);
  border-radius: 999px;
}
.skip-link:focus{ left: 12px; z-index: 10000; }

.container{
  width: min(100%, calc(var(--max) + 40px));
  margin-inline: auto;
  padding-inline: 20px;
}

.topline{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.topline::before{
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.h1, h1{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(34px, 5.8vw, 56px);
  margin: 12px 0 10px;
}
.h2, h2{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(26px, 4.3vw, 40px);
  margin: 0 0 10px;
}
.h3, h3{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-size: 20px;
  margin: 0 0 8px;
}
p{ margin: 0 0 14px; color: var(--muted); }

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--subtle);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  min-height: 44px;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(198,161,91,.95), rgba(198,161,91,.70));
  color: #111;
  box-shadow: 0 10px 24px rgba(198,161,91,.22);
}
.btn-primary:hover{
  background: linear-gradient(135deg, rgba(198,161,91,1), rgba(198,161,91,.74));
  box-shadow: 0 14px 34px rgba(198,161,91,.24);
  text-decoration: none;
}
.btn-ghost{
  border-color: rgba(17,17,17,.16);
  background: rgba(255,255,255,.65);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.85); text-decoration: none; }
.btn-dark{
  background: #111;
  color: #fff;
}
.btn-dark:hover{ background: #1a1a1a; text-decoration: none; }
.btn[aria-disabled="true"], .btn:disabled{
  opacity: .55;
  pointer-events: none;
}

.badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(17,17,17,.78);
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.72);
  padding: 8px 10px;
  border-radius: 999px;
}
.badge-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(17,17,17,.08);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(14px);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
}
.brand{
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: 190px;
}
.brand strong{
  font-family: var(--serif);
  letter-spacing: .03em;
  font-weight: 600;
  text-transform: uppercase;
}
.brand span{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(17,17,17,.64);
}
.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.16);
  background: rgba(255,255,255,.75);
  cursor: pointer;
}
.nav-toggle svg{ width: 18px; height: 18px; }
.nav{
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 14px;
}
.nav a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
}
.nav a:hover{ background: rgba(17,17,17,.06); }
.nav .nav-cta{ margin-top: 4px; }

body[data-nav="open"] .nav{ display: flex; }

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .25rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.175);
  z-index: 1000;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

@media (min-width: 880px){
  .nav-toggle{ display: none; }
  .header-inner{ padding: 14px 0; }
  .nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
  }
  .nav a{ padding: 10px 10px; }
  .nav .nav-cta{ margin-top: 0; margin-left: 8px; }
}

.hero{
  padding: 34px 0 10px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.hero-card{
  border: 1px solid rgba(17,17,17,.08);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.hero-meta{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.hero-visual{
  border-radius: var(--radius);
  border: 1px solid rgba(17,17,17,.08);
  background: linear-gradient(135deg, rgba(244,215,220,.75), rgba(234,214,199,.70), rgba(223,200,172,.55));
  box-shadow: var(--shadow);
  min-height: 250px;
  overflow: hidden;
  position: relative;
}
.hero-visual::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(200px 140px at 18% 24%, rgba(198,161,91,.18), transparent 62%),
    radial-gradient(220px 160px at 72% 56%, rgba(255,255,255,.58), transparent 66%),
    radial-gradient(160px 140px at 74% 22%, rgba(17,17,17,.06), transparent 62%);
}
.hero-visual img.image-fill{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.placeholder-label{
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(17,17,17,.68);
}
.placeholder-label span{ font-family: var(--serif); letter-spacing: .08em; }
.image-loaded .placeholder-label{ display: none; }
.has-bg-image{
  background-size: cover;
  background-position: center;
}

/* Premium Image Pattern */
.img-frame{
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #fff;
}
.img-frame img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: auto;
}
.img-label{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(17,17,17,.82);
  background: linear-gradient(to top, rgba(255,255,255,.85), rgba(255,255,255,0));
}
.ratio-1x1{ aspect-ratio: 1 / 1; }
.ratio-4x3{ aspect-ratio: 4 / 3; }
.ratio-16x9{ aspect-ratio: 16 / 9; }
.ratio-3x4{ aspect-ratio: 3 / 4; }
.img-soft img{
  filter: contrast(1.02) saturate(1.02) brightness(1.01);
}

/* Cover Media Component */
.media-card{
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #fff;
}
.media-card::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255,255,255,.10), rgba(255,255,255,0) 60%);
}
.media-card .media{
  width: 100%;
  aspect-ratio: 4 / 3;
}
.media-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.ratio-hero{ aspect-ratio: 16 / 10; }
@media (max-width: 768px){
  .ratio-hero{ aspect-ratio: 4 / 3; }
}

@media (min-width: 900px){
  .hero{ padding: 50px 0 18px; }
  .hero-grid{ grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: stretch; }
  .hero-card{ padding: 26px; }
  .hero-visual{ min-height: 420px; }
}

.section{
  padding: 28px 0;
}
.section-head{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.card{
  border: 1px solid rgba(17,17,17,.08);
  background: rgba(255,255,255,.74);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 26px rgba(17,17,17,.07);
}
.card p{ margin-bottom: 0; }
.card-title{ display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.tag{
  font-size: 12px;
  color: rgba(17,17,17,.70);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.55);
  white-space: nowrap;
}
.card-actions{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

@media (min-width: 700px){
  .grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 980px){
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
}

.cta-banner{
  padding: 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(244,215,220,.62), transparent 54%),
    radial-gradient(1200px 640px at 100% 10%, rgba(234,214,199,.55), transparent 56%),
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.56));
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
.cta-banner .actions{ display: flex; flex-wrap: wrap; gap: 10px; }

@media (min-width: 880px){
  .cta-banner{ grid-template-columns: 1.3fr .7fr; }
  .cta-banner .actions{ justify-content: flex-end; }
}

.list{
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.70);
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 6px 0; }
.icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(198,161,91,.35);
  background: rgba(198,161,91,.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.icon svg{ width: 18px; height: 18px; }

.table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(17,17,17,.08);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 26px rgba(17,17,17,.06);
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(17,17,17,.07);
  text-align: left;
  vertical-align: top;
}
.table th{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(17,17,17,.70);
  background: rgba(17,17,17,.03);
}
.table tr:last-child td{ border-bottom: none; }
.table td:last-child{ text-align: right; font-weight: 600; color: rgba(17,17,17,.90); }

.note{
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,17,17,.08);
  color: rgba(17,17,17,.78);
}

.form{
  display: grid;
  gap: 12px;
}
.field{
  display: grid;
  gap: 7px;
}
.field label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(17,17,17,.68);
}
.field input, .field select, .field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,.16);
  background: rgba(255,255,255,.82);
  font: inherit;
}
.field textarea{ min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: rgba(198,161,91,.85);
  box-shadow: 0 0 0 4px rgba(198,161,91,.14);
}
.field .hint{ font-size: 13px; color: rgba(17,17,17,.62); margin-top: -2px; }
.two-col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 880px){
  .two-col{ grid-template-columns: 1fr 1fr; align-items: start; }
}

.site-footer{
  border-top: 1px solid rgba(17,17,17,.08);
  padding: 28px 0 46px;
  background: rgba(255,255,255,.55);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a{
  padding: 10px 12px;
  border: 1px solid rgba(17,17,17,.10);
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255,255,255,.70);
}
.footer-links a:hover{ background: rgba(255,255,255,.88); }
.copyright{
  font-size: 13px;
  color: rgba(17,17,17,.62);
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* WIZARD & BOOKING SPECIFIC STYLES */
.wizard-container {
  display: grid;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.wizard-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--subtle);
  z-index: 0;
  transform: translateY(-50%);
}
.step-indicator {
  position: relative;
  z-index: 1;
  background: var(--bg);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--subtle);
  color: var(--muted);
  transition: all 0.3s ease;
}
.step-indicator.active {
  border-color: var(--gold);
  color: var(--text);
  background: #fff;
}
.step-indicator.completed {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.wizard-step {
  display: none;
  animation: fadeIn 0.4s ease;
}
.wizard-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 600px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}

.selectable-card {
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative; /* Ensure clicks on label work well */
}
.selectable-card:hover {
  border-color: rgba(198,161,91,0.3);
  transform: translateY(-2px);
}
.selectable-card.selected {
  border-color: var(--gold);
  background: rgba(198,161,91,0.05);
}
/* Style the checkbox inside the card title */
.checkbox-card .card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkbox-card input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}
.checkbox-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
  margin-top: 15px;
}
.time-slot {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--subtle);
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
}
.time-slot:hover {
  background: rgba(198,161,91,0.1);
}
.time-slot.selected {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.summary-sidebar {
  background: #fdfbf7;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(198,161,91,0.15);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}
.summary-total {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 12px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--text);
}

.addon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.addon-row:hover { background: rgba(0,0,0,0.02); }
.addon-row input[type="checkbox"] { width: 18px; height: 18px; }

.hidden { display: none !important; }

/* --- BOOKING PAGE UNIQUE STYLES --- */

.booking-page {
  background: #fdfbf7;
  min-height: 100vh;
}

.booking-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Sidebar (Desktop) */
.booking-sidebar {
  display: none; /* Hidden on mobile */
  width: 320px;
  background: #fff;
  border-right: 1px solid var(--subtle);
  padding: 40px 30px;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  z-index: 10;
}

.booking-branding {
  margin-bottom: 60px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); text-decoration: none; }

.sidebar-logo h1 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0;
  line-height: 1.2;
}
.sidebar-logo span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* Vertical Progress */
.wizard-progress-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: auto;
}

.step-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.step-item.active, .step-item.completed {
  opacity: 1;
}

/* Vertical connecting line */
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 14px; /* Center of circle (30px width) */
  top: 46px;
  bottom: -10px;
  width: 1px;
  background: var(--subtle);
}
.step-item.completed:not(:last-child)::after {
  background: var(--gold);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  z-index: 1;
  transition: all 0.3s;
}

.step-item.active .step-num {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}
.step-item.completed .step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.step-text {
  display: flex;
  flex-direction: column;
}
.step-text strong {
  font-size: 14px;
  color: var(--text);
}
.step-text span {
  font-size: 12px;
  color: var(--muted);
}

/* Sidebar Footer */
.sidebar-footer {
  margin-top: 60px;
  border-top: 1px solid var(--subtle);
  padding-top: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* Main Content */
.booking-main {
  flex: 1;
  padding: 20px;
  width: 100%;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.close-btn {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--text);
}

/* Wizard container overrides for this layout */
.booking-main .wizard-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile Steps overrides */
.mobile-only { display: flex; }
@media (min-width: 1024px) {
  .mobile-only { display: none !important; }
}

/* Sticky Summary defaults */
.sticky-summary {
  display: none;
}

/* Desktop Media Query */
@media (min-width: 1024px) {
  .booking-wrapper {
    flex-direction: row;
    padding-left: 320px; /* Sidebar width */
  }
  .booking-sidebar {
    display: flex;
  }
  .booking-main {
    padding: 60px 80px;
    background: #fdfbf7;
  }
  .mobile-header {
    display: none;
  }

  /* 3-Column Layout: Sidebar | Form | Summary */
  .booking-main .wizard-container {
    max-width: 1200px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
  
  #booking-form {
    flex: 1;
    min-width: 0;
  }
  
  .sticky-summary {
    display: block;
    width: 320px;
    position: sticky;
    top: 40px;
    background: #fff;
    border: 1px solid var(--subtle);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 5;
  }
}

/* Mobile Summary Bar */
.mobile-summary-bar {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--subtle);
  padding: 0 20px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.mobile-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  cursor: pointer;
}

.mobile-total-info {
  display: flex;
  flex-direction: column;
}

.mobile-total-info .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.mobile-total-info .value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}

.mobile-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.mobile-toggle-btn svg {
  transition: transform 0.3s ease;
}

.mobile-summary-content {
  display: none;
  border-top: 1px solid var(--subtle);
  padding: 20px 0;
  max-height: 60vh;
  overflow-y: auto;
}

.mobile-summary-bar.open .mobile-summary-content {
  display: block;
}

.mobile-summary-bar.open .mobile-toggle-btn svg {
  transform: rotate(180deg);
}

/* Add extra padding to body so content isn't hidden behind bar */
@media (max-width: 1023px) {
  .booking-main {
    padding-bottom: 80px;
  }
}
