/* ==========================================================================
   GLO BEAUTY GUMMIES - DESIGN SYSTEM & STYLESHEET
   Matching Target UI Design Pixel-Perfectly
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-red: #C83228;
  --primary-red-bright: #DE3B2B;
  --primary-red-hover: #AA211A;
  --cream-bg: #FAF4EC;
  --cream-card: #FAF6F0;
  --sky-blue: #A1CEF0;
  --lavender-bg: #D8CEEE;
  --footer-red: #E4392B;
  --yellow-icon-bg: #FFE285;
  --yellow-icon-border: #FFC83B;
  --text-dark: #2A2523;
  --text-red: #C83228;
  --white: #FFFFFF;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Alex Brush', cursive;

  /* Layout Constants */
  --container-max: 1140px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utility Classes */
.section-headline {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-headline-center {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-red);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.section-body {
  font-size: 0.95rem;
  color: var(--primary-red);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

/* Pill Buttons & Interactive Animations */
.btn-pill-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.8rem;
  border: 1.5px solid var(--primary-red);
  border-radius: 50px;
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  background: transparent;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.btn-pill-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-red);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 50px;
}

.btn-pill-outline:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(200, 50, 40, 0.3);
}

.btn-pill-outline:hover::before {
  transform: translateX(100%);
}

.btn-pill-outline:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-pill-filled {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  z-index: 1;
}

.btn-pill-filled::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-pill-filled:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(200, 50, 40, 0.35);
}

.btn-pill-filled:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn-pill-filled:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-full {
  width: 100%;
}

/* Nav Item Animated Underline */
.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
  left: 0;
}

/* Sparkle Accents Animation */
.sparkle-accent {
  position: absolute;
  color: var(--primary-red);
  font-size: 1.3rem;
  user-select: none;
  animation: sparkleTwinkle 3.5s ease-in-out infinite alternate;
}

@keyframes sparkleTwinkle {
  0% { transform: scale(0.85) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.3) rotate(90deg); opacity: 1; filter: drop-shadow(0 0 6px rgba(200, 50, 40, 0.5)); }
  100% { transform: scale(0.9) rotate(180deg); opacity: 0.7; }
}

/* Floating Graphic Animation */
@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.snacking-img, .why-center-img {
  animation: floatY 5s ease-in-out infinite;
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: var(--cream-bg);
  border-bottom: 1px solid rgba(200, 50, 40, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-item {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--primary-red);
  font-weight: 500;
  transition: var(--transition);

}

.nav-item:hover, .nav-item.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
}

.icon-menu-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-red);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav-drawer.open {
  visibility: visible;
  opacity: 1;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--cream-bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav-drawer.open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.close-drawer-btn {
  font-size: 2rem;
  color: var(--primary-red);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary-red);
}

.mobile-drawer-footer {
  margin-top: auto;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 520px;
}

.hero-left-col {
  background-color: var(--cream-bg);
  padding: 6.5rem 2rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.eyebrow-script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--primary-red);
  display: block;
  margin-bottom: -0.5rem;
  transform: rotate(-3deg);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}

.hero-subtext {
  font-size: 0.95rem;
  color: var(--primary-red);
  line-height: 1.5;
  max-width: 360px;
  margin-bottom: 2rem;
}

.btn-hero {
  padding: 0.75rem 2.2rem;
  font-size: 0.9rem;
}

.sparkle-1 { top: 30%; right: 15%; }
.sparkle-2 { bottom: 20%; left: 8%; }

.hero-right-col {
  background-color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

/* ==========================================================================
   SECTION 2: MARQUEE TICKER
   ========================================================================== */
.marquee-section {
  background-color: var(--primary-red);
  position: relative;
  overflow: hidden;
  padding: 0.8rem 0;
  color: var(--white);
}

.marquee-wavy-container {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-content-track {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-text-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-right: 1.5rem;
}

.dot {
  font-size: 1.2rem;
  opacity: 0.8;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION 3: SNACKING / EDIBLES
   ========================================================================== */
.snacking-section {
  padding: 5rem 0;
  background-color: var(--cream-bg);
  position: relative;
}

.snacking-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 2rem;
}

.snacking-copy {
  position: relative;
}

.sparkle-snack-1 { top: -20px; right: 20%; }
.sparkle-snack-2 { bottom: 10px; left: -10px; }

.snacking-graphic-col {
  display: flex;
  justify-content: center;
}

.snacking-image-wrapper {
  position: relative;
  max-width: 480px;
}

.snacking-img {
  width: 100%;
  border-radius: 16px;
}

/* ==========================================================================
   SECTION 4: WHY CHOOSE GLO?
   ========================================================================== */
.why-glo-section {
  padding: 5rem 0;
  background-color: var(--cream-bg);
}

.why-glo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.why-icon-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background-color: var(--yellow-icon-bg);
  border: 1.5px solid var(--yellow-icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.why-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.why-card-info p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Arch Window Centerpiece */
.why-center-col {
  display: flex;
  justify-content: center;
}

.arch-window-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.why-center-img {
  width: 100%;
  border-radius: 120px 120px 16px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ==========================================================================
   SECTION 5: INGREDIENTS GRID
   ========================================================================== */
.ingredients-section {
  background-color: var(--lavender-bg);
  padding: 5rem 0;
}

.ingredients-grid-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 3rem;
  align-items: center;
}

.ingredients-headline {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.gummies-heap-wrapper {
  max-width: 320px;
}

.gummies-heap-img {
  width: 100%;
  border-radius: 16px;
}

.ingredients-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.ingr-card {
  background: var(--cream-card);
  border-radius: 16px;
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.ingr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.ingr-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background-color: var(--yellow-icon-bg);
  border: 1.5px solid var(--yellow-icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-letter {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-red);
}

.ingr-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.ingr-card-info p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.35;
}

/* ==========================================================================
   SECTION 6: KEY BENEFITS
   ========================================================================== */
.benefits-section {
  padding: 5rem 0;
  background-color: var(--cream-bg);
}

.benefits-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.star-deco {
  color: var(--primary-red);
  font-size: 1.4rem;
}

.benefits-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-col {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.benefit-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background-color: rgba(200, 50, 40, 0.18);
}

.benefit-icon {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}

.benefit-col h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.benefit-col p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 7: PRODUCT REVIEWS
   ========================================================================== */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--cream-bg);
}

.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(200, 50, 40, 0.2);
}

.carousel-arrow:hover {
  background-color: var(--primary-red-hover);
  transform: scale(1.08);
}

.reviews-cards-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  width: 100%;
}

