:root {
  --bg: #fff8ef;
  --ink: #1f1a17;
  --muted: #6e6258;
  --card: #ffffff;
  --line: #f0dcc3;
  --brand: #ff6b35;
  --brand-2: #ffd166;
  --brand-3: #06d6a0;
  --brand-4: #118ab2;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 14px 40px color-mix(in srgb, var(--brand) 14%, transparent);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--brand) 12%, transparent) 0, transparent 35%),
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--brand-4) 8%, transparent) 0, transparent 28%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--brand) 7%, transparent), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(6, 214, 160, 0.08), transparent 26%),
    radial-gradient(circle at 60% 85%, rgba(17, 138, 178, 0.08), transparent 28%);
  animation: ambientShift 16s ease-in-out infinite;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: #fff;
  border: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 180%;
  background: rgba(255, 255, 255, 0.35);
  top: -40%;
  left: -42%;
  transform: rotate(20deg);
  transition: left 0.45s ease;
}

.btn:hover::after {
  left: 120%;
}

.btn-primary {
  background: linear-gradient(92deg, var(--brand), color-mix(in srgb, var(--brand) 70%, white));
  color: #fff;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--brand) 35%, transparent);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 2px solid var(--brand);
  box-shadow: 0 2px 24px color-mix(in srgb, var(--brand) 18%, transparent);
}

.topbar-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  min-width: 180px;
}

.brand-title-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-name-text {
  font-size: 2rem;
  font-weight: 900;
  color: #2a1f1a;
  line-height: 1.1;
}

.brand.brand-stack .brand-logo {
  width: 108px;
  height: 50px;
  object-fit: contain;
}

.brand-location-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.brand-location-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  color: #6c5a4b;
}

.brand-location-select {
  min-width: 280px;
  max-width: min(55vw, 380px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #3f332a;
  font-weight: 700;
  padding: 0.34rem 0.55rem;
  outline: none;
}

.brand strong {
  color: var(--brand);
}

.brand-logo {
  width: auto;
  height: 40px;
  object-fit: contain;
}
.brand-logo-img { height: 36px; width: auto; display: inline-block; vertical-align: middle; }

.menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 0;
  justify-content: center;
  min-width: 0;
  flex-wrap: nowrap;
}

.menu a {
  font-weight: 700;
  font-size: 0.95rem;
  color: #51443b;
  white-space: nowrap;
}

.menu a.active {
  color: #e8663d;
  border-bottom: 2px solid #e8663d;
  padding-bottom: 2px;
}

.menu-item {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(56, 33, 17, 0.15);
  padding: 0.35rem;
  display: none;
  z-index: 50;
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.submenu a {
  display: block;
  padding: 0.42rem 0.5rem;
  border-radius: 8px;
  font-size: 0.84rem;
}

.submenu a:hover {
  background: color-mix(in srgb, var(--brand) 6%, white);
}

.menu-item:hover .submenu,
.menu-item:focus-within .submenu {
  display: block;
}

/* ── Hamburger toggle (hidden on desktop, visible on mobile) ───────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-toggle:hover { background: color-mix(in srgb, var(--brand) 8%, white); border-color: var(--brand); color: var(--brand); }
.nav-toggle svg { display: block; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  background: rgba(0,0,0,.35);
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 32px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-close {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.mobile-nav-close:hover { background: var(--bg); color: var(--ink); }
.mobile-nav-links {
  flex: 1;
  padding: 0.75rem 0;
}
.mobile-nav-links a,
.mobile-nav-links .mobile-nav-group-label {
  display: block;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 0;
}
.mobile-nav-links a:hover { background: color-mix(in srgb, var(--brand) 6%, white); color: var(--brand); }
.mobile-nav-links [hidden] { display: none !important; }
.mobile-nav-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  padding-top: 1.1rem;
  padding-bottom: 0.25rem;
}
.mobile-nav-links a.mobile-sub {
  padding-left: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.mobile-nav-links a.mobile-sub:hover { color: var(--brand); }

.mobile-nav-location-row {
  padding: 0.85rem 1.25rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-location-select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.mobile-nav-location-row:empty { display: none; }

.mobile-nav-logout {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
}
.mobile-nav-logout:hover { background: color-mix(in srgb, var(--brand) 6%, white); }

.nav-open > .mobile-nav { display: block; }

/* ── Auth topbar button (injected by auth-topbar.js) ──────────────────── */
.auth-login-link {
  display: inline-block;
  padding: 0.28rem 0.95rem;
  border: 2px solid var(--brand);
  border-radius: 20px;
  color: var(--brand) !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.auth-login-link:hover {
  background: var(--brand);
  color: #fff !important;
}
.auth-user-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  white-space: nowrap;
}
.auth-avatar {
  font-size: 1rem;
  line-height: 1;
}

/* Two-column submenu — used for Addons (up to ~20 items) */
.submenu--two-col {
  min-width: 360px;
  grid-template-columns: 1fr 1fr;
  /* right-anchor so the wide dropdown doesn't clip the viewport edge */
  left: auto;
  right: 0;
}

.menu-item:hover .submenu--two-col,
.menu-item:focus-within .submenu--two-col {
  display: grid;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0;
  justify-self: end;
  min-width: 0;
}

.top-location-host {
  display: flex;
  align-items: flex-end;
  margin-right: 0.35rem;
}

.top-actions .brand-location-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
}

.top-actions .brand-location-label {
  display: none;
}

.top-actions .brand-location-select {
  min-width: 170px;
  max-width: min(26vw, 220px);
  font-size: 0.8rem;
  padding: 0.38rem 0.52rem;
  font-weight: 700;
}

.top-actions a.auth-btn {
  text-decoration: none;
}

.auth-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: #5c4a3f;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.auth-btn.primary {
  background: linear-gradient(90deg, var(--brand), color-mix(in srgb, var(--brand) 72%, white));
  color: #fff;
  border-color: var(--brand);
}

.profile-wrap {
  position: relative;
}

.profile-toggle {
  max-width: 290px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-icon-btn {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.42rem);
  min-width: 180px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 40px rgba(63, 36, 17, 0.2);
  padding: 0.35rem;
  display: none;
  z-index: 65;
}

.profile-wrap.open .profile-menu {
  display: block;
  animation: fadeUp 0.24s ease both;
}

.profile-menu a,
.profile-menu button {
  width: 100%;
  display: block;
  border: 0;
  background: #fff;
  color: #4c3e34;
  border-radius: 10px;
  padding: 0.5rem 0.62rem;
  text-align: left;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.profile-menu a:hover,
.profile-menu button:hover {
  background: color-mix(in srgb, var(--brand) 6%, white);
}

.cart-wrap {
  position: relative;
}

.cart-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: #41342d;
  border-radius: 999px;
  min-width: 44px;
  height: 42px;
  padding: 0 0.8rem;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
}

.site-msg-btn {
  position: relative;
  text-decoration: none;
  min-width: 42px;
  padding: 0;
}

.site-msg-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e8663d;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
}

/* Profile dropdown */
.site-profile-wrap {
  position: relative;
}

.site-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-profile-caret {
  font-size: 0.7rem;
  opacity: 0.6;
}

.site-profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #f0d5bd;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(56, 33, 17, 0.15);
  padding: 0.35rem;
  z-index: 60;
}

.site-profile-dropdown.open {
  display: block;
}

.site-profile-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3f2d24;
  text-decoration: none;
  cursor: pointer;
}

.site-profile-item:hover {
  background: #fff5ee;
  color: #e8663d;
}

