@font-face {
  font-family: 'Vonique64';
  src: url('fonts/Vonique64/Vonique64.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Diodrum Arabic';
  src: url('fonts/arfonts-diodrum-/arfonts-diodrum-arabic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Diodrum Arabic';
  src: url('fonts/arfonts-diodrum-/arfonts-diodrum-arabic-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Diodrum Arabic';
  src: url('fonts/arfonts-diodrum-/arfonts-diodrum-arabic-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Diodrum Arabic';
  src: url('fonts/arfonts-diodrum-/arfonts-diodrum-arabic-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Diodrum Arabic';
  src: url('fonts/arfonts-diodrum-/arfonts-diodrum-arabic-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   DESIGN SYSTEM VARIABLES (STRICT BRAND COLORS: #263b80 and #e0cebb)
   ========================================================================== */
:root {
  --color-bg-deep: #f6f5f0;       /* Parent brand light cream background */
  --color-bg-card: #ffffff;       /* Pure white for card panels */
  --color-bg-cream: #e0cebb;      /* Brand champagne gold/cream */
  --color-bg-cream-card: #f2ede2; /* Muted cream card backing */
  
  --color-gold: #e0cebb;          /* Brand champagne gold */
  --color-gold-hover: #d2beab;    /* Slightly darker gold for hover states */
  --color-gold-dark: #8c765f;      /* Deep antique gold / bronze */
  --color-gold-muted: rgba(224, 206, 187, 0.25); /* Translucent gold tint */
  
  --color-primary-brand: #263b80; /* Royal Navy Blue */
  --color-primary-hover: #3b54a0; /* Lighter blue for hover states */
  --color-primary-muted: rgba(38, 59, 128, 0.08); /* Translucent blue tint */
  
  --color-text-dark: #1b2030;      /* Dark navy/black for primary text */
  --color-text-dark-muted: #5e667d; /* Muted dark text */
  --color-text-light: #f4f6fb;     /* Pure warm light text (on dark panels) */
  --color-text-light-muted: #a0a8bf; /* Muted light text (on dark panels) */
  
  --font-serif: 'Vonique64', serif;
  --font-sans: 'Diodrum Arabic', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --container-max-width: 1200px;
  --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-deep);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-brand);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-primary-brand);
}

p {
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-dark-muted);
}

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

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

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

.text-center { text-align: center; }
.gold-text { color: var(--color-gold-dark); }
.blue-text { color: var(--color-primary-brand); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--color-primary-brand);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-primary-brand);
}

.section-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-primary-brand);
  color: var(--color-text-light);
  border: 1px solid var(--color-primary-brand);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary-brand);
}

.btn-brand-blue {
  background-color: var(--color-primary-brand);
  color: var(--color-text-light);
  border: 1px solid var(--color-primary-brand);
}

.btn-brand-blue:hover {
  background-color: transparent;
  border-color: var(--color-primary-brand);
  color: var(--color-primary-brand);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary-brand);
  border: 1px solid rgba(38, 59, 128, 0.3);
}

.btn-secondary:hover {
  border-color: var(--color-primary-brand);
  background-color: var(--color-primary-brand);
  color: var(--color-text-light);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--nav-btn-color, var(--color-primary-brand));
  border: 1px solid var(--nav-btn-border, var(--color-primary-brand));
  transition: var(--transition-fast);
}

.btn-outline-gold:hover {
  background-color: var(--nav-btn-bg-hover, var(--color-primary-brand));
  color: var(--nav-btn-text-hover, var(--color-text-light));
  border-color: var(--nav-btn-border-hover, var(--color-primary-brand));
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  background-color: rgba(246, 245, 240, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(38, 59, 128, 0.15);
  box-shadow: 0 10px 30px rgba(38, 59, 128, 0.06);
  
  /* CSS Variables for Contrast (Opaque Light Cream/Beige) */
  --logo-text-color: var(--color-primary-brand);
  --logo-span-color: var(--color-gold-dark);
  --nav-link-color: #363d52; /* Darker navy/slate for excellent readability on cream background */
  --nav-link-active-color: var(--color-primary-brand);
  --nav-btn-color: var(--color-primary-brand);
  --nav-btn-border: var(--color-primary-brand);
  --nav-btn-bg-hover: var(--color-primary-brand);
  --nav-btn-text-hover: var(--color-text-light);
  --nav-btn-border-hover: var(--color-primary-brand);
  --nav-toggle-color: var(--color-primary-brand);
}

.navbar.scrolled {
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--logo-text-color);
  transition: var(--transition-fast);
}

