/* =====================================================
   KANNIKA BANGLES — Global Design System
   Luxury Dark + Gold Theme
   ===================================================== */



/* ─── CSS Custom Properties ─── */
:root {
  /* Backgrounds - Ivory & Clean Blush Pastels */
  --bg-primary: #FDF9F9; /* Ultra-clean ivory with a soft hint of rose */
  --bg-secondary: #FFF2F4; /* Very light, soft pastel pink blush */
  --bg-elevated: #FFFFFF; /* Pure white for high-end elevated elements */
  --bg-glass: rgba(255, 255, 255, 0.9); /* Frosted glass styling */
  --bg-glass-strong: rgba(255, 251, 252, 0.98); /* Elegant light pinkish-ivory solid glass */

  /* Gold Palette - Vibrant Traditional Indian Gold */
  --gold-primary: #D4AF37; /* Metallic gold */
  --gold-light: #2D2D38; /* Champaign gold completely replaced with Dark Chrome */
  --gold-dark: #AA7C11; /* Royal antique gold */
  --gold-gradient: linear-gradient(135deg, #1C1C24, #5C5C6D, #1C1C24);
  --gold-shimmer: linear-gradient(90deg, #1C1C24 0%, #5C5C6D 25%, #1C1C24 50%, #5C5C6D 75%, #1C1C24 100%);

  /* Silver Palette - Sparkling Shimmer Silver */
  --silver-primary: #C0C0C0;
  --silver-light: #EAEAEA;
  --silver-gradient: linear-gradient(135deg, #E2E8F0, #FFFFFF, #CBD5E1);

  /* Bridal Pink Palette */
  --pink-primary: #D4456A; /* Royal bridal rose pink */
  --pink-light: #FFD5DF; /* Extremely soft blush pastel pink */
  --pink-dark: #9D1739; /* Deep maroon/crimson accent */
  --pink-gradient: linear-gradient(135deg, #D4456A, #FFCCD7, #D4456A);

  /* Text - High Contrast Deep Charcoal-Rose */
  --text-primary: #2D1C1E; /* Deep charcoal with a touch of rose */
  --text-secondary: #5C4347; /* Medium warm rose-charcoal */
  --text-muted: #8E7176; /* Muted warm rose-grey */

  /* Accents */
  --accent-rose: #D4456A;
  --accent-emerald: #1B7A5C;
  --accent-cream: #FFFDFB;

  /* Borders & Shadows */
  --border-subtle: rgba(212, 69, 106, 0.08); /* Extremely delicate pinkish borders */
  --border-gold: rgba(212, 175, 55, 0.22); /* Light gold borders */
  --border-strong: rgba(212, 175, 55, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.08);
  --shadow-gold-strong: 0 8px 30px rgba(212, 175, 55, 0.18);
  --shadow-card: 0 8px 24px rgba(157, 23, 57, 0.03); /* Soft pink-silk shadow */
  --shadow-elevated: 0 12px 36px rgba(157, 23, 57, 0.05);

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 960px;
  --nav-height: 80px;
  --topbar-height: 32px;

  /* Z-Index */
  --z-nav: 1000;
  --z-modal: 2000;
  --z-toast: 3000;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lora', serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.text-gold {
  color: var(--pink-primary);
}

.text-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

/* ─── Top Announcement Bar ─── */
.top-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  z-index: 1001;
  position: relative;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee__track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 24px;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__track span {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.marquee__dot {
  color: var(--pink-primary);
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-100% - 24px), 0, 0); }
}

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: 0;
  transition: top var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
  background: transparent;
}

.home-page .navbar {
  top: var(--topbar-height);
}

.navbar.scrolled {
  top: 0;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(157, 23, 57, 0.04);
}

.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
}