.site-profile-item--logout {
  color: #b42318;
  border-top: 1px solid #f0d5bd;
  margin-top: 0.25rem;
  padding-top: 0.6rem;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 22px;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.cart-count.bump {
  animation: bump 0.45s ease;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  width: 290px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 40px rgba(63, 36, 17, 0.2);
  padding: 0.75rem;
  z-index: 60;
  display: none;
}

.cart-panel.open {
  display: block;
  animation: fadeUp 0.28s ease both;
}

.cart-panel h4 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
}

.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 210px;
  overflow: auto;
}

.cart-list li {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.48rem 0.55rem;
  margin-bottom: 0.42rem;
  font-size: 0.83rem;
  color: #5c4a3f;
  background: color-mix(in srgb, var(--bg) 30%, white);
}

.cart-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-text {
  line-height: 1.35;
}

.cart-remove {
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid #efcab0;
  border-radius: 999px;
  background: #fff;
  color: #8a4f2f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-remove:hover {
  background: color-mix(in srgb, var(--brand) 6%, white);
}

.cart-empty {
  font-size: 0.83rem;
  color: #7a6a5f;
}

.cart-total {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--line);
}

.cart-panel .cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-panel .cart-total-amount {
  font-weight: 800;
  color: #4f4036;
  font-size: 0.9rem;
}

.cart-panel .cart-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand) 65%, white));
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.48rem 0.86rem;
  min-height: 34px;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--brand) 25%, transparent);
  transform: none;
}

.cart-panel .cart-checkout-btn:hover {
  transform: translateY(-1px);
}

.cart-panel .cart-checkout-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.spark {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 99;
  animation: sparkPop 560ms ease forwards;
}

.hero {
  padding: 3.5rem 0 2.25rem;
}

.hero-splash {
  position: relative;
  overflow: hidden;
}

.hero-splash .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.hero-copy,
.hero-visual {
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-copy {
  padding: 2.2rem;
}

.hero-copy h1 {
  margin: 0.6rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.hero-visual {
  position: relative;
  padding: 1rem;
  overflow: hidden;
}

.bg-bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  animation: bob 6s ease-in-out infinite;
}

.bg-bubble.a {
  width: 170px;
  height: 170px;
  background: color-mix(in srgb, var(--brand-2) 55%, white);
  right: -42px;
  top: -38px;
}

.bg-bubble.b {
  width: 130px;
  height: 130px;
  background: #bbf4df;
  left: -30px;
  bottom: 18px;
  animation-delay: 1s;
}

.bg-bubble.c {
  width: 110px;
  height: 110px;
  background: #bce9f8;
  right: 16px;
  bottom: -22px;
  animation-delay: 2s;
}

.phone {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: min(300px, 100%);
  background: #fff;
  border: 10px solid #1f1f1f;
  border-radius: 36px;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.phone h4 {
  margin: 0.25rem 0 0.8rem;
}

.phone .mini {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--bg) 15%, white);
}

.section {
  padding: 1.6rem 0 2.4rem;
}

.section h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin: 0 0 0.8rem;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.section-title img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.section p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card.highlight {
  border: 2px solid var(--brand);
  transform: translateY(-8px);
}

.price {
  margin: 0.6rem 0;
  font-size: 2rem;
  font-weight: 900;
}

.mockup-links {
  padding: 2.2rem 0 3rem;
}

.mockup-links .card a {
  color: var(--brand-4);
  font-weight: 800;
}

.theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.theme-pill {
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: color-mix(in srgb, var(--bg) 30%, white);
  font-weight: 700;
}

.occasion-showcase {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 30%, white), color-mix(in srgb, var(--bg) 40%, white));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
}

.occasion-head {
  text-align: center;
  margin-bottom: 0.85rem;
}

.occasion-head h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.occasion-head p {
  margin: 0;
  color: #64564b;
  font-size: 1.05rem;
}

.occasion-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.9fr;
  gap: 0.9rem;
  align-items: stretch;
}

.occasion-tabs {
  display: grid;
  gap: 0.7rem;
}

.occasion-tab {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem 1rem;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 1.08rem;
  font-weight: 850;
  color: #241d19;
  cursor: pointer;
}

.occasion-tab.active {
  background: linear-gradient(135deg, #ff4aa2, #ff2f90);
  color: #fff;
  border-color: #ff3093;
  box-shadow: 0 12px 24px rgba(255, 46, 144, 0.28);
}

.occasion-tab .icon {
  font-size: 2.1rem;
  line-height: 1;
}

.occasion-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 440px;
}

.occasion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.occasion-details {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.occasion-kicker {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.07;
  margin-top: 0.2rem;
}

.occasion-name {
  margin: 0.35rem 0 0.75rem;
  font-size: 2.2rem;
  line-height: 1.04;
}

.occasion-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.38rem;
  color: #4f4339;
}

.occasion-points li::before {
  content: "✓";
  color: #7a3ea5;
  font-weight: 900;
  margin-right: 0.5rem;
}

.occasion-price {
  margin-top: auto;
  font-size: 1.2rem;
}

.occasion-price strong {
  font-size: 2.25rem;
}

.list-clean {
  margin: 0;
  padding-left: 1.1rem;
  color: #5c4f46;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.38rem;
  color: #5c4f46;
}

.checklist img {
  width: 14px;
  margin-top: 0.18rem;
}

.media-tile {
  border-radius: 16px;
  min-height: 140px;
  background:
    linear-gradient(45deg, color-mix(in srgb, var(--brand) 8%, transparent), rgba(17, 138, 178, 0.12)),
    #fff;
  border: 1px solid var(--line);
  padding: 0.8rem;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: 1px solid var(--line);
}

.section-band {
  background: linear-gradient(100deg, color-mix(in srgb, var(--brand) 5%, white), color-mix(in srgb, var(--bg) 60%, white));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.stat {
  padding: 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 0.8rem;
}

.gallery .tile {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.gallery .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.gallery .tile.big {
  grid-row: span 2;
}

.gallery .tile .cap {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.timeline {
  border-left: 3px solid var(--line);
  padding-left: 1rem;
}

.timeline .step {
  margin-bottom: 0.85rem;
}

.timeline .step strong {
  display: block;
}

.highlight-banner {
  background: linear-gradient(120deg, var(--brand), color-mix(in srgb, var(--brand) 65%, white));
  color: #fff;
  border-radius: 24px;
  padding: 1.3rem;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--brand) 30%, transparent);
}

.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sticker {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 30%, white);
  color: color-mix(in srgb, var(--brand) 60%, black);
  font-weight: 800;
  font-size: 0.82rem;
  border: 1px solid var(--line);
}

.split-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.media-cover {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.splash-wrap {
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--brand) 20%, transparent);
  background:
    radial-gradient(circle at 5% 5%, color-mix(in srgb, var(--brand) 30%, transparent), transparent 28%),
    radial-gradient(circle at 95% 12%, color-mix(in srgb, var(--brand) 35%, transparent), transparent 30%),
    linear-gradient(130deg, color-mix(in srgb, var(--bg) 50%, white), color-mix(in srgb, var(--brand) 8%, white) 45%, color-mix(in srgb, var(--brand) 18%, white));
  padding: 0;
}

.video-hero {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.02);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(22, 14, 10, 0.48) 0%, rgba(22, 14, 10, 0.28) 48%, rgba(22, 14, 10, 0.18) 100%),
    radial-gradient(circle at 14% 12%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(126, 64, 191, 0.2), transparent 28%);
}

.splash-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.splash-copy {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.15rem;
  backdrop-filter: blur(5px);
}

.splash-over-video {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(22, 13, 9, 0.26);
}

.splash-copy h1 {
  margin: 0.45rem 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.06;
}

.splash-main {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
}

.splash-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.2) contrast(1.06);
}

