/* ==========================================================================
   AURÉLIA BOTANICALS - LUXURY ORGANIC COSMETICS
   Tactile, Immersive, Parallax-Enhanced Styling Inspired by Kakkodhamaal
   ========================================================================== */

/* --- ROOT VARIABLES & DESIGN TOKENS --- */
:root {
  /* Color Palette */
  --bg-primary: #FAF7F2;
  --bg-secondary: #F6EFE9;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-strong: rgba(255, 255, 255, 0.9);
  
  --text-main: #2A2523;
  --text-muted: #6B625D;
  --text-light: #9B918B;
  
  --rose-gold: #C28076;
  --rose-primary: #B75D69;
  --rose-deep: #8E3B46;
  --gold-accent: #D4AF37;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --blush-subtle: #FBECEE;
  --botanical-green: #3D6652;
  
  /* Tactile Shadows & Clay Depth */
  --shadow-sm: 0 4px 12px rgba(80, 50, 45, 0.05);
  --shadow-md: 0 10px 25px rgba(80, 50, 45, 0.08);
  --shadow-lg: 0 20px 45px rgba(80, 50, 45, 0.12);
  --shadow-clay: 0 16px 36px rgba(142, 59, 70, 0.14), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  --shadow-btn: 0 8px 20px rgba(183, 93, 105, 0.35);

  /* Borders & Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

/* Ambient Cursor Glow Follower */
.cursor-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(235, 175, 185, 0.22) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s, height 0.3s, opacity 0.3s, background 0.4s ease-out;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/* Interactive Multi-Color Makeup Pigment & Shimmer Canvas */
.makeup-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.92;
}

/* Custom Scrollbar - Luxurious Rose & Warm Sand */
::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #D9C3BE;
  border-radius: 6px;
  border: 3px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose-gold);
}

/* Global Container */
#site-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.highlight-italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--rose-primary);
  background: linear-gradient(135deg, var(--rose-primary), var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- BACK TO TOP FLOATING BUTTON --- */
.back-to-top-arrow {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid rgba(194, 128, 118, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-primary);
  box-shadow: var(--shadow-md);
  z-index: 990;
  text-decoration: none;
  transition: var(--transition-bounce);
  opacity: 0.9;
}

.back-to-top-arrow:hover {
  transform: translateY(-5px) scale(1.08);
  background: var(--rose-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
}

.back-to-top-arrow svg {
  width: 22px;
  height: 22px;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-announcement {
  background: linear-gradient(90deg, #3D2227, #66333D, #3D2227);
  color: #FFF2F4;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 105;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-content strong {
  color: #FFD479;
}

/* --- ZONE 0: SCULPTED TACTILE HEADER & NAVBAR (Kakkodhamaal Inspired) --- */
#header-container {
  position: sticky;
  top: 15px;
  margin: 0 auto;
  width: 92%;
  max-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 32px rgba(80, 50, 45, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 1000;
  transition: var(--transition-smooth);
}

#header-container.scrolled {
  top: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(80, 50, 45, 0.14);
}

/* Brand Logo */
.header-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.header-logo-link:hover .brand-logo-img {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.mobile-logo-img {
  height: 40px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  display: block;
}

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

.logo-emblem {
  width: 38px;
  height: 38px;
  color: var(--rose-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 5px rgba(183, 93, 105, 0.25));
}

.emblem-svg {
  width: 100%;
  height: 100%;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-main);
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--rose-primary);
  font-weight: 600;
  margin-top: 2px;
}

/* Center Pill Navbar */
#navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  background: rgba(246, 239, 233, 0.7);
  padding: 5px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(194, 128, 118, 0.18);
  gap: 4px;
}

.nav-item {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-item:hover {
  color: var(--rose-deep);
}

.nav-item.active {
  background: #FFFFFF;
  color: var(--rose-deep);
  box-shadow: 0 4px 14px rgba(80, 50, 45, 0.1);
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  transition: var(--transition-bounce);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(194, 128, 118, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.icon-btn:hover {
  color: var(--rose-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-btn {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
  color: #FFFFFF;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-btn);
}

.cart-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(183, 93, 105, 0.45);
}

.cart-btn svg {
  width: 18px;
  height: 18px;
}

.cart-badge {
  background: #FFFFFF;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Hamburger Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(194, 128, 118, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- ZONE 1: PARALLAX HERO SECTION --- */
.parallax-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 60px 0 100px;
  overflow: hidden;
}

.hero-bg-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(247, 219, 222, 0.75) 0%, rgba(250, 247, 242, 0.4) 60%),
              radial-gradient(circle at 20% 80%, rgba(244, 232, 212, 0.6) 0%, rgba(250, 247, 242, 0) 50%);
  pointer-events: none;
  z-index: 1;
}

/* Floating Ambient Orbs & Petals */
.floating-elements-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(224, 169, 178, 0.4);
  top: 10%;
  right: 15%;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(240, 208, 153, 0.35);
  bottom: 12%;
  left: 10%;
}

.floating-petal {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.75;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.petal-1 { top: 18%; left: 8%; animation: petalSway 8s ease-in-out infinite; }
.petal-2 { top: 22%; right: 12%; animation: petalSway 7s ease-in-out infinite reverse; }
.petal-3 { bottom: 25%; left: 45%; animation: petalSway 9s ease-in-out infinite 1s; }
.petal-4 { bottom: 15%; right: 35%; animation: petalSway 6.5s ease-in-out infinite 0.5s; }

@keyframes petalSway {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(14deg); }
}

/* Hero Content Grid */
.hero-content-container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(194, 128, 118, 0.3);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--rose-deep);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.badge-sparkle {
  color: var(--gold-accent);
  font-size: 1rem;
}

.hero-headline {
  font-size: 3.5rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 400;
  line-height: 1.7;
}

/* Hero CTA Buttons */
.hero-action-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(183, 93, 105, 0.45);
}

