/* ═══════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════ */
:root {
  --cream:      #FAF0E0;
  --cream-dark: #F0E4C8;
  --mauve:      #B08880;   /* exact dusty-rose from screenshot */
  --mauve-deep: #8C6060;
  --gold:       #C9A447;
  --gold-dark:  #8B6914;
  --text-dark:  #2C1A10;
  --text-mid:   #5A3E28;
  --text-light: #8B6040;
  --seal-red:   #8B1A1A;
  --font-script:'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   ISLAMIC STAR LATTICE BACKGROUND
   8-pointed star tile (60×60px)
═══════════════════════════════════════════════════ */
.lattice-bg {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C9A447' stroke-width='0.6' opacity='0.22'%3E%3Cpolygon points='40,4 46,16 59,10 53,23 66,26 55,34 60,47 47,43 44,56 36,56 33,43 20,47 25,34 14,26 27,23 21,10 34,16'/%3E%3Cline x1='40' y1='4'  x2='40' y2='0'/%3E%3Cline x1='40' y1='56' x2='40' y2='80'/%3E%3Cline x1='4'  y1='40' x2='0'  y2='40'/%3E%3Cline x1='76' y1='40' x2='80' y2='40'/%3E%3Cline x1='14' y1='14' x2='0'  y2='0'/%3E%3Cline x1='66' y1='14' x2='80' y2='0'/%3E%3Cline x1='14' y1='66' x2='0'  y2='80'/%3E%3Cline x1='66' y1='66' x2='80' y2='80'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}


/* ═══════════════════════════════════════════════════
   ENVELOPE SCREEN
═══════════════════════════════════════════════════ */
.envelope-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 50% 50%, rgba(255,210,185,0.22) 0%, transparent 62%),
    #BF857A;
  box-shadow:
    inset 0 0 160px rgba(0,0,0,0.26),
    inset 0 0 60px rgba(0,0,0,0.1);
  perspective: 1400px;
}

/* Left triangular flap — darker shade */
.envelope-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.14), transparent 50%);
  clip-path: polygon(0 0, 0 100%, 50% 50%);
  z-index: 2;
  pointer-events: none;
}

/* Right triangular flap — darker shade */
.envelope-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.14), transparent 50%);
  clip-path: polygon(100% 0, 100% 100%, 50% 50%);
  z-index: 2;
  pointer-events: none;
}


/* Gold fold line at center */
.env-fold-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right,
    transparent 3%,
    rgba(201,164,71,0.2) 12%,
    rgba(201,164,71,0.75) 30%,
    rgba(255,235,160,0.6) 50%,
    rgba(201,164,71,0.75) 70%,
    rgba(201,164,71,0.2) 88%,
    transparent 97%);
  box-shadow: 0 1px 6px rgba(201,164,71,0.35), 0 -1px 3px rgba(0,0,0,0.18);
  z-index: 3;
  pointer-events: none;
}

/* Corner ornaments */
.env-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.55;
}
.env-corner::before, .env-corner::after {
  content: '';
  position: absolute;
  background: rgba(201,164,71,0.7);
}
.env-corner::before { width: 100%; height: 1.5px; top: 0; left: 0; }
.env-corner::after  { width: 1.5px; height: 100%; top: 0; left: 0; }
.env-corner-tl { top: 16px; left: 16px; }
.env-corner-tr { top: 16px; right: 16px; transform: scaleX(-1); }
.env-corner-bl { bottom: 16px; left: 16px; transform: scaleY(-1); }
.env-corner-br { bottom: 16px; right: 16px; transform: scale(-1); }

/* ── FLAPS ── */
.flap {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  will-change: transform, opacity;
  transition:
    transform 1.05s cubic-bezier(0.68, -0.12, 0.27, 1.12),
    opacity   0.75s ease 0.1s;
}

/* Top flap */
.flap-top {
  top: 0;
  height: 50vh;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(0,0,0,0.025) 38px,
      rgba(0,0,0,0.025) 39px
    ),
    linear-gradient(172deg, #DDB0A8 0%, #C48278 35%, #A86B62 75%, #955B52 100%);
  border-bottom-left-radius: 50% 55%;
  border-bottom-right-radius: 50% 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(24px, 6vh, 56px);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.38),
    0 6px 16px rgba(0,0,0,0.22),
    inset 0 -6px 28px rgba(0,0,0,0.14),
    inset 0 3px 10px rgba(255,255,255,0.13);
}

/* Bottom flap */
.flap-bottom {
  bottom: 0;
  height: 50vh;
  background:
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 38px,
      rgba(0,0,0,0.025) 38px,
      rgba(0,0,0,0.025) 39px
    ),
    linear-gradient(352deg, #DDB0A8 0%, #C48278 35%, #A86B62 75%, #955B52 100%);
  border-top-left-radius: 50% 55%;
  border-top-right-radius: 50% 55%;
  box-shadow:
    0 -18px 55px rgba(0,0,0,0.32),
    0 -6px 16px rgba(0,0,0,0.18),
    inset 0 6px 28px rgba(0,0,0,0.12),
    inset 0 -3px 10px rgba(255,255,255,0.1);
}