.auto-gallery {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.auto-track {
  display: flex;
  width: max-content;
  gap: 0.7rem;
  padding: 0.7rem;
  animation: galleryRun 28s linear infinite;
}

.auto-gallery:hover .auto-track {
  animation-play-state: paused;
}

.auto-item {
  width: 230px;
  height: 145px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 14%, transparent);
  position: relative;
}

.auto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.auto-item .cap {
  position: absolute;
  left: 0.5rem;
  bottom: 0.4rem;
  font-size: 0.78rem;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.search-band {
  padding: 0.6rem 0;
}

.location-switcher {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.location-meta {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 60%, white);
  color: color-mix(in srgb, var(--brand) 55%, black);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.nuxt-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.nuxt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.nuxt-field label {
  font-size: 0.8rem;
  color: #6e6258;
  margin-bottom: 0.3rem;
}

.nuxt-field input,
.nuxt-field select {
  margin-bottom: 0;
  height: 45px;
}

.search-result {
  margin-top: 0.6rem;
  font-weight: 700;
  color: #4f4036;
}

.offer-slider {
  position: relative;
}

.offer-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.offer-track {
  display: flex;
  transition: transform 0.5s ease;
}

.offer-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  /* Height follows content — no fixed cap, no inner scroll. The offer HTML
     is stored in DDB, so this is enforced purely via CSS on the classes it
     renders. Slides in the carousel equalise to the tallest via flex-stretch. */
  align-items: stretch;
}

.offer-slide.right .offer-media {
  order: 2;
}

.offer-slide.right .offer-copy {
  order: 1;
}

.offer-media {
  /* Floor so short-copy offers keep a decent image; grows with the slide
     (stretches to the copy height) for taller content. */
  min-height: 340px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.offer-media img,
.offer-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem;
  overflow-y: visible;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--bg) 40%, rgba(255,255,255,0.98)), rgba(255, 255, 255, 0.98));
}
.offer-copy h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.45rem;
  line-height: 1.15;
}
.offer-copy p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.offer-desc-extended {
  color: var(--muted);
  font-weight: 600;
}
.offer-copy .rich-text :is(p, h2, h3, ul, ol) {
  margin: 0.18rem 0;
}
.offer-copy .rich-text :is(h2, h3) {
  color: var(--ink);
  line-height: 1.2;
}
.offer-copy .rich-text a {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 700;
}
.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0 0.6rem;
}
.offer-tags.top {
  margin-top: 0;
}
.offer-highlight-list {
  list-style: none;
  margin: 0.2rem 0 0.55rem;
  padding: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.45;
}
.offer-highlight-list li {
  position: relative;
  padding-left: 1.3rem;
}
.offer-highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0.1rem;
  top: 0.02rem;
  color: var(--brand);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}
.offer-highlight-list li + li {
  margin-top: 0.2rem;
}
.offer-short-desc {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}
.offer-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0.5rem 0 0.55rem;
}
.offer-price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), color-mix(in srgb, var(--brand) 65%, black));
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 10px 18px color-mix(in srgb, var(--brand) 22%, transparent);
}
.offer-meta {
  color: color-mix(in srgb, var(--brand) 50%, black);
  font-weight: 700;
}
.offer-kids-meta {
  margin: 0.1rem 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.pkg-price-note {
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.pkg-additional-prices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.pkg-additional-price-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.ap-label {
  color: var(--muted);
}
.ap-label::after {
  content: ':';
}
.ap-price {
  font-weight: 800;
  color: var(--ink);
}
.ap-unit {
  color: var(--muted);
  font-size: 0.84rem;
}
.offer-copy .btn.btn-secondary {
  margin-top: auto;
}
.offer-actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.offer-actions .btn {
  margin-top: 0;
}
.offer-actions .btn-details {
  border-style: dashed;
}
.offer-tag {
  display: inline-flex;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 8%, white);
  border: 1px solid var(--line);
  color: color-mix(in srgb, var(--brand) 70%, black);
  font-size: 0.86rem;
  font-weight: 800;
}

.offer-copy .badge {
  display: inline-flex;
  background: color-mix(in srgb, var(--brand) 8%, white);
  color: color-mix(in srgb, var(--brand) 70%, black);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.4rem;
}
.offer-slide.no-media {
  grid-template-columns: 1fr;
}
.offer-slide.no-media .offer-copy {
  padding: 1.4rem 1.8rem;
}
.offer-slide.no-media .offer-copy .badge {
  font-size: 0.88rem;
  padding: 0.32rem 0.6rem;
}
.offer-slide.no-media .offer-copy h3 {
  font-size: 1.9rem;
  line-height: 1.1;
}
.offer-slide.no-media .offer-copy p {
  font-size: 1.05rem;
  line-height: 1.5;
}
.offer-slide.no-media .offer-price-pill {
  font-size: 1.1rem;
  padding: 0.32rem 0.72rem;
}
.offer-slide.no-media .offer-meta {
  font-size: 0.95rem;
}
.offer-slide.no-media .offer-highlight-list {
  font-size: 0.95rem;
}
.offer-slide.no-media .offer-tag {
  font-size: 0.9rem;
  padding: 0.28rem 0.62rem;
}

.offer-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 8;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--brand) 18%, transparent);
}

.offer-overlay.prev {
  left: 10px;
}

.offer-overlay.next {
  right: 10px;
}

.offer-overlay:hover {
  background: #fff;
}

.party-ideas {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 16%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 28%),
    radial-gradient(circle at 92% 14%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 30%),
    var(--bg);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.party-ideas-lead {
  margin: 0.25rem 0 0.85rem;
  color: var(--muted);
  max-width: 820px;
}

.party-ideas-scroller {
  position: relative;
  padding: 0 2.5rem;
}

.party-ideas-grid {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* overflow-x:auto forces overflow-y to clip too — pad so card hover-lift and
     drop-shadows aren't cut off at the top/edges. */
  padding: 0.85rem 0.4rem 1rem;
}

.party-ideas-grid::-webkit-scrollbar {
  height: 8px;
}

.party-ideas-grid::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--brand) 25%, white);
  border-radius: 999px;
}

.party-idea-card {
  flex: 0 0 min(380px, 86vw);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 26px color-mix(in srgb, var(--brand) 11%, transparent);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.party-idea-photo {
  height: 210px;
  overflow: hidden;
}

.party-idea-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.party-idea-copy {
  padding: 0.75rem;
}

.party-idea-copy h3 {
  margin: 0.4rem 0 0.35rem;
}

.party-idea-copy p {
  margin: 0;
  color: var(--muted);
}

.party-idea-list {
  margin: 0.65rem 0 0.7rem;
  padding-left: 1rem;
  color: var(--muted);
}

.party-idea-list li + li {
  margin-top: 0.28rem;
}

.party-idea-price-row {
  margin: 0 0 0.65rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--brand) 5%, white);
  border-radius: 12px;
  padding: 0.55rem;
}

.party-idea-price-row strong {
  font-size: 1.25rem;
}

.party-idea-price-row span {
  color: var(--muted);
  font-weight: 700;
}

.party-ideas-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 15%, white);
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--brand) 12%, transparent);
  z-index: 2;
}

.party-ideas-nav.prev {
  left: 4px;
}

.party-ideas-nav.next {
  right: 4px;
}

.party-ideas-nav:hover {
  background: #fff;
}

.floating-orb {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--brand) 65%, white), var(--brand));
  filter: blur(0.3px);
  opacity: 0.6;
  animation: floatOrb 8s linear infinite;
}

.floating-orb.b {
  background: linear-gradient(45deg, #8debd2, #06d6a0);
  animation-duration: 10s;
}

.floating-orb.c {
  background: linear-gradient(45deg, #8edbf4, #118ab2);
  animation-duration: 12s;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--brand) 8%, var(--bg)));
}