/* Hamburger toggle on left */
.navbar__toggle-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 1);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar__toggle-left span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.navbar__toggle-left.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle-left.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle-left.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 769px) {
  :root {
    --nav-height: 70px;
  }
  .navbar__inner {
    flex-direction: row;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 32px;
    gap: 0;
    align-items: center;
  }
  .navbar__brand {
    flex-direction: row;
    gap: 6px;
    margin: 0;
    flex-shrink: 0;
    order: 0;
  }
  .navbar__logo-icon {
    font-size: 1rem;
  }
  .navbar__logo-icon i {
    width: 16px !important;
    height: 16px !important;
  }
  .navbar__logo {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
  }
  .navbar__logo span {
    display: inline;
    font-size: 0.55rem;
    margin-top: 0;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 500;
  }
  .navbar__links {
    margin: 0;
    gap: 24px;
    order: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar__link {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    padding: 4px 0;
    white-space: nowrap;
  }
  .navbar__actions {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
    order: 2;
    gap: 4px;
  }
  .navbar__toggle-left {
    display: none;
  }
  .navbar__action-btn,
  .navbar__cart {
    width: 32px;
    height: 32px;
  }
  .navbar__action-btn i,
  .navbar__cart i {
    width: 17px !important;
    height: 17px !important;
  }
  .navbar__cart-badge {
    width: 15px;
    height: 15px;
    font-size: 0.55rem;
    top: 0;
    right: 0;
  }
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
}

.navbar__logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Lora', serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}

.navbar__logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.navbar__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pink-primary);
  animation: floatRing 3s ease-in-out infinite;
}

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

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.navbar__link:hover {
  color: var(--pink-primary);
}

.navbar__link.active {
  color: var(--gold-primary);
  font-weight: 700;
}

.navbar__link:hover::after {
  width: 100%;
  background: var(--pink-primary);
}

.navbar__link.active::after {
  width: 100%;
  background: var(--gold-primary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__action-btn,
.navbar__cart {
  position: relative;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-decoration: none;
}

.navbar__action-btn:hover,
.navbar__cart:hover {
  color: var(--pink-primary);
  background-color: rgba(212, 69, 106, 0.05);
}

.navbar__cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  background: var(--pink-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition-bounce);
}

.navbar__cart-badge.visible {
  transform: scale(1);
}

/* Mobile Menu Toggle class alias mapping */
.navbar__toggle {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 1);
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--pink-gradient);
  color: white;
  border: none;
}

.btn--primary:hover {
  box-shadow: var(--shadow-gold-strong);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--pink-primary);
  border: 1.5px solid var(--pink-primary);
}

.btn--outline:hover {
  background: rgba(212, 69, 106, 0.08);
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--pink-primary);
  padding: 10px 20px;
}

.btn--ghost:hover {
  background: rgba(201, 168, 76, 0.08);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* ─── Cards ─── */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.card--glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.card:hover .card__overlay {
  opacity: 1;
}

.card__body {
  padding: 20px;
}

.card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card__price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pink-primary);
}

.card__price .original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card__rating .stars {
  color: var(--gold-primary);
  letter-spacing: 2px;
}