/* OPEN animation — flaps peel away with 3-D tilt + fade */
.envelope-screen.opening .flap-top {
  transform: translateY(-118%) rotateX(14deg) scale(0.93);
  opacity: 0;
}
.envelope-screen.opening .flap-bottom {
  transform: translateY(118%) rotateX(-14deg) scale(0.93);
  opacity: 0;
}

/* After open — fade whole overlay */
.envelope-screen.done {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.4s;
}

/* ── TOP FLAP CONTENT ── */
.flap-top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vh, 28px);
  padding-bottom: 20px;
}

/* Wedding rings image */
.rings-illus {
  width: clamp(130px, 24vw, 200px);
  height: auto;
  display: block;
}

.awaits-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  letter-spacing: 0.2em;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
}

.ganesh-img {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 16vw, 120px);
  height: auto;
  z-index: 20;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}


/* ── WAX SEAL — exactly at center fold ── */
.wax-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transition: transform 0.2s ease;
}
.wax-seal:hover  { transform: translate(-50%, -50%) scale(1.08); }
.wax-seal:active { transform: translate(-50%, -50%) scale(0.92); }

.seal-img {
  width: clamp(130px, 20vw, 170px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.48));
  animation: sealFloat 3.2s ease-in-out infinite;
  pointer-events: none;
}

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



/* ═══════════════════════════════════════════════════
   MAIN INVITATION
═══════════════════════════════════════════════════ */
.invitation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(0.99);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 100vh;
}
.invitation.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}


/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-img-wrap {
  width: 100%;
  height: 92vh;
  position: relative;
  overflow: hidden;
}

@media (min-width: 600px) {
  .hero-img-wrap { height: 88vh; }
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #C4928A 0%, #7A5252 100%);
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.35) 40%,
    transparent 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(32px, 6vh, 60px);
}

.hero-text {
  text-align: center;
  padding: 0 20px;
}

/* Gold ornament row above names */
.hero-ornament-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.hero-orn-line {
  display: block;
  width: clamp(40px, 12vw, 80px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,164,71,0.9), transparent);
}

.hero-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.name-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3.8rem, 12vw, 6rem);
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 0 60px rgba(0,0,0,0.3);
  line-height: 1.1;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}
.name-amp {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: #C9A447;
  line-height: 0.85;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-divider-line {
  width: clamp(60px, 18vw, 110px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,164,71,0.8), transparent);
  margin: 14px auto 12px;
}
.hero-date {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════
   INVITATION MESSAGE
═══════════════════════════════════════════════════ */
.invite-message {
  text-align: center;
  padding: clamp(36px,6vh,56px) clamp(20px,5vw,40px) clamp(28px,4vh,44px);
  max-width: 580px;
  margin: 0 auto;
}
.ornament-row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.orn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.orn-center { width: 70px; flex-shrink: 0; }
.invite-para {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-mid);
}


/* ═══════════════════════════════════════════════════
   TWO HEARTS
═══════════════════════════════════════════════════ */
.two-hearts {
  padding: 0 clamp(12px,4vw,32px) clamp(40px,6vh,60px);
  text-align: center;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 2.8vw, 0.95rem);
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: clamp(24px,4vh,40px);
}

.couple-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 3vw, 24px);
}
.person-card {
  flex: 0 0 clamp(140px, 38vw, 230px);
  width: clamp(140px, 38vw, 230px);
  min-width: 0;
  text-align: center;
  background: transparent;
  border: 2px solid rgba(201,164,71,0.38);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09), 0 1px 4px rgba(201,164,71,0.12);
}

.person-photo-frame {
  width: 100%;
  margin: 0;
  aspect-ratio: 3 / 4;
  position: relative;
  background: transparent;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.person-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.person-svg-placeholder {
  position: absolute;
  inset: 0;
}

.person-name {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 2.8vw, 1.05rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 12px 12px 4px;
  line-height: 1.3;
}

.person-parents {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  color: var(--text-mid);
  margin: 0 12px 14px;
  font-weight: 400;
  line-height: 1.4;
}

.couple-amp {
  flex-shrink: 0;
  align-self: center;
  margin-top: -40px;
}
.couple-amp-text {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}


/* ═══════════════════════════════════════════════════
   RINGS DIVIDER
═══════════════════════════════════════════════════ */
.rings-divider {
  text-align: center;
  padding: 4px 0 20px;
}


/* ═══════════════════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════════════════ */
.countdown-section {
  text-align: center;
  padding: clamp(20px,4vh,36px) 16px clamp(28px,5vh,44px);
}
.countdown-label {
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 2.2vw, 0.78rem);
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 16px);
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(52px, 16vw, 90px);
}
.countdown-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 10vw, 5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  display: block;
}
.countdown-sep {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}
.countdown-unit {
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 2vw, 0.72rem);
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 6px;
}