.footer-contrast {
  border-top-color: #2f2925;
  background: linear-gradient(150deg, #241e1a, #3a2f28);
}

.footer-contrast .footer-inner,
.footer-contrast .footer-nav a {
  color: color-mix(in srgb, var(--brand) 18%, white);
}

.in-cart-sample {
  margin: 0.55rem 0 0.7rem;
  font-size: 0.84rem;
  color: var(--muted);
  background: color-mix(in srgb, var(--bg) 60%, white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
}

.experiences-big {
  background:
    radial-gradient(circle at 8% 8%, color-mix(in srgb, var(--brand) 8%, transparent), transparent 24%),
    radial-gradient(circle at 92% 14%, color-mix(in srgb, var(--brand-4) 6%, transparent), transparent 26%),
    color-mix(in srgb, var(--bg) 60%, white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.exp-lead {
  color: var(--muted);
  max-width: 880px;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.exp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand) 12%, transparent);
}

.exp-card .photo {
  height: 210px;
  overflow: hidden;
}

.exp-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.12);
}

.exp-copy {
  padding: 0.95rem;
}

.exp-copy h3 {
  margin: 0 0 0.35rem;
  font-size: 1.18rem;
}

.exp-copy p {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mini-chip {
  font-size: 0.75rem;
  font-weight: 800;
  background: color-mix(in srgb, var(--bg) 60%, white);
  border: 1px solid var(--line);
  color: color-mix(in srgb, var(--brand) 65%, black);
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
}

.venue-hero {
  text-align: center;
}

.venue-sub {
  color: var(--muted);
  margin-top: -0.2rem;
}

.venue-art {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: end;
}

.venue-piece {
  position: relative;
  min-height: 450px;
  padding-top: 108px;
}

.venue-shape {
  position: relative;
  z-index: 1;
  height: 342px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 1.1rem 1.3rem;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(58, 28, 12, 0.2);
}

.venue-shape p,
.venue-shape small {
  color: #fff;
}

.venue-shape p {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  line-height: 1.12;
  max-width: 260px;
  word-break: normal;
  overflow-wrap: break-word;
}

.venue-shape small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.94rem;
  font-weight: 700;
  opacity: 0.95;
}

.venue-shape.pink {
  background: linear-gradient(145deg, var(--brand), color-mix(in srgb, var(--brand) 60%, white));
  clip-path: polygon(10% 13%, 92% 2%, 100% 96%, 0 88%);
}

.venue-shape.purple {
  background: linear-gradient(145deg, #0f9fc0, #1787a8);
  clip-path: polygon(10% 2%, 100% 14%, 88% 100%, 0 86%);
}

.venue-shape.yellow {
  background: linear-gradient(145deg, var(--brand-2), color-mix(in srgb, var(--brand-2) 75%, var(--brand)));
  color: #fff;
  clip-path: polygon(18% 4%, 94% 14%, 100% 100%, 0 86%);
}

.venue-photo {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 230px;
  border-radius: 999px;
  border: 12px solid var(--bg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 20%, transparent);
}

.venue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-showcase {
  margin-top: 1.2rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 30%, white), color-mix(in srgb, var(--bg) 60%, white));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.2rem;
  overflow: hidden;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: center;
}

.reviews-summary h3 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 0.98;
  margin: 0.2rem 0 0.75rem;
}

.reviews-summary p {
  color: #64554a;
  max-width: 360px;
  margin: 0 0 0.7rem;
}

.stars {
  color: #f5ad37;
  letter-spacing: 0.08em;
  font-size: 2rem;
  line-height: 1;
}

.stars.small {
  font-size: 1.65rem;
}

.reviews-score {
  margin-top: 0.35rem;
  font-size: 2rem;
  font-weight: 900;
}

.reviews-score small {
  font-size: 0.66em;
  font-weight: 800;
}

.review-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
}

.review-controls button {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid #d6c7ba;
  background: #fff;
  color: #3f342d;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.review-art {
  position: relative;
  min-height: 460px;
}

.review-pattern {
  position: absolute;
  left: 6%;
  top: 52%;
  transform: translateY(-50%);
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: radial-gradient(circle, #f7b23b 22%, transparent 24%) 0 0 / 18px 18px;
  opacity: 0.65;
}

.review-photo-circle {
  position: absolute;
  left: 12%;
  top: 52%;
  transform: translateY(-50%);
  width: 230px;
  height: 230px;
  border-radius: 999px;
  overflow: hidden;
  border: 10px solid #f3e7dd;
  box-shadow: 0 12px 26px rgba(51, 31, 19, 0.16);
  z-index: 1;
}

.review-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-bubble {
  position: relative;
  z-index: 3;
  margin-left: 120px;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #4d227f, #67339c);
  color: #fff;
  border-radius: 999px;
  padding: 3rem 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(48, 20, 78, 0.3);
}

.review-bubble,
.review-bubble p,
.review-bubble .review-quote,
.review-bubble .review-date,
.review-bubble .stars {
  color: #fff !important;
}

.review-bubble .stars {
  color: #f5b43b !important;
}

.review-quote {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.42;
  font-weight: 650;
  margin: 0.7rem 0 1rem;
  max-width: 430px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.review-author {
  color: #111 !important;
  font-size: 2rem;
  font-weight: 900;
  margin-top: 0.55rem;
  line-height: 1.05;
}

.review-author-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.review-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(29, 17, 10, 0.25);
}

.review-date {
  color: #f5eaff;
  font-size: 1rem;
  opacity: 0.98;
  margin-top: 0.2rem;
}

.review-read-more {
  color: var(--brand-2);
  font-weight: 800;
  text-decoration: underline;
}

.review-all-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: #7b3ea5;
  font-weight: 800;
  text-decoration: underline;
}

.booking-flow {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 30%, white), color-mix(in srgb, var(--bg) 40%, white));
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.flow-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem;
}

.flow-title {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}

.flow-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}

.flow-trigger {
  cursor: pointer;
}

.flow-no {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5aa0, #ff7a58);
  color: #fff;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.45rem;
}

.planner-controls {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 0.9rem;
}

.planner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.planner-addon-list {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.planner-addon {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
  background: color-mix(in srgb, var(--bg) 30%, white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.84rem;
}

.planner-footer {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.planner-total {
  font-size: 1.05rem;
  font-weight: 900;
  color: #4d4036;
}

.wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.wizard-modal.open {
  display: block;
}

.wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 17, 10, 0.48);
  backdrop-filter: blur(2px);
}

.wizard-dialog {
  position: relative;
  width: min(860px, calc(100% - 1.3rem));
  margin: 4vh auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 28px 50px rgba(39, 20, 10, 0.28);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}

body.modal-open {
  overflow: hidden;
}

.package-customize-dialog {
  width: min(980px, calc(100% - 1.3rem));
  margin: 1rem auto;
  max-height: calc(100vh - 2rem);
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.package-customize-modal {
  overflow-y: auto;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}

.package-customize-lead {
  color: var(--muted);
  margin: 0.35rem 0 0.7rem;
}

.package-customize-body {
  display: grid;
  gap: 0.85rem;
}

.package-customize-section h4 {
  margin: 0 0 0.45rem;
}

.package-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.package-addon-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 30%, white);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.55rem;
  overflow: hidden;
}

.package-addon-card-skip {
  grid-template-columns: 1fr;
}

.package-addon-thumb {
  min-height: 96px;
  background: color-mix(in srgb, var(--bg) 60%, white);
}

.package-addon-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-addon-copy {
  padding: 0.55rem 0.65rem;
}

.package-addon-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.package-addon-name {
  font-weight: 800;
  color: var(--ink);
}

