/* =========================================================
   Mysore Pack — premium theme (Maroon / Gold / Cream)
   ========================================================= */
:root {
  --radius: 0.75rem;

  --background: #fff8e7;
  --foreground: #3e2723;
  --card: #ffffff;

  --primary: #5a1f16;
  --primary-dark: #3d130d;
  --primary-foreground: #fff8e7;

  --gold: #d4af37;
  --gold-light: #f0d98a;
  --gold-deep: #b8912a;

  --muted: #f5ecd8;
  --muted-foreground: #7a6a5c;
  --accent: #f7e9c9;
  --border: #e6d9bb;
  --destructive: #c0392b;
  --whatsapp: #25d366;

  --gradient-gold: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  --gradient-maroon: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-hero: linear-gradient(
    to bottom,
    rgba(61, 19, 13, 0.82),
    rgba(61, 19, 13, 0.55) 45%,
    rgba(61, 19, 13, 0.92)
  );
  --shadow-soft: 0 12px 36px -14px rgba(90, 31, 22, 0.4);
  --shadow-lift: 0 26px 60px -20px rgba(90, 31, 22, 0.55);
  --shadow-gold: 0 0 0 1px rgba(212, 175, 55, 0.55), 0 20px 44px -18px rgba(212, 175, 55, 0.55);
  --transition-smooth: 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.ic {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ic.big {
  width: 3.5rem;
  height: 3.5rem;
}

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow-soft);
}
.muted {
  color: var(--muted-foreground);
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
}
.eyebrow.gold {
  color: var(--gold);
}
.eyebrow.deep {
  color: var(--gold-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    transform var(--transition-smooth),
    background-color 0.3s,
    color 0.3s;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: scale(1.05);
}
.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--primary-dark);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}
.btn-block,
.block {
  width: 100%;
}
.btn-block {
  padding: 0.9rem 1rem;
  font-size: 1rem;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: var(--gradient-maroon);
  transition: opacity 0.7s;
}
.loader.done {
  opacity: 0;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
}
.loader-title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--background);
}
.loader-sub {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.5s, box-shadow 0.5s;
  background: transparent;
}
.header.scrolled {
  background: rgba(61, 19, 13, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.header-bar {
  max-width: 80rem;
  margin-inline: auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .header-bar {
    padding-inline: 2rem;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-chip {
  display: inline-block;
  background: rgba(255, 248, 231, 0.95);
  border-radius: 1rem;
  padding: 0.375rem 0.625rem;
  box-shadow: var(--shadow-soft);
}
.logo-chip img {
  height: 2.25rem;
  width: auto;
}
@media (min-width: 640px) {
  .logo-chip img {
    height: 2.75rem;
  }
}
.brand-text {
  display: none;
  line-height: 1.15;
}
@media (min-width: 640px) {
  .brand-text {
    display: block;
  }
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--background);
}
.brand-tag {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.nav-desktop,
.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}
.nav-desktop a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 248, 231, 0.85);
  transition: color 0.3s;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.375rem;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.hamburger {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  background: rgba(61, 19, 13, 0.98);
  backdrop-filter: blur(12px);
  transition: max-height 0.5s;
}
.mobile-menu.open {
  max-height: 30rem;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1.5rem;
}
.mobile-menu nav > a {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.75rem 0;
  color: rgba(255, 248, 231, 0.9);
  transition: color 0.3s;
}
.mobile-menu nav > a:hover {
  color: var(--gold);
}
.mobile-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-cta .btn {
  padding: 0.85rem 1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: scale(1.12);
}
.hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  padding: 8rem 1.5rem;
  text-align: center;
}
.hero-content h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: var(--background);
}
.hero-sub {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: 1rem;
  color: rgba(255, 248, 231, 0.85);
}
@media (min-width: 640px) {
  .hero-sub {
    font-size: 1.125rem;
  }
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-actions .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
  .hero-actions .btn {
    width: auto;
  }
}
.hero-actions .btn-outline {
  backdrop-filter: blur(4px);
}

.sweet {
  position: absolute;
  border-radius: 0.5rem;
  background: var(--gradient-gold);
  opacity: 0.4;
  filter: blur(1px);
  animation: float-sweet 7s ease-in-out infinite;
}
.s1 { left: 8%; top: 22%; width: 4rem; height: 4rem; animation-delay: 0s; }
.s2 { right: 12%; top: 30%; width: 2.5rem; height: 2.5rem; animation-delay: 1.4s; }
.s3 { left: 18%; bottom: 18%; width: 3rem; height: 3rem; animation-delay: 2.6s; }
.s4 { right: 22%; bottom: 24%; width: 2rem; height: 2rem; animation-delay: 0.8s; }

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
}
.scroll-cue span {
  display: flex;
  height: 2.75rem;
  width: 1.75rem;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.7);
  border-radius: 999px;
}
.scroll-cue .dot {
  width: 1rem;
  height: 1rem;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-img {
  position: relative;
}
.about-img .glow {
  position: absolute;
  inset: -0.75rem;
  border-radius: 2rem;
  background: var(--gradient-gold);
  opacity: 0.25;
  filter: blur(24px);
}
.about-img img {
  position: relative;
  width: 100%;
  border-radius: 1.75rem;
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}
h2 {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--primary);
}
h2.on-dark {
  color: var(--background);
}
.lead {
  margin-top: 1.25rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}