/* ═══════════════════════════════════════════════════
   EVENTS / CAROUSEL
═══════════════════════════════════════════════════ */
.events-section {
  padding: clamp(16px,3vh,28px) 0 clamp(44px,7vh,64px);
  text-align: center;
}
.carousel-container { position: relative; width: 100%; overflow: visible; }

/* Mobile: stack vertically, disable carousel sliding */
.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: none !important;
  transition: none;
}
.event-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 clamp(16px,5vw,32px);
}

/* Hide carousel nav on mobile — all cards visible */
.carousel-nav, .slide-counter { display: none; }

/* Desktop: all three cards side by side */
@media (min-width: 700px) {
  .carousel-track {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .event-slide {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 10px;
  }
}

/* Card box */
.event-card {
  background: rgba(255,253,245,0.96);
  border: 1.5px solid rgba(201,164,71,0.35);
  border-radius: 18px;
  padding: 0 0 clamp(16px,3vw,22px);
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 8px 36px rgba(0,0,0,0.10), 0 1px 6px rgba(201,164,71,0.15);
  text-align: center;
  overflow: hidden;
}

/* Gold accent bar at top of each card */
.event-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A447, #E8C96A, #C9A447, transparent);
  margin-bottom: clamp(14px,3vw,22px);
}

.event-card > *:not(:first-child) {
  padding-left: clamp(16px,4vw,26px);
  padding-right: clamp(16px,4vw,26px);
}
.event-settings-icon { display: flex; justify-content: center; margin-bottom: 10px; }
.event-title {
  font-family: var(--font-sans);
  font-size: clamp(0.82rem,3vw,1rem);
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.event-date-str {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem,3vw,1.05rem);
  color: var(--text-mid);
  margin-bottom: 3px;
}
.event-time-str {
  font-family: var(--font-sans);
  font-size: clamp(1rem,3.5vw,1.15rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.event-venue {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem,2.5vw,0.8rem);
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.4;
}
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(201,164,71,0.2);
  line-height: 0;
}
.directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C9A447, #E8C96A);
  color: #2C1A10;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  margin-bottom: 14px;
  transition: filter 0.2s, transform 0.15s;
  letter-spacing: 0.06em;
  box-shadow: 0 3px 12px rgba(201,164,71,0.35);
}
.directions-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

.dont-miss {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: left;
  border-top: 1px solid rgba(201,164,71,0.22);
  padding-top: 12px;
  margin-top: 6px;
}
.dont-miss summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--text-mid);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.dont-miss summary::-webkit-details-marker { display: none; }
.dont-miss summary::after { content: '▾'; }
details[open] summary::after { content: '▴'; }
.dont-miss p { margin-top: 8px; line-height: 1.65; color: var(--text-light); }

/* Nav — hidden, all cards shown stacked/side-by-side */
.carousel-nav, .slide-counter, .cnav-btn,
.carousel-dots, .cdot { display: none !important; }


/* ═══════════════════════════════════════════════════
   CLOSING
═══════════════════════════════════════════════════ */
.closing-section {
  text-align: center;
  padding: clamp(16px,3vh,28px) clamp(16px,5vw,40px) clamp(110px,16vh,150px);
}
.closing-photo-wrap {
  width: clamp(200px, 72vw, 360px);
  margin: 0 auto 36px;
  border-radius: 16px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201,164,71,0.25), 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

.closing-photo { width: 100%; display: block; border-radius: 16px; }
.closing-placeholder { width: 100%; aspect-ratio: 1/1; }
.closing-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem,3.2vw,1.08rem);
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════
   SHARE BAR
═══════════════════════════════════════════════════ */
.share-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  padding: 12px 20px 18px;
  text-align: center;
  background: linear-gradient(to top, rgba(250,240,224,1) 55%, rgba(250,240,224,0));
  pointer-events: none;
}
.share-btn {
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C9A447, #E8C96A);
  color: #2C1A10;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,164,71,0.45);
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.05em;
}
.share-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,164,71,0.55);
}


/* ═══════════════════════════════════════════════════
   MUSIC BUTTON
═══════════════════════════════════════════════════ */
.music-btn {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 600;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(176,136,128,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.music-btn:hover { background: var(--mauve); transform: scale(1.08); }
.music-btn.muted { background: rgba(120,100,100,0.7); }

/* Spinning animation when music plays */
.music-btn.playing svg {
  animation: spin-note 3s linear infinite;
}
@keyframes spin-note {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44,26,16,0.92);
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 0.82rem;
  z-index: 9999;
  font-family: var(--font-sans);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
