:root {
  --wine: #4a0e1c;
  --wine-deep: #2a0810;
  --burgundy: #7a2035;
  --gold: #c9a45c;
  --gold-light: #e8cc82;
  --gold-dim: rgba(201, 164, 92, 0.15);
  --cream: #f8f3eb;
  --cream-dim: #d9cfc0;
  --charcoal: #141010;
  --smoke: #1e1816;
  --smoke-light: #2a2220;
  --text: #f8f3eb;
  --text-muted: #a89888;
  --font-display: 'Cormorant Infant', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
}

button, a, .btn, .ig-item {
  touch-action: manipulation;
}

body.loaded { overflow-x: hidden; }
body.loading { overflow: hidden; }

img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1240px, 90vw);
  margin: 0 auto;
}

.section { padding: clamp(80px, 10vw, 140px) 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow.light { color: var(--gold-light); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.display-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-head.center { text-align: center; }
.section-head.center .display-title { margin: 0 auto; }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--wine-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: preloaderPulse 1.5s ease infinite;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201, 164, 92, 0.2);
  margin: 0 auto 16px;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  animation: preloaderLoad 1.2s var(--ease) forwards;
}

.preloader-inner p {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes preloaderLoad {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 32, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.loaded .cursor-glow { opacity: 1; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 24px 0;
  transition: padding 0.4s var(--ease), background 0.4s;
}

.header.scrolled {
  padding: 14px 0;
  background: rgba(20, 16, 16, 0.92);
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
}

.header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.header-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  width: 0%;
  transition: width 0.1s linear;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 769px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 210;
    pointer-events: none;
    background: transparent;
    padding: 0 220px;
    margin: 0;
    list-style: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }

  .header.scrolled ~ .nav-links {
    height: 72px;
  }

  .nav-links li,
  .nav-links a {
    pointer-events: auto;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 310;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  background: rgba(42, 8, 16, 0.6);
}

.lang-btn {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover {
  color: var(--gold-light);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--wine-deep);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  z-index: 10;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--wine-deep) !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 164, 92, 0.3);
  color: var(--wine-deep) !important;
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.cart-btn svg { width: 20px; height: 20px; }

.cart-btn:hover {
  background: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--ease);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-toggle.open span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.35s var(--ease);
}

.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8843a);
  color: var(--wine-deep);
  box-shadow: 0 4px 20px rgba(201, 164, 92, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 164, 92, 0.4);
}

.btn-ghost {
  border: 1px solid rgba(248, 243, 235, 0.25);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 164, 92, 0.06);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-1 { background-image: url('assets/instagram-photos/ig-035.jpg'); }