.package-addon-price {
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.package-addon-input {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.package-food-grid {
  display: grid;
  gap: 0.55rem;
}

.package-food-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 30%, white);
  padding: 0.55rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.package-food-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 700;
}

.package-food-meta input[type="number"] {
  width: 78px;
}

/* ── Customize modal layout ── */
.cust-section {
  margin-bottom: 1.4rem;
}
.cust-section:last-child {
  margin-bottom: 0;
}
.cust-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin: 0 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.cust-bucket {
  margin-bottom: 1rem;
}
.cust-bucket:last-child {
  margin-bottom: 0;
}
.cust-bucket-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  background: color-mix(in srgb, var(--bg) 60%, white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.55rem;
}
.cust-and-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.cust-empty {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  padding: 0.4rem 0;
}
.badge-included {
  display: inline-block;
  background: #e8fff3;
  color: #166849;
  border: 1px solid #bce9d4;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  white-space: nowrap;
}
.package-addon-card {
  cursor: pointer;
}
.package-addon-card:has(input:checked) {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, white);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 22%, white);
}
.package-addon-thumb--empty {
  background: color-mix(in srgb, var(--bg) 60%, white);
  min-height: 80px;
}
.package-addon-copy {
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Other Popular Addons cards on addon.html */
.addon-other-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.addon-other-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg) 60%, white);
}
.addon-other-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.addon-other-thumb--empty {
  background: color-mix(in srgb, var(--bg) 60%, white);
}
.addon-other-copy {
  padding: 0.8rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.addon-other-copy h3 {
  margin: 0;
  font-size: 1rem;
}
.addon-other-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.addon-other-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0.15rem 0 0 !important;
}

.package-addon-input {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}
.package-addon-input input[type="radio"],
.package-addon-input input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
}
.package-addon-price small {
  font-size: 0.78em;
  font-weight: 600;
  opacity: 0.75;
}
.food-name {
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  min-width: 0;
}
.food-name-price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.food-unit-price {
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 700;
}
.food-qty-info {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5a7a60;
}
.package-food-card--included {
  background: #f4fcf7;
  border-color: #bce9d4;
  opacity: 0.9;
}
.food-stepper {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.food-step-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 30%, white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.food-step-btn:hover {
  background: color-mix(in srgb, var(--bg) 50%, white);
  border-color: var(--brand);
}
.food-qty-input {
  width: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.3rem 0.2rem;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 700;
}
.food-card--selected {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, white);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 22%, white);
}
.food-card--selected .food-step-btn {
  border-color: var(--brand);
}

.wizard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.wizard-head h3 {
  margin: 0;
}

.wizard-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 50%, white);
  cursor: pointer;
  font-size: 1.2rem;
}

.wizard-progress {
  display: flex;
  gap: 0.45rem;
  margin: 0.7rem 0 0.85rem;
}

.wizard-dot {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.wizard-dot.active {
  background: var(--brand);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-nav {
  margin-top: 0.8rem;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.wizard-error {
  min-height: 1.1rem;
  color: #c0392b;
  font-size: 0.83rem;
  margin-bottom: 0.4rem;
}

.included-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.included-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
}

.included-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.included-list li {
  color: var(--muted);
}

.included-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
  margin-right: 0.5rem;
}

.policy-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.56rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 40%, white);
  color: color-mix(in srgb, var(--brand) 55%, black);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0.2rem 0.35rem 0 0;
}

.location-cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.72rem;
  background: #fff;
}

.location-card h4 {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
}

.location-card p {
  margin: 0;
  color: #67584d;
  font-size: 0.86rem;
}

.location-card a {
  display: inline-block;
  margin-top: 0.35rem;
  color: #7b3ea5;
  font-weight: 800;
  font-size: 0.86rem;
}

.location-hub {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--brand) 6%, white));
  padding: 1rem;
}

.location-hub-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}

.location-feature,
.location-contact {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 0.9rem;
}

.location-contact h3 {
  margin-top: 0;
}

.location-contact.is-submitting {
  opacity: 0.55;
  filter: grayscale(0.2);
}

.location-contact.is-submitted {
  display: grid;
  align-content: center;
  min-height: 220px;
}

.location-contact .contact-thank-you {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #4f433a;
}

.map-wrap {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.page-hero {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--bg), color-mix(in srgb, var(--brand) 8%, white));
  padding: 1rem;
  box-shadow: var(--shadow);
}

.package-hero {
  padding: 1.2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.9rem;
}

.package-hero .page-hero-grid {
  align-items: start;
}

.hero-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-slider {
  position: relative;
}

.hero-media-track {
  display: flex;
  height: 100%;
  transition: transform 0.38s ease;
}

.hero-media-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #f0ccb0;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 22px rgba(52, 32, 18, 0.18);
}

.hero-media-nav.prev {
  left: 10px;
}

.hero-media-nav.next {
  right: 10px;
}

.cutout-stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 90, 160, 0.26), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(106, 47, 148, 0.22), transparent 34%),
    radial-gradient(circle at 50% 86%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 38%),
    linear-gradient(160deg, color-mix(in srgb, var(--bg) 40%, white), color-mix(in srgb, var(--brand) 10%, white));
  display: grid;
  place-items: end center;
}

.cutout-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 16px;
  height: 22px;
  border-radius: 999px;
  background: rgba(59, 33, 15, 0.18);
  filter: blur(10px);
}

.kid-cutout {
  position: relative;
  z-index: 2;
  max-height: 300px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(45, 26, 15, 0.3));
}

.package-hero .cutout-stage {
  min-height: 380px;
  height: 100%;
}

.package-hero .kid-cutout {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.package-hero-copy {
  display: flex;
  flex-direction: column;
}

.package-hero-side {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 380px;
}

.hero-included-price {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.hero-mini-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.7rem;
}

.hero-mini-panel h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 0.9rem;
}

.detail-panel-full {
  grid-column: 1 / -1;
}

.price-big {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.fact-chip {
  border: 1px solid #f3d8bc;
  background: color-mix(in srgb, var(--bg) 60%, white);
  border-radius: 999px;
  padding: 0.3rem 0.56rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #5d4f44;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.55rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 0.72rem 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 0.8rem 0.72rem;
  color: #65574c;
  background: #fff;
}

.faq-item.open .faq-a {
  display: block;
}

.content-switch {
  display: inline-flex;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  background: color-mix(in srgb, var(--bg) 40%, white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem;
}

.switch-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-weight: 800;
  color: #5a4c41;
  cursor: pointer;
}

.switch-btn.active {
  background: #fff;
  color: #20170f;
  box-shadow: 0 6px 16px rgba(78, 43, 20, 0.15);
}

.switch-panel {
  display: none;
}

.switch-panel.active {
  display: block;
}

.fun-meter {
  background:
    radial-gradient(circle at 16% 16%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 34%),
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--brand-4) 10%, transparent), transparent 36%),
    #fff;
}

.fun-score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  margin: 0.5rem 0 0.55rem;
}

.fun-score {
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}

.fun-label {
  font-weight: 800;
  color: color-mix(in srgb, var(--brand) 80%, black);
}

.fun-track {
  position: relative;
  height: 42px;
  overflow: visible;
}

.fun-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 70%, white), var(--brand));
}

.fun-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 700;
  margin-top: 0.35rem;
}

.fun-runner {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 4px solid #fff;
  background: var(--brand);
  box-shadow: 0 7px 18px color-mix(in srgb, var(--brand) 35%, transparent);
  transform: translate(-100%, -50%);
  display: grid;
  place-items: center;
}

.thumb-icon {
  font-size: 1.45rem;
  line-height: 1;
}