.review-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: var(--transition);
  aspect-ratio: 3/4;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.review-card:hover .play-overlay {
  background: rgba(0,0,0,0.25);
}

.play-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.review-card:hover .play-circle {
  transform: scale(1.15);
  background: var(--white);
}

.carousel-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.carousel-pagination-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 50, 40, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-pagination-dots .dot.active {
  width: 10px;
  height: 10px;
  background: var(--primary-red);
}

/* ==========================================================================
   SECTION 8: ABOUT US
   ========================================================================== */
.about-section {
  padding: 5rem 0;
  background-color: var(--cream-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 3rem;
}

.about-img-frame {
  max-width: 420px;
}

.about-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.about-headline {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 1.2rem;
}

.about-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 480px;
}

.about-copy-col {
  position: relative;
}

.sparkle-about {
  bottom: -10px;
  right: 15%;
}

/* ==========================================================================
   SECTION 9: FOOTER WITH WAVE & NEWSLETTER
   ========================================================================== */
.site-footer {
  background-color: var(--footer-red);
  color: var(--white);
  position: relative;
  padding-bottom: 3rem;
  margin-top: 4rem;
}

.footer-wave-top {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave-top svg {
  width: 100%;
  height: 100%;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Newsletter Floating Card */
.newsletter-card {
  background-color: var(--white);
  border-radius: 80px;
  padding: 2.2rem 3rem;
  margin-top: -50px;
  margin-bottom: 4rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  text-align: center;

}

.newsletter-headline {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-red);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(200, 50, 40, 0.3);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
  color: var(--text-dark);
}

.newsletter-input:focus {
  border-color: var(--primary-red);
}

/* Footer Nav Grid */
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;

}

.footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: right;
}

.footer-col a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 0.8;
}

.footer-col-center {
  display: flex;
  justify-content: center;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--cream-bg);
}

.footer-bottom-bar {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  opacity: 0.9;
}

/* ==========================================================================
   MODALS & DRAWERS
   ========================================================================== */

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.cart-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--cream-bg);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}

.cart-drawer.open .cart-content {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 50, 40, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cart-header h3 {
  font-family: var(--font-serif);
  color: var(--primary-red);
}

.cart-close-btn {
  font-size: 2rem;
  color: var(--primary-red);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--primary-red);
  margin-bottom: 0.2rem;
}

.cart-item-desc {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary-red);
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.qty-stepper button {
  padding: 0.2rem 0.6rem;
  font-weight: bold;
}

.qty-stepper span {
  padding: 0 0.4rem;
  font-size: 0.85rem;
}

.cart-footer {
  border-top: 1px solid rgba(200, 50, 40, 0.15);
  padding-top: 1.2rem;
  margin-top: 1.5rem;
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.cart-shipping-note {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1.2rem;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.modal-card {
  position: relative;
  background: var(--cream-bg);
  border-radius: 24px;
  width: 90%;
  max-width: 420px;
  padding: 2.5rem;
  z-index: 2;
  text-align: center;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--primary-red);
}

.play-circle-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-red);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  padding-left: 4px;
}

.modal-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.modal-card p {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-split-container {
    grid-template-columns: 1fr;
  }
  .bg-cream-side { width: 100%; }
  .bg-sky-side { display: none; }
  .hero-headline { font-size: 2.6rem; }
  .why-glo-grid { grid-template-columns: 1fr; }
  .ingredients-grid-layout { grid-template-columns: 1fr; }
  .benefits-columns-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-col:not(:last-child)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 768px) {
  .reviews-cards-track { grid-template-columns: repeat(2, 1fr); }
  .ingredients-cards-container { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-col-right { text-align: center; }
  .newsletter-card { padding: 1.5rem; border-radius: 40px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
}