.hero-slide-2 { background-image: url('assets/instagram-photos/ig-001.jpg'); }
.hero-slide-3 { background-image: url('assets/instagram-photos/ig-030.jpg'); }

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 8, 16, 0.85) 0%, rgba(20, 16, 16, 0.5) 50%, rgba(20, 16, 16, 0.9) 100%),
    linear-gradient(to top, var(--charcoal) 0%, transparent 40%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a45c' fill-opacity='1'%3E%3Cpath d='M30 0l5 10h10l-8 7 3 10-10-6-10 6 3-10-8-7h10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(201, 164, 92, 0.1);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.hero-title-sub {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-style: italic;
  color: var(--gold-light) !important;
  font-weight: 400 !important;
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-floating-card {
  position: absolute;
  right: 5%;
  bottom: 18%;
  z-index: 3;
  background: rgba(20, 16, 16, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 164, 92, 0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 280px;
}

.floating-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.floating-rating .big {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.floating-rating .stars { color: var(--gold); font-size: 0.85rem; display: block; }
.floating-rating .small { font-size: 0.75rem; color: var(--text-muted); }

.floating-divider {
  height: 1px;
  background: rgba(201, 164, 92, 0.15);
  margin-bottom: 14px;
}

.hero-floating-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-wheel {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(201, 164, 92, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee {
  background: var(--wine);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 164, 92, 0.1);
  border-bottom: 1px solid rgba(201, 164, 92, 0.1);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-style: italic;
  flex-shrink: 0;
}

.marquee-track .dot {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about { background: var(--smoke); }

.about-top { margin-bottom: 64px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-stack {
  position: relative;
  height: 520px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.about-img.img-1 {
  top: 0; left: 0;
  width: 72%; height: 75%;
  background-image: url('assets/instagram-photos/ig-005.jpg');
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.about-img.img-2 {
  bottom: 0; right: 0;
  width: 58%; height: 55%;
  background-image: url('assets/instagram-photos/ig-020.jpg');
  border: 4px solid var(--smoke);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-frame {
  position: absolute;
  top: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-stat-card {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: var(--wine);
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}

.about-stat-card .num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.about-stat-card .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.feat {
  padding: 20px;
  background: var(--smoke-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 164, 92, 0.08);
  transition: border-color 0.3s, transform 0.3s;
}

.feat:hover {
  border-color: rgba(201, 164, 92, 0.25);
  transform: translateY(-2px);
}

.feat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.feat h4 { font-size: 0.95rem; color: var(--cream); margin-bottom: 4px; }
.feat p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Signatures horizontal scroll */
.signatures { overflow: hidden; }

.signatures-scroll {
  display: flex;
  gap: 24px;
  padding: 0 5vw 0 calc((100vw - min(1240px, 90vw)) / 2 + 5vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 48px;
}

.signatures-scroll::-webkit-scrollbar { display: none; }

.sig-card {
  flex: 0 0 min(380px, 80vw);
  scroll-snap-align: start;
  background: var(--smoke-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.sig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.sig-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.sig-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--smoke-light), transparent 50%);
}

.sig-1 { background-image: url('assets/instagram-photos/ig-010.jpg'); }
.sig-2 { background-image: url('assets/instagram-photos/ig-015.jpg'); }
.sig-3 { background-image: url('assets/instagram-photos/ig-030.jpg'); }
.sig-4 { background-image: url('assets/instagram-photos/ig-008.jpg'); }

.sig-body { padding: 28px; }

.sig-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.sig-body h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin: 8px 0 12px;
}

.sig-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sig-price {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.95rem;
}

/* Menu */
.menu { background: var(--charcoal); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 48px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid rgba(201, 164, 92, 0.1);
  transition: all 0.3s var(--ease);
}

.menu-tab:hover { color: var(--cream); border-color: rgba(201, 164, 92, 0.3); }

.menu-tab.active {
  background: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
  font-weight: 600;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
  transition: padding-left 0.3s var(--ease);
}

.menu-item:hover { padding-left: 8px; }

.menu-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.menu-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-item-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  white-space: nowrap;
  font-weight: 600;
}

.section-desc {
  color: var(--text-muted);
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 1rem;
}

.btn-add {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  flex-shrink: 0;
}

.btn-add:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(201, 164, 92, 0.4);
}

.btn-add.added {
  background: #4ade80;
  animation: addPop 0.4s var(--ease);
}

@keyframes addPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.btn-add-sm {
  width: auto;
  height: auto;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
}

.sig-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Experience */
.exp-parallax {
  height: 60vh;
  min-height: 400px;
  background-image: url('assets/instagram-photos/ig-003.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 8, 16, 0.8), rgba(20, 16, 16, 0.6));
}

.exp-content {
  position: relative;
  z-index: 1;
}

.exp-desc {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 480px;
  margin-top: 20px;
  line-height: 1.75;
  font-weight: 300;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.ig-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 164, 92, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  background: var(--smoke-light);
}

.ig-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 1;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(10, 8, 8, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}

.lightbox[hidden] { display: none !important; }

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.2);
  color: var(--cream);
  font-size: 1.6rem;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--wine-deep);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.2);
  color: var(--gold-light);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--wine-deep);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.gallery-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gallery-credit a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-credit a:hover { color: var(--gold-light); }

/* Reviews */
.reviews { background: var(--smoke); }

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--gold-dim);
  border-radius: 100px;
  border: 1px solid rgba(201, 164, 92, 0.2);
}

.rating-pill .score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
}

.rating-pill .stars { color: var(--gold); }
.rating-pill .source { font-size: 0.82rem; color: var(--text-muted); }

.reviews-slider { margin-top: 48px; overflow: hidden; }

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--smoke-light);
  border: 1px solid rgba(201, 164, 92, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: rgba(201, 164, 92, 0.25); }

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card footer strong { color: var(--cream); font-size: 0.9rem; }
.review-card footer span { font-size: 0.78rem; color: var(--text-muted); }

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.rev-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.2);
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.rev-btn:hover {
  background: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
}

.rev-dots {
  display: flex;
  gap: 8px;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.rev-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* CTA / Contact */
.cta { background: var(--charcoal); }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.cta-desc {
  color: var(--text-muted);
  margin: 16px 0 36px;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--smoke);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 164, 92, 0.08);
  transition: border-color 0.3s, transform 0.3s;
}