.logo-text span {
  color: var(--logo-span-color);
  font-weight: 300;
  transition: var(--transition-fast);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--nav-link-color);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--nav-link-active-color);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--nav-toggle-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: flex;
    margin-left: auto;
    margin-right: 1.2rem;
    flex-shrink: 0;
  }
  .nav-cta .btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap;
  }
  .nav-toggle {
    display: block;
    font-size: 1.25rem;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .logo-img {
    height: 28px;
  }
  .nav-container {
    gap: 0.5rem;
  }
}

/* Mobile Menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--color-text-dark-muted);
}

.mobile-nav-links a:hover {
  color: var(--color-primary-brand);
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-primary-brand);
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION WITH RESPONSIVE BACKGROUNDS
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient transitions to the parent brand cream background color */
  background: linear-gradient(to bottom, rgba(8, 12, 30, 0.45) 0%, rgba(8, 12, 30, 0.65) 60%, var(--color-bg-deep) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  width: 90%;
  padding-top: 80px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.1;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.25em;
  font-weight: 300;
  margin-top: 0.5rem;
  color: var(--color-text-light-muted);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-light-muted);
  max-width: 650px;
  margin: 0 auto 3rem auto;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp 1.4s ease-out forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1.6s ease-out forwards;
}

/* Responsive Background queries mapping to the user's 4 WebPs */
.hero {
  background-image: url('https://static.darcoffee.com/perfume/pre-order-04.webp');
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero {
    background-image: url('https://static.darcoffee.com/perfume/pre-order-03.webp');
  }
}

@media (min-width: 1025px) and (max-width: 1600px) {
  .hero {
    background-image: url('https://static.darcoffee.com/perfume/pre-order-02.webp');
  }
}

@media (min-width: 1601px) {
  .hero {
    background-image: url('https://static.darcoffee.com/perfume/pre-order-01.webp');
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
    padding: 130px 0 60px 0;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-title span {
    font-size: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  .countdown-container {
    margin-top: 2.5rem;
  }
  .notes-grid .pyramid-level {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-container {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(38, 59, 128, 0.15);
  padding: 2rem;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(38, 59, 128, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-item {
  position: relative;
}

.countdown-item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: 0;
  top: 15%;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold-dark);
}

.countdown-val {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-primary-brand);
  line-height: 1;
  font-weight: 500;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-dark-muted);
  margin-top: 0.5rem;
  display: block;
}

@media (max-width: 576px) {
  .countdown-container {
    padding: 1.5rem 1rem;
  }
  .countdown-val {
    font-size: 2.2rem;
  }
  .product-info-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DUAL PRODUCT SHOWCASE
   ========================================================================== */
.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.product-showcase-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(224, 206, 187, 0.6);
  padding: 3rem;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 520px;
  box-shadow: 0 10px 30px rgba(38, 59, 128, 0.03);
}

.product-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary-brand);
  box-shadow: 0 20px 40px rgba(38, 59, 128, 0.08);
}

.product-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary-brand);
  border: 1px solid rgba(38, 59, 128, 0.2);
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  background-color: var(--color-primary-muted);
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--color-primary-brand);
  margin-bottom: 1rem;
  font-weight: 500;
}