.fun-note {
  margin: 0.5rem 0 0.3rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.exp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.exp-gallery-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-height: 170px;
  max-height: 500px;
  box-shadow: 0 12px 24px rgba(63, 36, 19, 0.12);
  padding: 0;
  background: #fff;
}

.exp-gallery-item img,
.exp-gallery-item video {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.exp-gallery-item:hover img,
.exp-gallery-item:hover video {
  transform: scale(1.07);
}

.exp-gallery-cap {
  display: none;
}

.exp-play {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(37, 20, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: none;
}

.media-modal.open {
  display: block;
}

.media-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 7, 4, 0.72);
  backdrop-filter: blur(3px);
}

.media-dialog {
  position: relative;
  width: min(980px, calc(100% - 1rem));
  height: min(94vh, 860px);
  margin: 1vh auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #15100d;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.44);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-stage {
  flex: 1;
  min-height: 0;
  background: #060404;
  display: grid;
  place-items: center;
  padding: 0;
}

.media-stage img,
.media-stage video {
  width: 100%;
  height: 100%;
  max-width: calc(100vw - 140px);
  max-height: calc(94vh - 120px);
  object-fit: contain;
  display: block;
}

.media-caption {
  color: #f6e7d8;
  background: #1d140f;
  padding: 0.62rem 0.78rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.media-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(22, 12, 8, 0.7);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 4;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(22, 12, 8, 0.62);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 4;
}

.media-nav.prev {
  left: 10px;
}

.media-nav.next {
  right: 10px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.gallery-strip .hero-media {
  min-height: 180px;
}

.addon-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.addon-swipe-wrap {
  position: relative;
}

.addon-swipe-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  border-radius: 16px;
}

.addon-swipe-viewport::-webkit-scrollbar {
  display: none;
}

.addon-swipe-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
}

.addon-swipe-track .addon-feature-card {
  flex: 0 0 calc((100% - 1.7rem) / 3);
  scroll-snap-align: start;
}

.addon-swipe-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #f0ccb0;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 22px rgba(52, 32, 18, 0.18);
}

.addon-swipe-nav.prev {
  left: -8px;
}

.addon-swipe-nav.next {
  right: -8px;
}

.addon-swipe-dots {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.addon-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 40%, white);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.addon-dot.active {
  transform: scale(1.18);
  background: #ff5aa0;
  border-color: #ff5aa0;
}

.addon-feature-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(75, 44, 23, 0.11);
}

.addon-photo {
  height: 170px;
  overflow: hidden;
}

.addon-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.addon-copy {
  padding: 0.72rem;
}

.addon-copy h3 {
  margin: 0;
}

.addon-copy p {
  margin: 0.35rem 0 0.55rem;
  color: #67594d;
}

.addon-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.addon-price-line strong {
  font-size: 1.2rem;
  line-height: 1;
}

.unit-pill {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 60%, white);
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--muted);
}

.rating-showcase {
  margin-top: 0.9rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 90, 160, 0.18), transparent 30%),
    radial-gradient(circle at 85% 22%, rgba(255, 200, 97, 0.22), transparent 34%),
    linear-gradient(145deg, var(--bg), color-mix(in srgb, var(--brand) 12%, white));
  padding: 0.95rem;
}

.rating-stars {
  letter-spacing: 0.14rem;
  color: #ffc928;
  font-size: 1.15rem;
}

.rating-main {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
}

.rating-sub {
  color: #5f5045;
}

.rating-badges {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rating-badges span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: #5a4b3f;
  padding: 0.25rem 0.52rem;
}

.review-cards-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.review-card-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(65, 39, 20, 0.1);
  padding: 0.75rem;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.review-card-head img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--line);
}

.review-name {
  font-weight: 900;
  color: #2c1c12;
}

.review-stars {
  color: #ffc928;
  letter-spacing: 0.08rem;
  font-size: 0.9rem;
}

.review-card-item p {
  margin: 0;
  color: #605247;
}

.compare-mini {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-mini th,
.compare-mini td {
  padding: 0.45rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.sticky-buy {
  position: sticky;
  top: 86px;
}

.calc-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.8rem;
}

.calc-result {
  margin-top: 0.5rem;
  font-size: 1.12rem;
  font-weight: 900;
  color: #4f4036;
}

.compare-block {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 0.9rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0.45rem;
  text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 800;
}

.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-link {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.compare-link:hover {
  filter: brightness(0.95);
}

.yes {
  color: #1f8e66;
  font-weight: 900;
}

.maybe {
  color: #8c5a32;
  font-weight: 800;
}

.footer-inner {
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  color: #5a4a3f;
  font-size: 0.94rem;
}

.footer-nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.mega-footer {
  margin-top: 2.2rem;
  padding-top: 1.1rem;
}

.mega-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
  gap: 1rem;
  padding: 1rem 0 1.2rem;
}

.footer-brand {
  color: color-mix(in srgb, var(--brand) 18%, white);
}

.footer-brand .brand-logo {
  width: 64px;
  height: auto;
  margin-bottom: 0.35rem;
}

/* Footer wordmark */
.footer-logo-mark {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-bottom: 0.45rem;
}
.flm-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand-name {
  font-size: 1.28rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.footer-brand-name strong {
  color: #ff4f9f;
}
.footer-brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8a88a;
  margin-bottom: 0.55rem;
}

.footer-brand-title {
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  margin: 0;
  color: #d8bfab;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 400;
}

.footer-col h4 {
  margin: 0 0 0.55rem;
  color: color-mix(in srgb, var(--brand) 18%, white);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.38rem;
  color: #d8bfab;
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: color-mix(in srgb, var(--bg) 40%, white);
}

.mega-footer-bottom {
  border-top: 1px solid rgba(255, 232, 209, 0.2);
  padding: 0.85rem 0 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: #d8bfab;
  font-size: 0.84rem;
}

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

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.metric {
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.metric .value {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.metric small {
  color: #6e6258;
}

.bars {
  display: grid;
  gap: 0.65rem;
}

.bar-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
}

.bar-item .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: #f8e9d8;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), color-mix(in srgb, var(--brand) 65%, white));
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-fill.b {
  background: linear-gradient(90deg, var(--brand-3), color-mix(in srgb, var(--brand-3) 65%, white));
}

.bar-fill.c {
  background: linear-gradient(90deg, var(--brand-4), color-mix(in srgb, var(--brand-4) 65%, white));
}

/* ── Fun Facts container card ─────────────────────────────── */
.fun-facts-container {
  background:
    radial-gradient(circle at 4% 10%, color-mix(in srgb, var(--brand) 7%, transparent), transparent 36%),
    radial-gradient(circle at 96% 8%, color-mix(in srgb, var(--brand-2) 9%, transparent), transparent 34%),
    radial-gradient(circle at 50% 105%, color-mix(in srgb, var(--brand-3) 6%, transparent), transparent 30%),
    linear-gradient(165deg, color-mix(in srgb, var(--bg) 40%, white) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--brand) 8%, transparent);
}

/* ── Fun Facts grid ───────────────────────────────────────── */
.fun-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

/* ── Fact card ────────────────────────────────────────────── */
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1rem 1.3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--brand) 6%, transparent);
}

/* Coloured top-accent bar, cycling through brand palette */
.fact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: var(--fact-accent, var(--brand));
}

.fact:nth-child(4n + 1) { --fact-accent: var(--brand); --fact-tint: color-mix(in srgb, var(--brand) 9%, transparent); }
.fact:nth-child(4n + 2) { --fact-accent: #e8a21a; --fact-tint: rgba(232, 162, 26, 0.10); }
.fact:nth-child(4n + 3) { --fact-accent: #06d6a0; --fact-tint: rgba(6, 214, 160, 0.10); }
.fact:nth-child(4n)     { --fact-accent: #118ab2; --fact-tint: rgba(17, 138, 178, 0.10); }

.fact:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--brand) 12%, transparent);
}