a.contact-card:hover {
  border-color: rgba(201, 164, 92, 0.3);
  transform: translateX(4px);
}

.cc-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.cc-value {
  font-size: 1.1rem;
  color: var(--cream);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-map {
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* Footer */
.footer {
  background: var(--wine-deep);
  padding: 60px 0 0;
  border-top: 1px solid rgba(201, 164, 92, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a, .footer-social a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.footer-links a:hover, .footer-social a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 164, 92, 0.08);
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-floating-card { display: none; }
  .review-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 900px) {
  .about-grid, .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 400px; }
  .about-features { grid-template-columns: 1fr; }
  .instagram-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    margin-top: 24px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .exp-parallax { background-attachment: scroll; }
}

@media (max-width: 768px) {
  .header {
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: 14px;
  }

  .header.scrolled { padding-top: max(10px, env(safe-area-inset-top)); }

  .container { width: min(1240px, 92vw); }

  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 350;
    background: rgba(20, 16, 16, 0.97);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s, visibility 0.4s;
    padding: calc(96px + env(safe-area-inset-top)) 32px calc(32px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    list-style: none;
    margin: 0;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 14px 16px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links a:active {
    background: rgba(201, 164, 92, 0.12);
  }

  .nav-actions {
    z-index: 360;
    position: relative;
  }

  body.menu-open .fab-order {
    opacity: 0;
    pointer-events: none;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 14px 32px !important;
  }

  .lang-switch {
    padding: 2px;
    gap: 1px;
  }

  .lang-btn {
    min-width: 30px;
    height: 28px;
    padding: 0 6px;
    font-size: 0.62rem;
  }

  .hero-content {
    padding: calc(100px + env(safe-area-inset-top)) 0 72px;
  }

  .hero-title .line { font-size: clamp(3rem, 15vw, 4.8rem); }

  .hero-title-sub {
    font-size: clamp(1.3rem, 5.5vw, 2rem) !important;
    margin-top: 6px;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.65;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }

  .hero-scroll-hint { display: none; }

  .display-title { font-size: clamp(2.1rem, 7.5vw, 3.2rem); }

  .signatures-scroll {
    padding: 0 4vw;
    gap: 16px;
    margin-top: 32px;
    scroll-padding-left: 4vw;
  }

  .sig-card { flex: 0 0 86vw; }

  .sig-img { height: 210px; }

  .sig-body { padding: 20px; }

  .sig-body h3 { font-size: 1.5rem; }

  .sig-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn-add-sm {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 6px;
    padding-bottom: 6px;
    margin: 32px 0 36px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 90%, transparent);
  }

  .menu-tabs::-webkit-scrollbar { display: none; }

  .menu-tab {
    flex-shrink: 0;
    padding: 11px 20px;
    font-size: 0.82rem;
  }

  .menu-item { flex-direction: column; gap: 12px; }

  .menu-item-right {
    align-self: stretch;
    justify-content: space-between;
    width: 100%;
  }

  .btn-add {
    width: 48px;
    height: 48px;
  }

  .about-grid { gap: 36px; }

  .about-img-stack { height: 300px; }

  .about-stat-card {
    left: 0;
    bottom: 16px;
    padding: 18px 22px;
  }

  .about-stat-card .num { font-size: 2.8rem; }

  .exp-parallax {
    height: 42vh;
    min-height: 260px;
  }

  .exp-content .display-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 16px;
  }

  .review-card { flex: 0 0 100%; }

  .reviews-nav { margin-top: 24px; }

  .rev-btn {
    width: 48px;
    height: 48px;
  }

  .cta-map { height: 260px; }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn { width: 100%; justify-content: center; }

  .contact-card { padding: 16px 18px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .cursor-glow { display: none; }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .cart-header,
  .cart-body,
  .cart-footer {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .cart-footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .checkout-modal {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    transform: none;
    border-radius: 0;
    padding: calc(20px + env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  }

  .checkout-modal.open {
    transform: none;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 15px 16px;
  }

  .radio-group { grid-template-columns: 1fr; }

  .radio-card { padding: 16px; }

  .success-actions {
    flex-direction: column;
    width: 100%;
  }

  .success-actions .btn,
  .success-actions a.btn {
    width: 100%;
    justify-content: center;
  }

  .lightbox {
    padding: calc(12px + env(safe-area-inset-top)) 44px calc(12px + env(safe-area-inset-bottom));
  }

  .lightbox-close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev { left: max(6px, env(safe-area-inset-left)); }
  .lightbox-next { right: max(6px, env(safe-area-inset-right)); }

  .lightbox-img {
    max-height: 78vh;
  }

  .lightbox-counter {
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .fab-order {
    bottom: max(18px, calc(12px + env(safe-area-inset-bottom)));
    right: max(14px, env(safe-area-inset-right));
    padding: 13px 18px;
    font-size: 0.85rem;
  }

  .toast {
    bottom: max(88px, calc(76px + env(safe-area-inset-bottom)));
    max-width: calc(100vw - 32px);
    white-space: normal;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.84rem;
  }

  .marquee { padding: 14px 0; }

  .marquee-track span { font-size: 1.05rem; }

  .preloader-logo { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .container { width: 94vw; }

  .about-features { grid-template-columns: 1fr; }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .hero-title .line { font-size: clamp(2.6rem, 14vw, 3.8rem); }

  .sig-card { flex: 0 0 92vw; }

  .logo { font-size: 1.35rem; }

  .logo-icon { width: 32px; height: 32px; }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .hero-content {
    padding-top: calc(80px + env(safe-area-inset-top));
    padding-bottom: 40px;
  }

  .nav-links { justify-content: center; gap: 16px; }

  .nav-links a { font-size: 1.05rem; min-height: 36px; }
}

/* Cart drawer */
.cart-overlay, .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.cart-overlay.open, .modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--smoke);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  border-left: 1px solid rgba(201, 164, 92, 0.1);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.1);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
}

.cart-close, .modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.15);
  color: var(--cream-dim);
  font-size: 1.4rem;
  line-height: 1;
  transition: all 0.3s;
}