.product-card-notes-summary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.product-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.product-card-image-container {
  margin: 1.5rem 0;
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase-card:hover .product-card-image {
  transform: scale(1.06) translateY(-5px);
}

/* Notes Pyramid two-column grid */
.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.notes-grid .pyramid-level {
  padding: 1.5rem;
  grid-template-columns: 140px 1fr;
}

@media (max-width: 991px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   DYNAMIC BOTTLE RENDERING IN CSS (DETERMINED BY BOTTLE ID)
   ========================================================================== */
.bottle-container {
  position: relative;
  width: 260px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  animation: floatBottle 6s ease-in-out infinite;
}

.bottle-cap {
  width: 80px;
  height: 70px;
  border-radius: 4px;
  position: relative;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.bottle-neck {
  width: 40px;
  height: 25px;
  margin-top: -2px;
  position: relative;
  z-index: 2;
  border-radius: 2px;
}

.bottle-body {
  width: 220px;
  height: 280px;
  border-radius: 12px 12px 20px 20px;
  box-shadow: 0 20px 50px rgba(38, 59, 128, 0.15);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bottle-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 15%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.bottle-label {
  width: 160px;
  background-color: #ffffff;
  border: 1px solid var(--color-primary-brand);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(38, 59, 128, 0.08);
  position: relative;
}

.bottle-label-brand {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold-dark);
  margin-bottom: 0.5rem;
}

.bottle-label-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--color-primary-brand);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.bottle-label-type {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-dark-muted);
}

.liquid-reflection {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}

/* --------------------------------------------------------
   DAR LUNA SCENT BOTTLE SPECIFICS (Starry Midnight Navy)
   -------------------------------------------------------- */
.bottle-luna .bottle-cap {
  background: linear-gradient(135deg, #f4f6fb 0%, #a0a8bf 50%, #263b80 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.4), 0 5px 15px rgba(0,0,0,0.5);
}
.bottle-luna .bottle-neck {
  background: linear-gradient(90deg, #a0a8bf, #263b80);
}
.bottle-luna .bottle-body {
  background: linear-gradient(to bottom, rgba(38, 59, 128, 0.95) 0%, rgba(8, 12, 30, 0.98) 100%);
  border: 2px solid rgba(38, 59, 128, 0.6);
  box-shadow: inset 0 0 40px rgba(38, 59, 128, 0.2), 0 20px 50px rgba(0,0,0,0.6);
}
.bottle-luna .liquid-reflection {
  background: linear-gradient(to top, rgba(38, 59, 128, 0.15), transparent);
}

/* --------------------------------------------------------
   DAR ROSEE SCENT BOTTLE SPECIFICS (Champagne Gold / Navy Accents)
   -------------------------------------------------------- */
.bottle-rosee .bottle-cap {
  background: linear-gradient(135deg, #e0cebb 0%, #a8947f 50%, #5c4e3f 100%);
  border: 1px solid rgba(255,255,255,0.1);
}
.bottle-rosee .bottle-neck {
  background: linear-gradient(90deg, #e0cebb, #a8947f);
}
.bottle-rosee .bottle-body {
  background: linear-gradient(to bottom, rgba(224, 206, 187, 0.95) 0%, rgba(45, 39, 33, 0.98) 100%);
  border: 2px solid rgba(224, 206, 187, 0.6);
  box-shadow: inset 0 0 40px rgba(224, 206, 187, 0.2), 0 20px 50px rgba(0,0,0,0.6);
}
.bottle-rosee .liquid-reflection {
  background: linear-gradient(to top, rgba(224, 206, 187, 0.15), transparent);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE SPECIFICS
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  margin-top: 4rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-main-view {
  background: radial-gradient(circle at center, #ffffff 0%, #f6f5f0 100%);
  border: 1px solid rgba(38, 59, 128, 0.12);
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Gallery Selector Inputs (Hidden) */
.gallery-selector {
  display: none !important;
}

.gallery-main-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Show the active image based on checked inputs */
#gallery-select-1:checked ~ .product-main-view .img-1,
#gallery-select-2:checked ~ .product-main-view .img-2 {
  opacity: 1;
  pointer-events: auto;
}

.product-thumbnails {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.thumb-wrapper {
  width: 70px;
  height: 75px;
  border: 1.5px solid rgba(38, 59, 128, 0.15);
  background: radial-gradient(circle at center, #ffffff 0%, #f6f5f0 100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.3s ease;
}

.thumb-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.thumb-wrapper:hover {
  border-color: var(--color-gold);
}

/* Highlight the active thumbnail labels */
#gallery-select-1:checked ~ .product-thumbnails .thumb-label-1,
#gallery-select-2:checked ~ .product-thumbnails .thumb-label-2 {
  border-color: var(--color-primary-brand);
  box-shadow: 0 0 10px rgba(38, 59, 128, 0.15);
}

.product-meta-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-breadcrumbs {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-dark-muted);
}

.product-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--color-primary-brand);
  font-weight: 500;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-gold-dark);
}

.product-rating span.review-count {
  color: var(--color-text-dark-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.product-price-section {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid rgba(38, 59, 128, 0.1);
  padding-bottom: 1.5rem;
}

.product-price-section span.original {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: var(--color-text-dark-muted);
}

.product-price-section span.saving {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  background-color: var(--color-primary-muted);
  color: var(--color-primary-brand);
  border: 1px solid rgba(38, 59, 128, 0.2);
  padding: 0.3rem 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.product-description {
  color: var(--color-text-dark-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Selectable options (Volume) */
.options-selector-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary-brand);
  margin-bottom: 0.8rem;
}

.volume-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.volume-card {
  flex: 1;
  border: 1px solid rgba(38, 59, 128, 0.2);
  background: var(--color-bg-card);
  padding: 1.2rem 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
}

.volume-card.active {
  border-color: var(--color-primary-brand);
  background: var(--color-primary-muted);
}

.volume-card.active::after {
  content: '✓';
  position: absolute;
  top: 5px;
  right: 10px;
  color: var(--color-primary-brand);
  font-size: 0.8rem;
}

.volume-card-size {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary-brand);
  display: block;
}

.volume-card-price {
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
  display: block;
  margin-top: 0.2rem;
}

.volume-card.active .volume-card-price {
  color: var(--color-primary-brand);
  font-weight: 500;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.specs-table tr {
  border-bottom: 1px solid rgba(38, 59, 128, 0.08);
}

.specs-table td {
  padding: 1rem 0;
  font-size: 0.95rem;
}

.specs-table td.spec-name {
  color: var(--color-text-dark-muted);
  font-weight: 500;
  width: 35%;
}

.specs-table td.spec-val {
  color: var(--color-text-dark);
  font-weight: 400;
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .product-main-view {
    height: 480px;
  }
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.checkout-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(38, 59, 128, 0.1);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(38, 59, 128, 0.02);
}

.checkout-section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary-brand);
  border-bottom: 1px solid rgba(38, 59, 128, 0.1);
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.checkout-section-title span.number {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  background-color: var(--color-primary-brand);
  color: var(--color-text-light);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dark-muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.form-input {
  background: rgba(246, 245, 240, 0.5);
  border: 1px solid rgba(38, 59, 128, 0.18);
  color: var(--color-text-dark);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-primary-brand);
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(38, 59, 128, 0.08);
}

.form-input::placeholder {
  color: rgba(27, 32, 48, 0.4);
}

/* Payment Selector UI */
.payment-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.payment-option-card {
  border: 1px solid rgba(38, 59, 128, 0.18);
  background: rgba(246, 245, 240, 0.3);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-option-card:hover {
  border-color: rgba(38, 59, 128, 0.4);
}

.payment-option-card.active {
  border-color: var(--color-primary-brand);
  background: var(--color-primary-muted);
}

.payment-option-radio {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-primary-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-primary-brand);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-fast);
}

.payment-option-card.active .payment-option-radio::after {
  opacity: 1;
}

.payment-option-details {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary-brand);
}

.payment-option-desc {
  font-size: 0.7rem;
  color: var(--color-text-dark-muted);
  margin-top: 0.1rem;
}

/* Order Summary Side Panel */
.checkout-summary-panel {
  position: sticky;
  top: 120px;
}

.summary-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(224, 206, 187, 0.8);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(38, 59, 128, 0.02);
}

.summary-product-item {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(38, 59, 128, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.summary-product-thumb {
  width: 90px;
  height: 110px;
  background: radial-gradient(circle, #ffffff 0%, #f6f5f0 100%);
  border: 1px solid rgba(38, 59, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-bottle-mini {
  width: 40px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.summary-cap-mini {
  width: 14px;
  height: 12px;
  background: var(--color-gold-dark);
}

.summary-body-mini {
  width: 32px;
  height: 52px;
  border-radius: 2px 2px 4px 4px;
}

/* Custom mini colors */
.summary-bottle-luna .summary-body-mini {
  border: 1px solid #263b80;
  background: #0d1633;
}
.summary-bottle-rosee .summary-body-mini {
  border: 1px solid #e0cebb;
  background: #2d2721;
}

.summary-product-info h3 {
  font-size: 1.4rem;
  color: var(--color-primary-brand);
  font-weight: 500;
}

.summary-product-meta {
  font-size: 0.8rem;
  color: var(--color-text-dark-muted);
  margin-top: 0.3rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-dark-muted);
}

.summary-row.total-row {
  border-top: 1px solid rgba(38, 59, 128, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: var(--color-primary-brand);
  font-family: var(--font-serif);
}

.summary-row.total-row .total-price {
  color: var(--color-primary-brand);
  font-weight: 600;
}

.badge-preorder {
  display: inline-block;
  background-color: var(--color-primary-muted);
  color: var(--color-primary-brand);
  border: 1px solid rgba(38, 59, 128, 0.2);
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.4rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.qty-btn {
  background: var(--color-primary-muted);
  border: 1px solid rgba(38, 59, 128, 0.25);
  color: var(--color-primary-brand);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--color-primary-brand);
  color: var(--color-text-light);
}

.qty-val {
  font-size: 0.95rem;
  color: var(--color-primary-brand);
  font-weight: 600;
  width: 20px;
  text-align: center;
}

@media (max-width: 991px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .checkout-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   SUCCESS/THANK YOU PAGE
   ========================================================================== */
.success-container {
  max-width: 650px;
  margin: 5rem auto 0 auto;
  text-align: center;
}

.success-badge {
  width: 90px;
  height: 90px;
  background-color: var(--color-primary-muted);
  border: 1px solid var(--color-primary-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--color-primary-brand);
  margin: 0 auto 2.5rem auto;
  box-shadow: 0 10px 25px rgba(38,59,128,0.05);
}

.success-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-primary-brand);
  font-weight: 500;
}

.success-desc {
  color: var(--color-text-dark-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.receipt-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(224, 206, 187, 0.8);
  padding: 2.5rem;
  text-align: left;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(38,59,128,0.02);
}

.receipt-header {
  border-bottom: 1px solid rgba(38, 59, 128, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.receipt-id {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary-brand);
  font-weight: 500;
}

.receipt-date {
  font-size: 0.8rem;
  color: var(--color-text-dark-muted);
}

.receipt-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.receipt-row .label {
  color: var(--color-text-dark-muted);
}

.receipt-row .value {
  color: var(--color-text-dark);
  font-weight: 500;
}

.success-roadmap {
  margin: 4rem 0 3rem 0;
  text-align: left;
}

.roadmap-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary-brand);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(38, 59, 128, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.timeline-step {
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 4px;
  width: 13px;
  height: 13px;
  background-color: var(--color-bg-deep);
  border: 2px solid rgba(38, 59, 128, 0.35);
  border-radius: 50%;
}

.timeline-step.completed::before {
  background-color: var(--color-primary-brand);
  border-color: var(--color-primary-brand);
}

.timeline-step.active::before {
  background-color: var(--color-primary-brand);
  border-color: var(--color-primary-brand);
  box-shadow: 0 0 10px rgba(38, 59, 128, 0.4);
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark-muted);
}

.timeline-step.completed .timeline-title {
  color: var(--color-primary-brand);
}

.timeline-step.active .timeline-title {
  color: var(--color-primary-brand);
}

.timeline-date {
  font-size: 0.75rem;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  display: block;
  font-weight: 600;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
  margin-top: 0.2rem;
  line-height: 1.5;
}

/* ==========================================================================
   OLFACTIVE FRAGRANCE PYRAMID
   ========================================================================== */
.notes-section {
  background-color: #fcfbfa; /* Soft clean off-white */
  border-top: 1px solid rgba(38, 59, 128, 0.04);
  border-bottom: 1px solid rgba(38, 59, 128, 0.04);
}

.pyramid-container {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pyramid-level {
  background: var(--color-bg-card);
  border: 1px solid rgba(224, 206, 187, 0.6);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(38, 59, 128, 0.02);
}

.pyramid-level::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.pyramid-level:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-brand);
  box-shadow: 0 15px 35px rgba(38,59,128,0.06);
}

.pyramid-level:hover::before {
  background-color: var(--color-primary-brand);
  height: 100%;
}

.pyramid-header {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary-brand);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  font-weight: 500;
}

.pyramid-header span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.pyramid-notes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.note-tag {
  background: var(--color-primary-muted);
  border: 1px solid rgba(38, 59, 128, 0.15);
  color: var(--color-primary-brand);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.note-tag:hover {
  background: var(--color-primary-brand);
  color: var(--color-text-light);
  border-color: var(--color-primary-brand);
  transform: scale(1.05);
}

.note-desc {
  margin-top: 1rem;
  color: var(--color-text-dark-muted);
  font-size: 0.95rem;
  width: 100%;
}

@media (max-width: 991px) {
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
  .notes-grid .pyramid-level {
    grid-template-columns: 140px 1fr;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .notes-grid .pyramid-level {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  .pyramid-level {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1rem;
  }
  .pyramid-header {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   EXCLUSIVE OFFER CALLOUT
   ========================================================================== */
.offer-section {
  text-align: center;
  position: relative;
}

.offer-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff, #fcfbfa);
  border: 1px solid rgba(224, 206, 187, 0.8);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(38,59,128,0.03);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(224, 206, 187, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.offer-badge {
  display: inline-block;
  border: 1px solid var(--color-primary-brand);
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary-brand);
  margin-bottom: 2rem;
  background-color: var(--color-primary-muted);
  font-weight: 600;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--color-primary-brand);
  font-weight: 500;
}

.offer-price {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-primary-brand);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 500;
}

.offer-price span.original {
  font-size: 1.8rem;
  text-decoration: line-through;
  color: var(--color-text-dark-muted);
}

.offer-price span.suffix {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--color-text-dark-muted);
  letter-spacing: 0.1em;
}

.offer-list {
  list-style: none;
  max-width: 480px;
  margin: 0 auto 3rem auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(38, 59, 128, 0.1);
  border-bottom: 1px solid rgba(38, 59, 128, 0.1);
  padding: 2rem 0;
}

.offer-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 400;
  color: var(--color-text-dark-muted);
}

.offer-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-primary-brand);
}

@media (max-width: 768px) {
  .offer-card {
    padding: 3rem 1.5rem;
  }
  .offer-title {
    font-size: 2.2rem;
  }
  .offer-price {
    font-size: 2.8rem;
  }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.footer {
  border-top: 1px solid rgba(38, 59, 128, 0.1);
  padding: 5rem 0 3rem 0;
  background-color: #f6f5f0; /* Light cream/beige background like the header scrolled background */
  color: var(--color-text-dark);
}

.footer h3, .footer h4, .footer .logo-text {
  color: var(--color-primary-brand); /* Strict brand navy blue */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--color-text-dark-muted); /* Dark slate grey/blue text */
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links-title {
  color: var(--color-primary-brand);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold-dark); /* Accent dark gold for hovered links */
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(38, 59, 128, 0.12); /* Clean brand navy border */
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--color-text-dark-muted);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-gold-dark);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBottle {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}
