/* ============================================================
   Finishing Touches Events — Stylesheet
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-50:  #f5f3ff;
  --brand-100: #ede9fe;
  --brand-600: #7c3aed;
  --brand-700: #6d28d9;
  --brand-800: #5b21b6;
  --brand-900: #4c1d95;
  --brand-950: #2e1065;
  --gold-100:  #fef3c7;
  --gold-300:  #fcd34d;
  --gold-400:  #fbbf24;
  --gold-500:  #f59e0b;
  --gold-600:  #d97706;
  --gold-700:  #b45309;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
  --shadow:    0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

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

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ── Layout Helpers ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.text-center { text-align: center; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-brand { color: var(--brand-700); }
.text-gold { color: var(--gold-600); }
.text-muted { color: var(--gray-500); }
.w-full { width: 100%; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.5rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all .2s; text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary  { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }
.btn-primary:hover { background: var(--brand-800); border-color: var(--brand-800); }
.btn-secondary { background: transparent; color: var(--brand-700); border-color: var(--brand-700); }
.btn-secondary:hover { background: var(--brand-50); }
.btn-gold { background: var(--gold-600); color: #fff; border-color: var(--gold-600); }
.btn-gold:hover { background: var(--gold-700); border-color: var(--gold-700); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem 1rem; font-size: .8rem; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: .2rem .75rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 600;
}
.badge-rental { background: var(--brand-100); color: var(--brand-700); }
.badge-sale   { background: var(--gold-100);  color: var(--gold-700); }
.badge-popular { background: var(--gold-500); color: #fff; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .875rem; font-weight: 500; color: var(--gray-700); margin-bottom: .35rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .65rem 1rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: .875rem; font-family: inherit; color: var(--gray-900);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(109,40,217,.12);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-grid { display: grid; gap: 1rem; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
.form-col-span { grid-column: 1 / -1; }

/* ── Top Bar ───────────────────────────────────────────────── */
.topbar {
  background: var(--brand-950); color: #c4b5fd;
  padding: .4rem 1rem; text-align: center; font-size: .75rem;
}
.topbar a { color: var(--gold-300); font-weight: 600; }
.topbar a:hover { color: var(--gold-400); }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: .75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-700); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.2; color: var(--gray-900); }
.logo-text small { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 400; color: var(--brand-700); display: block; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--gray-600); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-700); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--gray-600); transition: background .2s, color .2s;
}
.cart-btn:hover { background: var(--brand-50); color: var(--brand-700); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-700); color: #fff;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .3s; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 30%, #7c3aed 60%, #b45309 85%, #92400e 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  color: #fff; position: relative; overflow: hidden;
  padding: 5rem 0 4rem;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before { width: 500px; height: 500px; background: rgba(255,255,255,.04); top: -150px; left: -150px; }
.hero::after  { width: 300px; height: 300px; background: rgba(255,255,255,.04); bottom: -80px; right: 5%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(251,191,36,.3);
  padding: .4rem 1rem; border-radius: var(--radius-full);
  font-size: .8rem; color: var(--gold-300); margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-300); display: block; }