/* ─── Product Grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ─── Form Elements ─── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ─── Badge ─── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--sale {
  background: var(--accent-rose);
  color: white;
}

.badge--new {
  background: var(--accent-emerald);
  color: white;
}

.badge--featured {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 16px auto;
  border-radius: 2px;
}

.divider--left {
  margin-left: 0;
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer__brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__brand-name span {
  color: var(--pink-primary);
}

.footer__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-primary);
  transition: all var(--transition-normal);
}

.footer__social-link:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer__heading {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer__link {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--pink-primary);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer__contact-item i {
  color: var(--gold-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px;
  margin-top: 60px;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__bottom a {
  color: var(--gold-primary);
}

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal--left {
  transform: translateX(-40px);
}
.reveal--left.visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}
.reveal--right.visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.9);
}
.reveal--scale.visible {
  transform: scale(1);
}

/* Stagger children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-group.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-group.visible > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-group.visible > *:nth-child(8) { transition-delay: 0.7s; }

.reveal-group.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Keyframe Animations ─── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.shimmer-text {
  color: var(--pink-primary);
}

/* ─── Toast Notification ─── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-toast);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 0.9rem;
  box-shadow: var(--shadow-elevated);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-slow);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast__icon {
  color: var(--accent-emerald);
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-strong);
}

/* ─── Loading Screen ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__ring {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader__text {
  margin-top: 20px;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--pink-primary);
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all var(--transition-normal);
  animation: pulse-gold 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition-slow);
    border-left: 1px solid var(--border-subtle);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__link {
    font-size: 1.1rem;
  }

  .navbar__brand {
    margin-left: 44px;
    gap: 6px;
  }

  .navbar__logo {
    font-size: 1.15rem;
    letter-spacing: 0.05em;
  }

  .navbar__logo span {
    font-size: 0.55rem;
  }

  .navbar__logo-icon {
    display: none;
  }

  .navbar__actions {
    gap: 6px;
  }

  .navbar__action-btn,
  .navbar__cart,
  .navbar__user-btn {
    width: 34px;
    height: 34px;
  }

  .navbar__toggle {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .navbar__brand {
    margin-left: 42px;
  }

  .navbar__logo {
    font-size: 1.3rem;
  }

  .navbar__actions {
    gap: 3px;
  }

  .navbar__action-btn[aria-label="Wishlist"] {
    display: none;
  }

  .navbar__action-btn,
  .navbar__cart,
  .navbar__user-btn {
    width: 31px;
    height: 31px;
  }
}

/* ─── Scrollbar Styling ─── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ─── Selection ─── */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--text-primary);
}

/* ─── User Profile Menu & Dropdown ─── */
.navbar__user-menu {
  position: relative;
  display: inline-block;
}

.navbar__user-btn {
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.navbar__user-btn:hover {
  color: var(--pink-primary);
  background-color: rgba(212, 69, 106, 0.05);
}

.navbar__user-login-btn {
  display: inline-block;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  min-width: 230px;
  box-shadow: var(--shadow-elevated);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-bounce);
  z-index: 1100;
  pointer-events: none;
}

.navbar__user-menu:hover .user-dropdown,
.user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.user-dropdown__header {
  margin-bottom: 12px;
}

.user-dropdown__email {
  font-size: 0.85rem;
  color: var(--text-secondary);
  word-break: break-all;
  font-weight: 500;
  font-family: 'Lora', serif;
}

.user-dropdown__divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 12px 0;
}

.user-dropdown__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Lora', serif;
}

.user-dropdown__item:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--pink-primary);
}

/* ─── Global Search Overlay ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.search-overlay__close:hover {
  background: var(--pink-primary);
  transform: rotate(90deg);
}

.search-overlay__content {
  width: 90%;
  max-width: 650px;
  text-align: center;
}

.search-overlay__title {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.search-overlay__form {
  position: relative;
}

.search-overlay__input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.2rem;
  outline: none;
  transition: all var(--transition-fast);
}

.search-overlay__input:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.search-overlay__btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── Live Search Results Dropdown ─── */
.search-overlay__results {
  margin-top: 24px;
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  max-height: 380px;
  overflow-y: auto;
  text-align: left;
  display: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}

.search-overlay__results.active {
  display: block;
}

.search-overlay__result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.search-overlay__result-item:last-child {
  border-bottom: none;
}

.search-overlay__result-item:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 24px;
}

.search-overlay__result-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.search-overlay__result-info {
  flex-grow: 1;
}

.search-overlay__result-name {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.search-overlay__result-cat {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-overlay__result-price {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  white-space: nowrap;
}

.search-overlay__result-price-original {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.search-overlay__no-results {
  padding: 28px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* Scrollbar customization */
.search-overlay__results::-webkit-scrollbar {
  width: 6px;
}
.search-overlay__results::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
}
.search-overlay__results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}
.search-overlay__results::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ─── Wishlist Badge & Toggle ─── */
.navbar__wishlist-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  background: var(--pink-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition-bounce);
}

.navbar__wishlist-badge.visible {
  transform: scale(1);
}

.wishlist-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: all var(--transition-bounce);
  cursor: pointer;
  border: none;
}