.feature-grid {
  margin-top: 2.25rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.feature {
  border-radius: 1rem;
  padding: 1.25rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.icon-badge {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  transition: transform 0.3s;
}
.feature:hover .icon-badge {
  transform: scale(1.1);
}
.feature h3 {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--primary);
}
.feature p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.section-head .muted {
  margin-top: 1rem;
}

/* ---------- Products ---------- */
.product-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product {
  overflow: hidden;
  border-radius: 1.5rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.product:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
}
.product-img {
  overflow: hidden;
}
.product-img img {
  height: 14rem;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.product:hover .product-img img {
  transform: scale(1.1);
}
.product-body {
  padding: 1.5rem;
}
.product-body h3 {
  font-size: 1.25rem;
  color: var(--primary);
}
.product-body p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.product-foot {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-deep);
}

/* ---------- Why choose us ---------- */
.why {
  position: relative;
  overflow: hidden;
  background: var(--gradient-maroon);
}
.why-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-card {
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 248, 231, 0.08);
  backdrop-filter: blur(12px);
  padding: 1.75rem;
  text-align: center;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.7);
}
.why-card .icon-round {
  margin-inline: auto;
  display: grid;
  place-items: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
}
.why-card .icon-round .ic {
  width: 1.5rem;
  height: 1.5rem;
}
.why-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--background);
}
.why-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 248, 231, 0.7);
}

.stats {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 248, 231, 0.08);
  backdrop-filter: blur(12px);
  padding: 2.5rem 1.5rem;
}
@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
}
.stat .label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 248, 231, 0.75);
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: rgba(247, 233, 201, 0.4);
}
.gallery-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  background: transparent;
}
.gallery-item img {
  height: 15rem;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery-item:hover img {
  transform: scale(1.15);
}
.gallery-item .veil {
  position: absolute;
  inset: 0;
  background: rgba(61, 19, 13, 0);
  transition: background 0.5s;
}
.gallery-item:hover .veil {
  background: rgba(61, 19, 13, 0.35);
}

/* ---------- Contact ---------- */
.contact-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1.25rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.info-card .icon-badge {
  height: 2.75rem;
  width: 2.75rem;
}
.info-card .k {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.info-card .v {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.contact-form {
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: box-shadow 0.3s, border-color 0.3s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
}
.err {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--destructive);
}

.map-wrap {
  margin-top: 4rem;
}
.map-wrap iframe {
  height: 380px;
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.footer {
  padding-top: 4rem;
  background: var(--gradient-maroon);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer .brand-name {
  display: inline;
}
.footer .logo-chip img {
  height: 2.75rem;
}
.footer-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 248, 231, 0.7);
}
.footer h3 {
  font-size: 1.125rem;
  color: var(--gold);
}
.footer-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 248, 231, 0.75);
}
.footer-list a:hover {
  color: var(--gold);
}
.socials {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
}
.socials a {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.socials a:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: var(--primary-dark);
}
.socials .ic {
  width: 1rem;
  height: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 248, 231, 0.6);
}

/* ---------- Floating actions ---------- */
.floating {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.fab {
  position: relative;
  display: grid;
  place-items: center;
  height: 3.5rem;
  width: 3.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: var(--shadow-lift);
  transition: transform 0.35s, opacity 0.4s;
}
.fab .ic {
  width: 1.5rem;
  height: 1.5rem;
}
.fab:hover {
  transform: translateY(-6px) scale(1.1);
}
.fab-top {
  height: 2.75rem;
  width: 2.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.fab-top .ic {
  width: 1.25rem;
  height: 1.25rem;
}
.fab-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.fab-call {
  background: var(--primary);
  color: var(--primary-foreground);
}
.fab-wa {
  background: var(--whatsapp);
  color: #fff;
}
.fab-tip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--primary);
  color: var(--primary-foreground);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.fab-wa .fab-tip {
  background: var(--whatsapp);
  color: #fff;
}
.fab:hover .fab-tip {
  opacity: 1;
}

/* ---------- Lightbox & popup ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(61, 19, 13, 0.9);
  backdrop-filter: blur(4px);
  animation: zoom-in-soft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lightbox img {
  max-height: 82vh;
  width: auto;
  border-radius: 1rem;
  object-fit: contain;
  box-shadow: var(--shadow-lift);
}
.lightbox-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}
.popup {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(61, 19, 13, 0.8);
  backdrop-filter: blur(4px);
}
.popup-card {
  max-width: 24rem;
  border-radius: 1.5rem;
  background: var(--card);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lift);
  animation: zoom-in-soft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.popup-card .ic.big {
  margin-inline: auto;
  color: var(--gold-deep);
}
.popup-card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}
.popup-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.popup-card .btn {
  margin-top: 1.5rem;
}

/* ---------- Animations ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoom-in-soft {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float-sweet {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(8deg); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}
@keyframes ripple-out {
  to { transform: scale(4); opacity: 0; }
}

.fade-up,
.hero .eyebrow {
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.float-sweet {
  animation: float-sweet 7s ease-in-out infinite;
}
.pulse-ring {
  animation: pulse-ring 2.2s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ripple {
  position: relative;
  overflow: hidden;
}
.ripple > span.ripple-wave {
  position: absolute;
  border-radius: 999px;
  transform: scale(0);
  animation: ripple-out 0.6s linear;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

[hidden] {
  display: none !important;
}