.hero-desc { font-size: 1.1rem; color: #c4b5fd; line-height: 1.7; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; font-size: .85rem; color: #c4b5fd; margin-bottom: 2rem; }
.hero-trust span::before { content: '✓ '; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl); padding: 1.5rem; backdrop-filter: blur(8px);
  position: relative;
}
.hero-card-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-card-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.hero-card-info { flex: 1; }
.hero-card-info p { font-weight: 600; color: #fff; font-size: .9rem; }
.hero-card-info small { color: #c4b5fd; font-size: .78rem; }
.hero-price { font-weight: 700; color: var(--gold-300); font-size: .95rem; }
.hero-floating-badge {
  position: absolute; bottom: -1.25rem; left: -1rem;
  background: var(--gold-500); color: #fff; border-radius: var(--radius-lg);
  padding: .6rem 1rem; box-shadow: var(--shadow);
}
.hero-floating-badge p:first-child { font-size: .7rem; font-weight: 600; }
.hero-floating-badge p:last-child  { font-size: 1.1rem; font-weight: 700; }
.hero-review-badge {
  position: absolute; top: -1rem; right: -1rem;
  background: #fff; color: var(--gray-800); border-radius: var(--radius-lg);
  padding: .6rem 1rem; box-shadow: var(--shadow);
}
.stars { color: var(--gold-500); font-size: .85rem; }
.hero-review-badge p { font-size: .75rem; font-weight: 600; color: var(--gray-800); margin-top: .15rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-300); }
.hero-stat span { font-size: .85rem; color: #c4b5fd; }

/* ── Section headings ──────────────────────────────────────── */
.section-eyebrow { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-600); margin-bottom: .5rem; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--gray-900); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); margin-top: .75rem; max-width: 600px; }
.section-header { margin-bottom: 2.5rem; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.view-all { font-size: .875rem; font-weight: 600; color: var(--brand-700); display: flex; align-items: center; gap: .25rem; white-space: nowrap; }
.view-all:hover { color: var(--brand-900); }

/* ── Product Card ──────────────────────────────────────────── */
.product-card { display: flex; flex-direction: column; text-decoration: none; }
.product-card:hover { transform: translateY(-2px); }
.product-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img svg { width: 72px; height: 72px; color: rgba(255,255,255,.8); transition: transform .3s; }
.product-card:hover .product-img svg { transform: scale(1.1); }
.product-img-badges { position: absolute; display: flex; gap: .4rem; }
.product-img-badges.top-left { top: .75rem; left: .75rem; }
.product-img-badges.top-right { top: .75rem; right: .75rem; }
.product-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .35rem; }
.product-card:hover .product-name { color: var(--brand-700); }
.product-desc { font-size: .8rem; color: var(--gray-500); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: .75rem; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--brand-700); }
.product-price small { font-size: .75rem; font-weight: 400; color: var(--gray-400); }
.product-stock { font-size: .72rem; color: var(--gray-400); text-align: right; }
.product-cta {
  display: block; width: 100%; margin-top: .75rem; padding: .5rem;
  background: var(--brand-700); color: #fff; text-align: center;
  font-size: .78rem; font-weight: 600; border-radius: var(--radius-full);
  opacity: 0; transition: opacity .2s;
}
.product-card:hover .product-cta { opacity: 1; }