/* Icon circle */
.fact-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--fact-tint, color-mix(in srgb, var(--brand) 9%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fact:hover .fact-icon-wrap {
  transform: scale(1.1);
}

.fact img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Legacy fallback — icon without wrap */
.fact > img {
  width: 48px;
  height: 48px;
}

/* Fact text */
.fact-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.fact-info {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

/* Legacy: plain <p> inside .fact */
.fact > p {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.checkout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}
.checkout > * { min-width: 0; }

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 15%, white);
  margin-bottom: 0.7rem;
}

.form-group-title {
  margin: 0.25rem 0 0.45rem;
  font-size: 1rem;
}

.form-help {
  margin: 0 0 0.55rem;
  color: #6d5f53;
  font-size: 0.86rem;
}

.compact-row {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 0.7rem;
}

.compact-col {
  max-width: 210px;
}

.availability-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.availability-calendar,
.availability-times {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg) 40%, white);
  padding: 0.7rem;
}

.avail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.avail-head strong {
  font-size: 1.05rem;
}

.avail-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #ecd6bd;
  background: #fff;
  cursor: pointer;
}

.avail-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.avail-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.avail-weekdays span {
  text-align: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  color: #88786a;
  font-weight: 800;
}

.avail-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.avail-empty {
  min-height: 42px;
}

.avail-day {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.avail-day.unavailable {
  background: #efefef;
  color: #b0b0b0;
  border-color: #e5e5e5;
  cursor: not-allowed;
}

.avail-day.selected {
  background: #2d2220;
  color: #fff;
  border-color: #2d2220;
}

.time-slot-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0.5rem 0 0.65rem;
}

.time-slot {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.time-slot.unavailable {
  background: #efefef;
  color: #b0b0b0;
  border-color: #e5e5e5;
  cursor: not-allowed;
}

.time-slot.selected {
  background: color-mix(in srgb, var(--brand) 12%, white);
  border-color: color-mix(in srgb, var(--brand) 45%, white);
  color: var(--ink);
}

.inline-check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: #5f5146;
}

.inline-check input {
  width: 17px;
  height: 17px;
  margin: 0.15rem 0 0;
  padding: 0;
}

.upsell-snippets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.upsell-snippet {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg) 30%, white);
  padding: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.upsell-snippet h4 {
  margin: 0;
  font-size: 0.95rem;
}

.upsell-snippet p {
  margin: 0.18rem 0 0;
  font-size: 0.82rem;
  color: #66584d;
}

.upsell-snippet .btn {
  white-space: nowrap;
  padding: 0.45rem 0.62rem;
}

.promo-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 30%, white);
  padding: 0.6rem;
  margin-bottom: 0.7rem;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: center;
}

.promo-row input {
  margin-bottom: 0;
}

.summary-table-wrap {
  overflow-x: auto;
  margin-bottom: 0.45rem;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  font-size: 0.9rem;
}

.summary-table thead th {
  text-align: left;
  padding: 0.45rem 0.42rem;
  background: color-mix(in srgb, var(--bg) 40%, white);
  border-bottom: 1px solid var(--line);
  color: #4f4338;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.summary-table tbody td {
  padding: 0.5rem 0.42rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.summary-table tbody tr:last-child td {
  border-bottom: none;
}

.summary-table th:first-child,
.summary-table td:first-child {
  width: 28px;
  text-align: center;
}

.summary-table th:nth-child(3),
.summary-table td:nth-child(3) {
  width: 52px;
  text-align: center;
}

.summary-table th:nth-child(4),
.summary-table td:nth-child(4) {
  width: 88px;
}

.summary-table th:nth-child(5),
.summary-table td:nth-child(5) {
  width: 74px;
  text-align: right;
  font-weight: 700;
}

.summary-table th:last-child,
.summary-table td:last-child {
  width: 36px;
  text-align: center;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.summary-highlight {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 40%, white);
  border-radius: 12px;
  padding: 0.5rem 0.6rem;
  font-size: 1.02rem;
}

.summary-highlight strong {
  font-size: 1.12rem;
}

.summary-highlight.deposit {
  border-color: color-mix(in srgb, var(--brand) 40%, white);
  background: color-mix(in srgb, var(--brand) 10%, white);
  color: var(--ink);
}

.payment-card-strip {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin-top: 0.7rem;
  opacity: 0.95;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #187955;
  background: #e8fff3;
  border: 1px solid #bcf2d9;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.18s;
}

.delay-3 {
  animation-delay: 0.24s;
}

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

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

@keyframes ambientShift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(8deg);
  }
}

@keyframes floatOrb {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-28px) translateX(10px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
}

@keyframes galleryRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes bump {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.24);
  }
}

@keyframes sparkPop {
  0% {
    opacity: 0.95;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--sx, 0px), var(--sy, -18px)) scale(0.2);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .pricing,
  .grid-2,
  .checkout {
    grid-template-columns: 1fr;
  }

  .gallery,
  .stat-row,
  .split-spotlight {
    grid-template-columns: 1fr;
  }

  .fun-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .infographic,
  .metric-grid,
  .splash-top,
  .nuxt-grid,
  .planner-grid,
  .offer-slide,
  .exp-grid,
  .venue-art,
  .occasion-layout,
  .flow-grid,
  .included-row,
  .location-grid,
  .location-cards,
  .location-hub-grid,
  .page-hero-grid,
  .detail-grid,
  .exp-gallery-grid,
  .gallery-strip,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .planner-addon-list {
    grid-template-columns: 1fr;
  }

  .package-addon-grid {
    grid-template-columns: 1fr;
  }

  .package-addon-card {
    grid-template-columns: 1fr;
  }

  .package-addon-thumb {
    min-height: 132px;
  }

  .compact-row,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .upsell-snippets {
    grid-template-columns: 1fr;
  }

  .compact-col {
    max-width: none;
  }

  .party-ideas-scroller {
    padding: 0;
  }

  .party-ideas-nav {
    display: none;
  }

  .party-idea-card {
    flex-basis: min(340px, 88vw);
  }

  .video-hero,
  .hero-video {
    min-height: 440px;
  }

  .splash-over-video {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    top: 0.75rem;
    padding: 0.85rem;
  }

  .offer-media {
    min-height: 200px;
    max-height: 260px;
  }

  .offer-overlay {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .venue-piece {
    min-height: 410px;
    padding-top: 98px;
  }

  .hero-included-price,
  .addon-feature-grid {
    grid-template-columns: 1fr;
  }

  .review-cards-grid {
    grid-template-columns: 1fr;
  }

  .addon-swipe-track .addon-feature-card {
    flex-basis: 85%;
  }

  .addon-swipe-nav {
    width: 40px;
    height: 40px;
  }

  .package-hero .cutout-stage {
    min-height: 420px;
  }

  .package-hero .kid-cutout {
    max-height: 340px;
  }

  .venue-photo {
    width: 190px;
    height: 190px;
    border-width: 9px;
  }

  .review-art {
    min-height: 520px;
  }

  .review-photo-circle {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
  }

  .review-pattern {
    left: 14%;
    width: 78px;
    height: 78px;
  }

  .review-bubble {
    margin: 100px auto 0;
    width: 100%;
    max-width: 520px;
    border-radius: 26px;
    aspect-ratio: auto;
    min-height: 320px;
    padding: 1.45rem 1.25rem 1.2rem;
  }

  .review-author {
    font-size: 1.5rem;
  }

  .venue-shape {
    height: 315px;
    padding: 1rem 0.9rem 1.05rem;
  }

  .venue-shape p {
    font-size: 1.35rem;
    max-width: 240px;
  }

  .venue-shape small {
    font-size: 0.88rem;
  }

  .price-card.highlight {
    transform: none;
  }

  .nav-toggle { display: flex; order: 3; }
  .menu { display: none; }
  .top-actions .auth-btn,
  .top-actions .profile-wrap,
  .top-actions .top-location-host { display: none !important; }
  .topbar-inner { gap: 0.4rem; }
  .cart-count { min-width: 28px; }
  .cart-btn { padding: 0 0.55rem; }

  .menu {
    gap: 0.52rem;
  }

  .menu a {
    font-size: 0.83rem;
  }

  .top-actions {
    margin-left: auto;
    gap: 0.35rem;
  }

  .top-actions .brand-location-select {
    min-width: 128px;
    max-width: 150px;
    font-size: 0.74rem;
  }

  .profile-toggle {
    max-width: 42px;
  }

  .auth-btn {
    padding: 0.38rem 0.62rem;
    font-size: 0.72rem;
  }

  .mega-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .mega-footer-grid {
    grid-template-columns: 1fr;
  }

  .media-stage {
    padding: 0;
  }

  .media-stage img,
  .media-stage video {
    max-width: calc(100vw - 26px);
    max-height: calc(94vh - 132px);
  }
}