.btn-primary .btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid rgba(194, 128, 118, 0.35);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--blush-subtle);
  color: var(--rose-deep);
  border-color: var(--rose-primary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--rose-primary);
  color: #FFFFFF;
}

/* Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(194, 128, 118, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1.4rem;
}

.trust-meta strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-meta small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(194, 128, 118, 0.25);
}

/* Hero Right Visual Presentation */
.hero-visual-block {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
}

.glow-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 180, 185, 0.6) 0%, rgba(212, 175, 55, 0.25) 45%, transparent 70%);
  filter: blur(25px);
  z-index: 1;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-clay);
  border: 8px solid rgba(255, 255, 255, 0.95);
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card-frame:hover .hero-image-wrap {
  transform: scale(1.025);
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Badges Over Hero Image (Inspired by Kakkodhamaal stickers) */
.floating-badge {
  position: absolute;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(80, 50, 45, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.badge-top-left {
  top: -20px;
  left: -25px;
}

.badge-bottom-right {
  bottom: -20px;
  right: -20px;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  background: #FFF2F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.float-anim {
  animation: badgeFloat 5s ease-in-out infinite;
}

.float-anim-delayed {
  animation: badgeFloat 5.5s ease-in-out infinite 1.5s;
}

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

/* --- ZONE 2: SIGNATURE EXPLORE SECTION (3/4-Card Tactile Grid like Kakkodhamaal) --- */
.explore-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--rose-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Filter Tabs */
.filter-tabs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid rgba(194, 128, 118, 0.2);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  color: var(--rose-deep);
  border-color: var(--rose-primary);
}

.filter-tab.active {
  background: var(--rose-primary);
  color: #FFFFFF;
  border-color: var(--rose-primary);
  box-shadow: 0 6px 16px rgba(183, 93, 105, 0.35);
}

/* Explore Grid */
.explore-grid {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Tactile 3D Explore Card (Inspired by Kakkodhamaal cards) */
.explore-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(220, 190, 185, 0.4);
  box-shadow: var(--shadow-clay);
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(142, 59, 70, 0.18), inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.card-badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.product-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.badge-bestseller { color: #D9480F; }
.badge-trending { color: #C2255C; }
.badge-award { color: #B07D18; }
.badge-new { color: #1098AD; }

/* Card Media */
.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F8F5F2;
}

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

.explore-card:hover .product-img {
  transform: scale(1.08);
}

/* Quick View Overlay Button */
.quick-view-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.explore-card:hover .quick-view-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.quick-view-btn:hover {
  background: var(--rose-primary);
  color: #FFFFFF;
}

.quick-view-btn svg {
  width: 16px;
  height: 16px;
}

/* Card Body Content */
.card-inner-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.card-rating .stars {
  color: #E67700;
  letter-spacing: 2px;
  font-size: 0.88rem;
}

.rating-num {
  font-size: 0.76rem;
  color: var(--text-light);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-title .eng-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-primary);
  margin-top: 3px;
}

.card-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.tag-pill {
  font-size: 0.72rem;
  background: #F6EDE8;
  color: #7A5348;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.card-price-row {
  margin-top: auto;
  margin-bottom: 18px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.current-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

.original-price {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.discount-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: #FFF0F2;
  color: var(--rose-deep);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* Card Button */
.card-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
  color: #FFFFFF;
  border: none;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(183, 93, 105, 0.3);
  transition: var(--transition-bounce);
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 93, 105, 0.45);
}

.btn-bag-icon {
  width: 16px;
  height: 16px;
}

/* --- ZONE 3: CLEAN PURITY CALLOUT BANNER (Like Kakkodhamaal's Child-Safe Callout) --- */
.callout-sec {
  padding: 90px 0;
  background: #FAF7F2;
  position: relative;
}

.callout-container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 190, 185, 0.35);
  box-shadow: var(--shadow-clay);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
}

.callout-images-side {
  position: relative;
  min-height: 480px;
}

.callout-banner-frame {
  width: 100%;
  height: 100%;
  position: relative;
}

.callout-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pure-badge-float {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.pure-circle {
  font-size: 1.5rem;
}

.pure-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--botanical-green);
}

.pure-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.callout-text-block {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pill-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--botanical-green);
  margin-bottom: 12px;
}

.callout-title {
  font-size: 2.3rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.callout-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.callout-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feat-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.feat-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feat-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.callout-action-row {
  margin-top: 10px;
}

.purity-cert-btn {
  padding: 12px 26px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
}

.purity-cert-btn svg {
  width: 16px;
  height: 16px;
}

/* --- ZONE 4: AI SKIN ANALYSIS / ROUTINE QUIZ --- */
.quiz-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.quiz-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.quiz-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-clay);
  border: 1px solid rgba(220, 190, 185, 0.4);
  margin-top: 35px;
}