/* ── Filter tabs ───────────────────────────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-tab {
  padding: .4rem 1rem; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 500; cursor: pointer;
  background: var(--gray-100); color: var(--gray-600);
  text-decoration: none; transition: all .2s;
}
.filter-tab:hover { background: var(--brand-50); color: var(--brand-700); }
.filter-tab.active { background: var(--brand-700); color: #fff; }

/* ── How It Works ──────────────────────────────────────────── */
.how-section { background: var(--brand-950); color: #fff; }
.how-section .section-eyebrow { color: var(--gold-400); }
.how-section .section-title { color: #fff; }
.how-section .section-subtitle { color: #c4b5fd; }
.how-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.how-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 2rem; position: relative; overflow: hidden;
}
.how-card-num {
  position: absolute; right: 1rem; top: 1rem;
  font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 700;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none; user-select: none;
}
.how-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--brand-700);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem;
}
.how-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; margin-bottom: .5rem; }
.how-card p { font-size: .875rem; color: #c4b5fd; line-height: 1.6; }

/* ── Why Us / Testimonials ─────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-feature { display: flex; gap: 1rem; }
.why-feature-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand-50);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: .15rem;
}
.why-feature h3 { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.why-feature p { font-size: .85rem; color: var(--gray-500); }
.reviews { display: flex; flex-direction: column; gap: 1rem; }
.review-card { padding: 1.25rem; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.review-stars { color: var(--gold-500); font-size: .95rem; }
.review-text { margin-top: .5rem; font-size: .875rem; color: var(--gray-700); font-style: italic; }
.review-meta { display: flex; justify-content: space-between; align-items: center; margin-top: .75rem; }
.review-meta strong { font-size: .875rem; }
.review-meta span { font-size: .75rem; color: var(--gray-400); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 30%, #7c3aed 60%, #b45309 100%);
  color: #fff; text-align: center; padding: 5rem 1rem;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; color: #c4b5fd; max-width: 540px; margin: 0 auto 2rem; }
.cta-banner .btn-row { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: .85rem; color: #c4b5fd; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 2.5rem auto 0; }
details.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.1rem 1.25rem; margin-bottom: .75rem; }
details.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--gray-900); font-size: .95rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item[open] summary { color: var(--brand-700); }
details.faq-item p { margin-top: .75rem; font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* ── Product Detail Page ───────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2.5rem 0; }
.product-detail-img {
  height: 320px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-xl);
}
.product-detail-img svg { width: 120px; height: 120px; color: rgba(255,255,255,.8); }
.product-detail-info {}
.product-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; }
.product-detail-name { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.product-detail-price { margin-bottom: 1rem; }
.product-detail-price strong { font-size: 1.75rem; color: var(--brand-700); }
.product-detail-price span { font-size: .9rem; color: var(--gray-500); margin-left: .35rem; }
.product-detail-desc { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.product-detail-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.product-detail-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; }
.product-detail-features li::before { content: '✓'; color: var(--brand-600); font-weight: 700; flex-shrink: 0; }
.trust-pills { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }
.trust-pill {
  background: var(--brand-50); border-radius: var(--radius-lg);
  padding: .75rem; text-align: center; font-size: .78rem; color: var(--brand-800);
}
.booking-card {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 1.5rem; box-shadow: var(--shadow-lg); position: sticky; top: 80px;
}
.booking-card h2 { font-size: 1.2rem; margin-bottom: .35rem; }
.booking-summary { background: var(--gray-50); border-radius: var(--radius-lg); padding: 1rem; margin: 1rem 0; font-size: .875rem; }
.booking-summary-row { display: flex; justify-content: space-between; margin-bottom: .35rem; color: var(--gray-600); }
.booking-summary-total { display: flex; justify-content: space-between; padding-top: .5rem; border-top: 1px solid var(--gray-200); font-weight: 700; color: var(--gray-900); font-size: .95rem; }
.qty-control { display: flex; align-items: center; gap: .75rem; }
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gray-300);
  background: #fff; cursor: pointer; font-size: 1rem; color: var(--gray-600);
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.qty-btn:hover:not(:disabled) { border-color: var(--brand-600); color: var(--brand-600); }
.qty-btn:disabled { opacity: .4; cursor: not-allowed; }
.qty-num { font-size: 1.1rem; font-weight: 700; min-width: 2rem; text-align: center; }
.availability-ok  { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius-lg); padding: .75rem 1rem; color: #15803d; font-size: .875rem; margin: .75rem 0; }
.availability-err { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius-lg); padding: .75rem 1rem; color: #dc2626; font-size: .875rem; margin: .75rem 0; }
.availability-ok strong, .availability-err strong { display: flex; align-items: center; gap: .4rem; font-size: .9rem; margin-bottom: .2rem; }

/* ── Cart & Checkout ───────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.cart-item { display: flex; gap: 1rem; padding: 1.25rem; margin-bottom: 1rem; }
.cart-item-icon { width: 64px; height: 64px; border-radius: var(--radius-lg); background: var(--brand-100); display: flex; align-items: center; justify-content: center; color: var(--brand-600); font-size: 1.5rem; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; }
.cart-item-meta { font-size: .8rem; color: var(--gray-500); margin-top: .2rem; }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.cart-qty { display: flex; align-items: center; gap: .5rem; }
.cart-qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-300); background: #fff; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
.cart-qty-btn:hover { border-color: var(--brand-600); color: var(--brand-600); }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--gray-400); font-size: 1.1rem; padding: .25rem; }
.cart-remove:hover { color: #dc2626; }
.order-summary { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow); position: sticky; top: 80px; }
.order-summary h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--gray-600); margin-bottom: .5rem; }
.summary-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; padding-top: .75rem; border-top: 1.5px solid var(--gray-200); margin-top: .5rem; }
.summary-total span:last-child { color: var(--brand-700); }
.summary-note { font-size: .75rem; color: var(--gray-400); margin-top: .5rem; display: flex; align-items: center; gap: .35rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.checkout-section { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.25rem; }
.checkout-section h2 { font-size: 1.05rem; font-family: 'Playfair Display', serif; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.payment-option {
  border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 1rem; cursor: pointer; transition: all .2s; display: flex; align-items: flex-start; gap: .75rem;
}
.payment-option:has(input:checked) { border-color: var(--brand-600); background: var(--brand-50); }
.payment-option input { margin-top: .15rem; accent-color: var(--brand-700); }
.payment-option-label { font-weight: 600; font-size: .9rem; }
.payment-option-sub { font-size: .78rem; color: var(--gray-500); margin-top: .1rem; }
.stripe-container, .paypal-container { margin-top: 1rem; }
.error-msg { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius-lg); padding: .75rem 1rem; color: #dc2626; font-size: .875rem; margin: .75rem 0; }
.success-page { max-width: 600px; margin: 4rem auto; padding: 0 1rem; text-align: center; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: #f0fdf4; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.5rem; }
.success-order-box { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; margin: 1.5rem 0; text-align: left; }
.order-item-row { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid var(--gray-100); font-size: .875rem; }
.order-item-row:last-child { border-bottom: none; }
.success-steps { background: var(--brand-50); border-radius: var(--radius-xl); padding: 1.5rem; margin: 1.5rem 0; text-align: left; }
.success-steps h2 { font-size: 1rem; margin-bottom: .75rem; color: var(--brand-900); }
.success-steps ol { padding-left: 1.25rem; list-style: decimal; }
.success-steps li { font-size: .875rem; color: var(--brand-800); margin-bottom: .5rem; padding-left: .25rem; }

/* ── Admin ─────────────────────────────────────────────────── */
.admin-header { background: var(--brand-950); color: #fff; padding: 1.5rem 0; margin-bottom: 2rem; }
.admin-header h1 { color: #fff; font-size: 1.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; }
.stat-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.stat-label { font-size: .8rem; color: var(--gray-500); }
.stat-value { font-size: 1.4rem; font-weight: 700; }
.admin-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; }
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
table.admin-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-table th { background: var(--gray-50); padding: .75rem 1rem; text-align: left; font-size: .78rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.admin-table td { padding: .75rem 1rem; border-top: 1px solid var(--gray-100); vertical-align: middle; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table input[type="number"] { width: 75px; padding: .3rem .5rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); font-size: .85rem; text-align: center; }
.admin-table input[type="number"]:focus { outline: none; border-color: var(--brand-600); }
.status-pill { display: inline-flex; align-items: center; padding: .2rem .65rem; border-radius: var(--radius-full); font-size: .72rem; font-weight: 600; }
.status-yes { background: #dcfce7; color: #166534; }
.status-no  { background: #fee2e2; color: #991b1b; }
.status-paid { background: #dcfce7; color: #166534; }
.status-pending { background: #fef9c3; color: #854d0e; }
.edit-btn { padding: .3rem .8rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-full); font-size: .75rem; cursor: pointer; background: #fff; color: var(--gray-600); transition: all .2s; }
.edit-btn:hover { border-color: var(--brand-300); color: var(--brand-700); }
.save-btn { padding: .3rem .8rem; border: none; border-radius: var(--radius-full); font-size: .75rem; cursor: pointer; background: var(--brand-700); color: #fff; }
.cancel-btn { padding: .3rem .65rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius-full); font-size: .75rem; cursor: pointer; background: #fff; color: var(--gray-600); }
.booking-mini { padding: 1rem; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); margin-bottom: .75rem; background: #fff; }
.booking-mini-name { font-weight: 600; font-size: .875rem; }
.booking-mini-meta { font-size: .78rem; color: var(--gray-500); margin-top: .2rem; }
.booking-mini-dates { font-size: .78rem; color: var(--brand-600); margin-top: .3rem; }

/* ── Empty state ───────────────────────────────────────────── */
.empty-state { border: 2px dashed var(--gray-200); border-radius: var(--radius-xl); padding: 4rem 2rem; text-align: center; }
.empty-state p { color: var(--gray-500); }
.empty-state a { color: var(--brand-600); text-decoration: underline; margin-top: .5rem; display: inline-block; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: #0a0a14; color: #9ca3af; border-top: 1px solid #1f2937; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3.5rem 1.25rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 1rem; }
.social-links { display: flex; gap: .6rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%; background: #1f2937;
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
  transition: background .2s; color: #9ca3af;
}
.social-btn:hover { background: var(--brand-700); color: #fff; }
.footer-col h3 { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .875rem; transition: color .2s; }
.footer-col ul a:hover { color: #c4b5fd; }
.contact-list { gap: .75rem !important; }
.contact-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .875rem; }
.contact-list a:hover { color: #c4b5fd; }
.hours-badge { background: rgba(109,40,217,.25); color: #c4b5fd; border-radius: var(--radius-sm); padding: .5rem .85rem; font-size: .75rem; margin-top: .75rem; display: inline-block; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 1.5rem; margin-top: 2.5rem; text-align: center; font-size: .78rem; color: #6b7280; }
.footer-bottom p + p { margin-top: .35rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem 1.25rem 1.5rem; border-top: 1px solid var(--gray-100); box-shadow: var(--shadow-lg); z-index: 99; gap: .25rem; }
  .nav-links.open + .nav-actions .nav-cta { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .how-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .trust-pills { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: .4rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Utility ─────────────────────────────────────────────────── */
.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }
.page-header { padding: 2.5rem 0 1rem; }
.page-header .section-eyebrow { margin-bottom: .35rem; }
.info-banner { background: var(--brand-50); border-radius: var(--radius-xl); padding: 1.25rem 1.5rem; text-align: center; margin-top: 2.5rem; }
.info-banner p:first-child { font-weight: 600; color: var(--brand-900); }
.info-banner p:last-child { font-size: .875rem; color: var(--brand-700); margin-top: .25rem; }