.vibe-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vibe-powered img {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

/* ── Featured Offerings container ────────────────────────────── */
.offer-container {
  background:
    radial-gradient(circle at 5% 18%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 36%),
    radial-gradient(circle at 93% 6%, rgba(139, 63, 213, 0.13), transparent 36%),
    radial-gradient(circle at 50% 108%, rgba(255, 197, 102, 0.12), transparent 30%),
    linear-gradient(175deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 60%, white) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.6rem 1.4rem 2rem;
  box-shadow: var(--shadow);
}

/* ── Party Estimator ─────────────────────────────────────────── */
.party-estimator-container {
  background:
    radial-gradient(circle at 6% 14%, color-mix(in srgb, var(--brand) 7%, transparent), transparent 38%),
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--brand-2) 5%, transparent), transparent 36%),
    radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--brand-3) 4%, transparent), transparent 32%),
    linear-gradient(160deg, color-mix(in srgb, var(--bg) 15%, white) 0%, white 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.8rem 1.6rem 2.4rem;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--brand) 7%, transparent);
}

.estimator-subtitle {
  margin: -0.2rem 0 1.4rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.estimator-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1.8rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}

.estimator-controls-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: center;
  padding-bottom: 0.1rem;
}

.estimator-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.estimator-input-group label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.estimator-input {
  width: 140px;
  padding: 0.55rem 0.85rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.estimator-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent);
}

.estimator-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.2rem;
}

.estimator-card {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--line) 50%, transparent);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--brand) 7%, transparent);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.estimator-card:hover {
  box-shadow: 0 10px 32px color-mix(in srgb, var(--brand) 12%, transparent);
  transform: translateY(-3px);
}

.estimator-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--bg) 40%, white), color-mix(in srgb, var(--brand) 5%, white));
}

.estimator-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.estimator-card:hover .estimator-card-img img {
  transform: scale(1.04);
}

.estimator-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.estimator-card-name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.estimator-pricing-mode {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  background: color-mix(in srgb, var(--brand) 6%, transparent);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
}

.estimator-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: linear-gradient(120deg, color-mix(in srgb, var(--brand) 6%, transparent), color-mix(in srgb, var(--brand) 4%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand) 13%, transparent);
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.estimator-total strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.estimator-asterisk {
  font-size: 0.75rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--brand) 60%, white);
  vertical-align: super;
  margin-left: 1px;
  line-height: 0;
}

.estimator-disclaimer {
  margin: 1rem auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted, #888);
  line-height: 1.5;
}

.estimator-disclaimer sup {
  font-weight: 700;
  color: color-mix(in srgb, var(--brand) 60%, white);
}

.estimator-included {
  margin: 0.4rem 0 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.estimator-included-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.estimator-included-list {
  margin: 0.15rem 0 0;
  padding: 0 0 0 1.1em;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.estimator-included-list li {
  font-size: 0.82rem;
  line-height: 1.4;
}

.estimator-included-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
}

.estimator-included-link:hover {
  color: color-mix(in srgb, var(--brand) 75%, black);
  text-decoration-thickness: 2px;
}

.estimator-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.estimator-badge {
  background: color-mix(in srgb, var(--bg) 50%, white);
  color: color-mix(in srgb, var(--brand) 65%, black);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.estimator-badge--food {
  background: color-mix(in srgb, var(--bg) 55%, white);
  color: color-mix(in srgb, var(--brand) 60%, black);
  border-color: var(--line);
}

.estimator-highlights {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.estimator-highlights li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.25em;
  position: relative;
  line-height: 1.4;
}

.estimator-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
  font-size: 0.9em;
  top: 0.05em;
}

.estimator-card-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 0.8rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--brand) 22%, transparent);
}

.estimator-card-cta:hover {
  background: color-mix(in srgb, var(--brand) 88%, black);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px color-mix(in srgb, var(--brand) 34%, transparent);
}

@media (max-width: 600px) {
  .estimator-controls {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
  }
  .estimator-input {
    width: 100%;
  }
  .estimator-cards {
    grid-template-columns: 1fr;
  }
  .fun-facts {
    grid-template-columns: 1fr;
  }

  /* Checkout: make summary table fit narrow screens */
  .summary-table {
    min-width: 0;
    font-size: 0.8rem;
  }
  .summary-table th:nth-child(4),
  .summary-table td:nth-child(4) {
    display: none;
  }
  .room-card {
    min-width: 0;
    flex: 1 1 calc(50% - 0.65rem);
  }
}

/* ── AI party idea placeholder card ─────────────────────────────────── */
.ai-idea-card {
  border: 2px dashed color-mix(in srgb, var(--brand) 50%, transparent);
  background: color-mix(in srgb, var(--brand) 6%, #fff);
  box-shadow: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.ai-idea-card:hover,
.ai-idea-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--brand) 14%, transparent);
  outline: none;
}
.ai-idea-inner {
  padding: 2rem 1.4rem;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}
.ai-idea-plus {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--brand) 35%, transparent);
}
.ai-idea-inner h3 { margin: 0.4rem 0 0; color: var(--ink); }
.ai-idea-inner p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* AI party prompt modal */
.ai-prompt-help {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.ai-prompt-field {
  width: 100%;
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  resize: vertical;
  box-sizing: border-box;
}
.ai-prompt-field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 15%, transparent);
}
.ai-prompt-status {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  display: none;
}

/* AI party plan result */
.ai-plan-result { margin-top: 1rem; }
.ai-plan-summary {
  margin: 0 0 1rem;
  padding: 0.8rem 0.95rem;
  background: color-mix(in srgb, var(--brand) 6%, #fff);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}
.ai-plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.8rem;
}
.ai-plan-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ai-plan-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ai-plan-card-type {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}
.ai-plan-card-price { color: var(--ink); font-size: 1rem; }
.ai-plan-card h4 { margin: 0; font-size: 1rem; color: var(--ink); }
.ai-plan-card p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.45; }
.ai-plan-overage-note {
  margin: 0.3rem 0 0 !important;
  font-size: 0.78rem !important;
  color: var(--brand) !important;
  font-weight: 600;
}
.ai-plan-add-btn { margin-top: auto; align-self: flex-start; }
.ai-plan-dates {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.ai-plan-dates-label { font-size: 0.85rem; font-weight: 700; color: var(--muted); }
.ai-plan-date-chip {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  background: color-mix(in srgb, var(--brand) 8%, #fff);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}