.quiz-steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(194, 128, 118, 0.18);
  padding-bottom: 18px;
  margin-bottom: 30px;
}

.step-indicator {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
}

.step-indicator.active {
  color: var(--rose-primary);
  font-weight: 700;
}

.step-indicator.active::after {
  content: '';
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--rose-primary);
  border-radius: 2px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.step-question {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quiz-option {
  background: #FDF9F7;
  border: 1.5px solid rgba(194, 128, 118, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.quiz-option:hover {
  background: #FFFFFF;
  border-color: var(--rose-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.quiz-option.selected {
  background: #FFF4F5;
  border-color: var(--rose-primary);
  box-shadow: 0 4px 14px rgba(183, 93, 105, 0.2);
}

.opt-emoji {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.opt-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.quiz-option small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Quiz Result */
.quiz-result {
  text-align: center;
}

.quiz-result.hidden {
  display: none;
}

.result-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: #FFF2F4;
  color: var(--rose-deep);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.result-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.result-summary {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 28px;
}

.recommended-bundle {
  background: #FBF7F5;
  border: 1px solid rgba(194, 128, 118, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  margin-bottom: 28px;
}

.bundle-image-stack {
  display: flex;
  gap: -15px;
}

.bundle-thumb {
  width: 75px;
  height: 75px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
  margin-right: -15px;
  transition: transform 0.3s;
}

.bundle-thumb:hover {
  transform: translateY(-4px) scale(1.05);
  z-index: 5;
}

.bundle-details {
  flex-grow: 1;
}

.bundle-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rose-primary);
}

.bundle-details h4 {
  font-size: 1.2rem;
  margin: 4px 0 8px;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.bundle-pricing .new-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.bundle-pricing .old-price {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.save-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: #EBFBEE;
  color: #2B8A3E;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* --- ZONE 5: REVIEWS SECTION --- */
.reviews-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.reviews-grid {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(220, 190, 185, 0.35);
  box-shadow: var(--shadow-clay);
  display: flex;
  flex-direction: column;
}

.featured-review {
  border-color: var(--rose-gold);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FA 100%);
  transform: translateY(-6px);
}

.review-rating {
  color: #E67700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-text {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  color: #3D3532;
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(194, 128, 118, 0.15);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F8E2E5, #ECD3C9);
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info strong {
  display: block;
  font-size: 0.9rem;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.verified-check {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--botanical-green);
}

/* --- ZONE 6: TACTILE VALLEY SPECIAL OFFER (Inspired by Kakkodhamaal's Valley Download Card) --- */
.valley-wrapper {
  width: 90%;
  max-width: 1320px;
  margin: 40px auto 80px;
}

.valley-card-container {
  background: linear-gradient(135deg, #4A2830 0%, #63333F 50%, #44242B 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(74, 40, 48, 0.35);
}

.valley-card-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.valley-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  color: #FFD479;
}

.valley-card-title {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 18px;
}

.valley-card-subtitle {
  margin-bottom: 28px;
}

.subtitle-item {
  font-size: 0.95rem;
  color: #EBDADF;
  margin-bottom: 8px;
}

.subtitle-item strong {
  color: #FFFFFF;
}

.coupon-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.coupon-code-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #FFD479;
  font-weight: 700;
}

.coupon-code {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

.copy-coupon-btn {
  background: #FFFFFF;
  color: #4A2830;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-bounce);
}

.copy-coupon-btn:hover {
  background: #FFD479;
  transform: scale(1.04);
}

.copy-icon {
  width: 14px;
  height: 14px;
}

.valley-visual-side {
  display: flex;
  justify-content: center;
  position: relative;
}

.valley-gift-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.2);
  transform: rotate(3deg);
  transition: transform 0.4s ease;
}

.valley-card-container:hover .valley-gift-img {
  transform: rotate(0deg) scale(1.04);
}

/* --- ZONE 7: NEWSLETTER BAR --- */
.newsletter-bar {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(194, 128, 118, 0.2);
  border-bottom: 1px solid rgba(194, 128, 118, 0.2);
  padding: 45px 0;
}

.newsletter-content {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-text h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

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

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 100%;
  max-width: 440px;
}

.newsletter-input {
  flex-grow: 1;
  background: #FFFFFF;
  border: 1px solid rgba(194, 128, 118, 0.3);
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--rose-primary);
  box-shadow: 0 0 0 3px rgba(183, 93, 105, 0.15);
}

.newsletter-submit-btn {
  background: var(--rose-primary);
  color: #FFFFFF;
  border: none;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-bounce);
}

.newsletter-submit-btn:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.newsletter-submit-btn svg {
  width: 16px;
  height: 16px;
}

/* --- ZONE 8: SITE FOOTER (Kakkodhamaal Architecture Inspired) --- */
.site-footer {
  background: #241A1C;
  color: #E6DCD9;
  padding: 80px 0 35px;
}

.footer-top {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand-logo .brand-title {
  color: #FFFFFF;
  font-size: 1.6rem;
}

.footer-brand-logo .brand-subtitle {
  color: #FFB3BC;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: #AFA09D;
  margin: 18px 0 24px;
  line-height: 1.65;
  max-width: 380px;
}

.footer-awards-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-pill {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: #E2CFCA;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col-title {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 18px;
  font-family: var(--font-serif);
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: #AFA09D;
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* Footer Social Row */
.footer-social-section {
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-header-label {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link-item {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.social-link-item:hover {
  background: var(--rose-primary);
  transform: translateY(-3px) scale(1.08);
}

.social-link-item svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom */
.footer-bottom {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.pay-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: #B5A6A3;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.copyright-text {
  font-size: 0.8rem;
  color: #827572;
}

/* --- SLIDE-OUT CART DRAWER --- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #FFFFFF;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-header {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(194, 128, 118, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-title h3 {
  font-size: 1.3rem;
}

.cart-count-pill {
  font-size: 0.75rem;
  background: var(--blush-subtle);
  color: var(--rose-deep);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.cart-close-btn {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.cart-close-btn:hover {
  color: var(--rose-deep);
}

.cart-shipping-notice {
  background: #FDF4F5;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(194, 128, 118, 0.12);
}

.shipping-text {
  font-size: 0.8rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: #F0D5D9;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-primary), var(--gold-accent));
  transition: width 0.4s ease;
}

.cart-items-list {
  padding: 20px 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(194, 128, 118, 0.12);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(194, 128, 118, 0.2);
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rose-deep);
  margin-top: 4px;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(194, 128, 118, 0.3);
  border-radius: var(--radius-pill);
  padding: 2px 6px;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--text-main);
  cursor: pointer;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-num {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 8px;
}

.remove-item-btn {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
  text-decoration: underline;
}

.remove-item-btn:hover {
  color: #E03131;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(194, 128, 118, 0.18);
  background: #FAF7F2;
}

.promo-code-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.promo-input {
  flex-grow: 1;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(194, 128, 118, 0.3);
  font-size: 0.85rem;
  outline: none;
}

.apply-promo-btn {
  background: var(--text-main);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.promo-feedback {
  font-size: 0.75rem;
  margin-bottom: 12px;
  min-height: 16px;
}

.promo-feedback.success { color: #2B8A3E; font-weight: 600; }
.promo-feedback.error { color: #E03131; }

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.discount-row {
  color: #2B8A3E;
  font-weight: 600;
}

.discount-row.hidden {
  display: none;
}

.total-divider {
  height: 1px;
  background: rgba(194, 128, 118, 0.15);
  margin: 4px 0;
}

.grand-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.cart-trust-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* --- POPUP MODAL ARCHITECTURE (Matching Kakkodhamaal's about & privacy dialogs) --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 85vh;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.popup-overlay.open .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #F4EBE8;
  border: none;
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.popup-close-btn:hover {
  background: var(--rose-primary);
  color: #FFFFFF;
}

.popup-header-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.popup-title {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.popup-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.popup-scroll-area {
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 15px;
}

.popup-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.popup-section {
  margin-bottom: 20px;
}

.popup-section-title {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.popup-section-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.popup-footer-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--rose-deep);
  font-style: italic;
  margin-top: 25px;
}

/* Quick View Modal Card */
.quick-view-card {
  max-width: 820px;
  padding: 30px;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.qv-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.qv-details h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.qv-sub {
  font-size: 0.85rem;
  color: var(--rose-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.qv-price {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.qv-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.qv-shades {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.shade-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.shade-circle:hover, .shade-circle.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px var(--rose-primary);
}

/* --- TOAST NOTIFICATION SYSTEM --- */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--text-main);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  animation: toastIn 0.35s forwards cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.toast.toast-out {
  animation: toastOut 0.35s forwards ease;
}

@keyframes toastIn {
  to { transform: translateY(0); opacity: 1; }
}

@keyframes toastOut {
  to { transform: translateY(20px); opacity: 0; }
}

.toast-icon {
  font-size: 1.1rem;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1200px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  #navbar {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }

  .hero-content-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text-block {
    align-items: center;
  }

  .hero-headline {
    font-size: 2.75rem;
  }

  .hero-lead {
    margin: 0 auto;
  }

  .hero-action-group {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
    flex-wrap: wrap;
  }

  .callout-container {
    grid-template-columns: 1fr;
  }

  .callout-images-side {
    min-height: 320px;
  }

  .callout-text-block {
    padding: 40px 30px;
  }

  .valley-card-container {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    text-align: center;
  }

  .coupon-box {
    margin: 0 auto;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-announcement {
    font-size: 0.75rem;
  }

  .hero-headline {
    font-size: 2.15rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .callout-feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .quick-view-grid {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    max-width: 100%;
  }
}

/* --- MOBILE DRAWER OVERLAY (Inspired by Kakkodhamaal) --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(194, 128, 118, 0.2);
}

.mobile-menu-close {
  background: #F6EDE8;
  border: none;
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.mobile-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.mobile-link:hover {
  background: var(--blush-subtle);
  color: var(--rose-deep);
  transform: translateX(6px);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 20px;
}

/* ==========================================================================
   DHAIRYA COSMETIC GONDAL - SPECIAL COMPONENTS
   ========================================================================== */

/* Floating WhatsApp Sticky Button (Bottom Left) */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-bounce);
  animation: pulseWa 3s infinite;
}

.floating-whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7); }
}

/* Header Call Button */
.call-header-btn {
  background: #FFFFFF;
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(194, 128, 118, 0.25);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.call-header-btn svg {
  width: 16px;
  height: 16px;
  color: var(--rose-primary);
}

.call-header-btn:hover {
  background: var(--rose-primary);
  color: #FFFFFF;
  border-color: var(--rose-primary);
  transform: translateY(-2px);
}

.call-header-btn:hover svg {
  color: #FFFFFF;
}

/* WhatsApp Buttons (Brand Green) */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-bounce);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

.btn-whatsapp .btn-wa-icon,
.btn-whatsapp-large .btn-wa-icon {
  width: 20px;
  height: 20px;
}

.btn-whatsapp-large {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition-bounce);
}

.btn-whatsapp-large:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

/* Product Card Dual Buttons */
.card-action-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-action-btns .card-btn {
  flex-grow: 1;
}

.btn-wa-card {
  width: 44px;
  height: 44px;
  background: #E8F9EE;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.btn-wa-card:hover {
  background: #25D366;
  transform: scale(1.1) rotate(5deg);
}

/* Store & Location Section */
.store-sec {
  padding: 90px 0;
  background: #FAF7F2;
}

.store-container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 190, 185, 0.35);
  box-shadow: var(--shadow-clay);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}

.store-info-side {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-title {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.store-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.store-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.detail-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
}

.detail-text span, .detail-text a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.detail-text a.phone-link {
  color: var(--rose-deep);
  font-weight: 700;
  text-decoration: none;
}

.detail-text a.phone-link:hover {
  text-decoration: underline;
}

.store-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.store-map-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.store-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-badge-overlay {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.map-badge-icon {
  font-size: 1.4rem;
}

.map-badge-overlay strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.map-badge-overlay small {
  font-size: 0.75rem;
  color: var(--rose-primary);
  font-weight: 600;
}

.map-action-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 5;
}

.btn-map-floating {
  display: block;
  background: #FFFFFF;
  color: var(--text-main);
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition-bounce);
}

.btn-map-floating:hover {
  background: var(--rose-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Instagram Showcase Section */
.insta-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.insta-stats-pill {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(194, 128, 118, 0.25);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}

.insta-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insta-stat-item strong {
  font-size: 1.15rem;
  color: var(--rose-deep);
  font-weight: 800;
}

.insta-stat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-sep {
  color: rgba(194, 128, 118, 0.4);
  font-weight: 700;
}

.insta-grid {
  width: 90%;
  max-width: 1320px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
}

.insta-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(142, 59, 70, 0.75);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-thumb {
  transform: scale(1.08);
}

.insta-item:hover .insta-hover-overlay {
  opacity: 1;
}

.insta-icon {
  font-size: 1.6rem;
}

.insta-follow-btn {
  padding: 14px 32px;
  font-size: 1rem;
}

.footer-contact-box {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: #D4C3C0;
}

.footer-contact-box a {
  color: #FFB3BC;
  text-decoration: none;
}

.footer-contact-box a:hover {
  text-decoration: underline;
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
  .store-container {
    grid-template-columns: 1fr;
  }
  
  .store-info-side {
    padding: 40px 30px;
  }

  .store-map-card {
    min-height: 300px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-phone-text {
    display: none;
  }
}

@media (max-width: 640px) {
  .floating-whatsapp-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .insta-stats-pill {
    padding: 10px 18px;
    gap: 12px;
  }

  .store-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .store-actions-row .btn {
    width: 100%;
  }
}

/* Branch Announcement Notice */
.branch-announcement-bar {
  background: #FFF1F3;
  color: #721C24;
  border-bottom: 1px solid rgba(220, 53, 69, 0.2);
  padding: 7px 16px;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
}

.branch-announcement-bar strong {
  color: #8E3B46;
}

/* ==========================================================================
   GLOWCOR AHMEDABAD EXPO VIDEO SHOWCASE SECTION
   ========================================================================== */
.expo-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #FAF7F2 0%, #FFF5F6 50%, #FAF7F2 100%);
  position: relative;
  overflow: hidden;
}

.expo-grid {
  width: 92%;
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.expo-video-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(142, 59, 70, 0.08), 0 3px 8px rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(220, 190, 185, 0.45);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
}

.expo-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(142, 59, 70, 0.18);
  border-color: var(--rose-primary);
}

.expo-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000000;
  border-radius: 18px 18px 0 0;
  cursor: pointer;
}

.expo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000000;
  cursor: pointer;
}

.video-overlay-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.72) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 4;
}

.expo-video-card.is-playing .video-overlay-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.expo-video-card:hover .video-overlay-cover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
}

.expo-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(22, 16, 18, 0.85);
  backdrop-filter: blur(8px);
  color: #FFE6EA;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  letter-spacing: 0.3px;
  z-index: 5;
}