.cart-close:hover, .modal-close:hover {
  background: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty-icon { font-size: 3rem; display: block; margin-bottom: 16px; opacity: 0.5; }
.cart-empty p { margin-bottom: 24px; }

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

.cart-list { display: flex; flex-direction: column; gap: 12px; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--smoke-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 164, 92, 0.08);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-info h4 {
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 2px;
}

.cart-item-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 6px;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  border-radius: 100px;
  padding: 4px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--smoke-light);
  color: var(--cream);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover { background: var(--gold); color: var(--wine-deep); }

.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: #ef4444; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(201, 164, 92, 0.1);
  background: var(--charcoal);
}

.cart-summary { margin-bottom: 16px; }

.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-total {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  padding-top: 12px;
  border-top: 1px solid rgba(201, 164, 92, 0.1);
  margin-top: 4px;
}

.cart-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.cart-checkout-btn { width: 100%; justify-content: center; }

/* Checkout modal */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(520px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--smoke);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 92, 0.15);
  z-index: 500;
  padding: 36px 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.checkout-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.checkout-modal h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.checkout-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal);
  border: 1px solid rgba(201, 164, 92, 0.12);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--charcoal);
  border: 1px solid rgba(201, 164, 92, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.3s;
}

.radio-card:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.06);
}

.radio-card input { display: none; }
.radio-icon { font-size: 1.3rem; }

.radio-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--cream);
}

.radio-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.radio-inline {
  display: flex;
  gap: 10px;
}

.radio-pill {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: var(--charcoal);
  border: 1px solid rgba(201, 164, 92, 0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--cream-dim);
  cursor: pointer;
  transition: all 0.3s;
}

.radio-pill:has(input:checked) {
  background: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
  font-weight: 600;
}

.radio-pill input { display: none; }

.checkout-order-preview {
  background: var(--charcoal);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-height: 140px;
  overflow-y: auto;
}

.checkout-order-preview .preview-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  color: var(--cream-dim);
}

.checkout-success { text-align: center; }

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.checkout-success h3 {
  margin-bottom: 12px;
}

.checkout-success p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.order-number {
  font-size: 1rem !important;
  color: var(--cream) !important;
  margin: 20px 0 !important;
}

.order-number strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--wine);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(201, 164, 92, 0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* FAB */
.fab-order {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, var(--gold), #a8843a);
  color: var(--wine-deep);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(201, 164, 92, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.fab-order svg { width: 20px; height: 20px; }

.fab-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 164, 92, 0.5);
}

.fab-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--wine-deep);
  color: var(--cream);
  font-size: 0.7rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-count:empty,
.fab-count[data-count="0"] { display: none; }

body.cart-open,
body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .exp-parallax { background-attachment: scroll; }
}