.wishlist-toggle:hover {
  transform: scale(1.1);
  color: var(--pink-primary);
  background: white;
}

.wishlist-toggle.active {
  color: var(--pink-primary);
  background: white;
}

.wishlist-toggle.active svg {
  fill: var(--pink-primary);
}

/* ─── Star Rating & Reviews System ─── */
.star-rating {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.star-rating--interactive {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
  font-size: 2.2rem;
}

.star-rating--interactive input {
  display: none;
}

.star-rating--interactive label {
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.star-rating--interactive label:hover,
.star-rating--interactive label:hover ~ label,
.star-rating--interactive input:checked ~ label {
  color: var(--gold-primary);
}

.reviews-section {
  margin-top: 60px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.reviews-summary {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  align-self: start;
}

.reviews-summary__score {
  font-size: 4rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1;
  color: var(--pink-primary);
  margin-bottom: 8px;
}

.reviews-summary__count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.reviews-summary__bars {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.reviews-bar {
  flex: 1;
  height: 8px;
  background: rgba(212, 69, 106, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.reviews-bar__fill {
  height: 100%;
  background: var(--gold-gradient);
  width: 0;
  transition: width 0.6s ease;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__verified {
  font-size: 0.72rem;
  color: var(--accent-emerald);
  background: rgba(27, 122, 92, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.review-card__date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.review-card__comment {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  border-radius: var(--radius-md);
  margin-top: 40px;
}

.review-form__title {
  margin-bottom: 8px;
}

.review-form__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.review-form__stars-row {
  margin-bottom: 24px;
}

/* ─── Checkout Sliding Drawer ─── */
.checkout-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.checkout-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--bg-glass-strong);
  box-shadow: -10px 0 40px rgba(157, 23, 57, 0.08);
  border-left: 1px solid var(--border-subtle);
  z-index: calc(var(--z-modal) + 1);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: 40px 24px;
}

.checkout-drawer.active {
  transform: translateX(0);
}

.checkout-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-drawer__close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.checkout-drawer__close:hover {
  color: var(--pink-primary);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── Mobile Handled by css/mobile.css ─── */

/* Desktop: Hide Mobile Bottom Nav */
.mobile-bottom-nav {
  display: none;
}

/* Nav backdrop overlay (created dynamically by JS) */
.nav-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(45, 28, 30, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 995;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ─── Global Page Layout System ─── */
/* Consistent content offset below fixed navbar on all pages */
/* .login-page and .not-found-section have their own padding */
main:not(.login-page):not(.not-found-section),
.cart-page,
.wishlist-page,
.product-detail,
.checkout-page {
  padding-top: calc(var(--nav-height) + 32px);
  padding-bottom: 80px;
}

/* Zoom and crop to remove the butterfly logo from top-left of product images */
.product-card__image img,
.card__image img,
.pd__main-image img,
.cart-item__image img,
.pd__thumb img {
  width: 125% !important;
  height: 125% !important;
  max-width: none !important;
  margin-top: -12.5% !important;
  margin-left: -12.5% !important;
}

/* ─── Area Page Sections ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.benefit-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-list {
  max-width: 720px;
  margin: 32px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-gold);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Category chips */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
}

.category-chip:hover {
  background: var(--pink-gradient);
  color: white;
  border-color: var(--pink-primary);
  transform: translateY(-2px);
}

.category-chip svg {
  width: 16px;
  height: 16px;
}

/* CTA Banner */
.cta-banner {
  background: var(--pink-gradient);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  position: relative;
  background: white;
  color: var(--pink-primary);
  border: none;
}

.cta-banner .btn:hover {
  background: #fff5f5;
}

/* Serving section text */
.serving-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.serving-text p:last-child {
  margin-bottom: 0;
}
  object-fit: cover !important;
}