.video-play-btn {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FF6B8B 0%, #D4AF37 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(255, 107, 139, 0.55);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: playPulse 2.2s infinite;
}

@keyframes playPulse {
  0% { box-shadow: 0 10px 30px rgba(255, 107, 139, 0.55), 0 0 0 0 rgba(255, 107, 139, 0.55); }
  70% { box-shadow: 0 10px 30px rgba(255, 107, 139, 0.55), 0 0 0 18px rgba(255, 107, 139, 0); }
  100% { box-shadow: 0 10px 30px rgba(255, 107, 139, 0.55), 0 0 0 0 rgba(255, 107, 139, 0); }
}

.video-play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.video-play-btn:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #E53958 0%, #FFA000 100%);
}

.tap-play-hint {
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.4px;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 14px;
  border-radius: 14px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-floating-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 6;
}

.v-action-btn {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.v-action-btn:hover {
  transform: scale(1.12);
  background: var(--rose-primary);
  border-color: var(--rose-primary);
}

.expo-video-info {
  padding: 18px 16px 20px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.expo-creator-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--rose-primary);
  letter-spacing: 0.3px;
}

.expo-video-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.expo-video-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 2px;
}

@media (max-width: 1200px) {
  .expo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .expo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .expo-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   GOOGLE ADSENSE RESPONSIVE AD SLOTS
   ========================================================================== */
.adsense-slot-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 45px auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px dashed rgba(220, 190, 185, 0.6);
  border-radius: 16px;
  padding: 16px 20px 22px;
  box-shadow: 0 6px 20px rgba(142, 59, 70, 0.05);
  position: relative;
  overflow: hidden;
}

.adsense-slot-wrapper .ad-label {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #B59E9E;
  margin-bottom: 12px;
  font-weight: 700;
  display: block;
}

.adsense-slot-wrapper ins.adsbygoogle {
  min-height: 90px;
  background: transparent;
}


