/* ==========================================================================
   AROYA — Premium Gen Z Functional Mushroom Brew E-Commerce
   Core Stylesheet & Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Kalam:wght@700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --color-emerald: #0E3B2E;
  --color-deep-forest: #063D2B;
  --color-secondary-green: #14543F;
  --color-gold: #C9A227;
  --color-light-gold: #E8C766;
  --color-cream: #FFF8E9;
  --color-ivory: #FFFDF8;
  --color-peach: #F8D8C9;
  --color-soft-yellow: #F8E8A8;
  --color-lavender: #DCCCF4;
  --color-sky-blue: #C9E4F5;
  --color-soft-pink: #F8C9D5;
  --color-text: #1E1E1E;
  --color-text-muted: #5A625E;
  --color-text-light: #8C9690;
  --color-white: #FFFFFF;
  --color-border: #E8DFCE;
  --color-border-light: rgba(14, 59, 46, 0.12);
  --color-card-bg: #FFFFFF;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwritten: 'Caveat', 'Kalam', cursive;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 59, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 59, 46, 0.08);
  --shadow-lg: 0 16px 36px rgba(14, 59, 46, 0.12);
  --shadow-gold: 0 8px 25px rgba(201, 162, 39, 0.25);
  --shadow-green: 0 10px 30px rgba(14, 59, 46, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-padding-sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Typography Classes */
.font-serif { font-family: var(--font-serif); }
.font-editorial { font-family: var(--font-editorial); }
.font-ui { font-family: var(--font-ui); }
.font-hand { font-family: var(--font-handwritten); }

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-emerald);
  background: var(--color-soft-yellow);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(14, 59, 46, 0.15);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-emerald);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.handwritten-sticker {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-emerald);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transform: rotate(-3deg);
  background: var(--color-light-gold);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1.5px dashed var(--color-emerald);
  box-shadow: 2px 3px 0 rgba(14, 59, 46, 0.15);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: var(--color-emerald);
  color: var(--color-light-gold);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  text-align: center;
  position: relative;
  z-index: 100;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(232, 199, 102, 0.2);
}

.announcement-bar span.highlight {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  background: rgba(255, 248, 233, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-emerald);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-emerald);
  background: rgba(14, 59, 46, 0.05);
  position: relative;
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--color-emerald);
  color: var(--color-light-gold);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-gold);
  color: var(--color-emerald);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-ui);
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--color-cream);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 8px;
  background: rgba(14, 59, 46, 0.05);
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-emerald);
  transition: var(--transition);
  border-radius: 2px;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-emerald);
  color: var(--color-light-gold);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-emerald);
}

.btn-primary:hover {
  background: var(--color-secondary-green);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-emerald);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-light-gold);
  color: var(--color-emerald);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-emerald);
  border: 2px solid var(--color-emerald);
}

.btn-outline:hover {
  background: var(--color-emerald);
  color: var(--color-light-gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #F8E8A8 0%, #FFF8E9 60%);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  color: var(--color-secondary-green);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--color-emerald);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.hero-badge-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-emerald);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(14, 59, 46, 0.1);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

/* Gen-Z Live Interactive Hero Collage */
.hero-collage-wrapper {
  position: relative;
  display: block;
  padding: 1.5rem 0.5rem;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  background: var(--color-white);
  transition: transform 0.5s ease;
  z-index: 2;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* Overlapping Aesthetic Polaroid Photo Card */
.collage-polaroid-card {
  position: absolute;
  right: -25px;
  bottom: -25px;
  z-index: 6;
  background: #FFFFFF;
  padding: 0.65rem 0.65rem 0.9rem 0.65rem;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(14, 59, 46, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: rotate(6deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  width: 200px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
}

.collage-polaroid-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.08);
  box-shadow: 0 24px 48px rgba(14, 59, 46, 0.28);
  z-index: 25;
}

.polaroid-pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.polaroid-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 4px;
}

.polaroid-caption {
  font-family: var(--font-handwritten);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-emerald);
  text-align: center;
  margin-top: 0.45rem;
  line-height: 1.2;
}

/* Floating Yellow Doodle Sticky Note */
.collage-doodle-sticker {
  position: absolute;
  left: -28px;
  top: 30%;
  z-index: 7;
  background: #FFDE59;
  color: #14352A;
  padding: 0.6rem 0.95rem;
  border-radius: 6px;
  font-family: var(--font-handwritten);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(-8deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border: 1.5px dashed #14352A;
  animation: float 4.5s ease-in-out infinite;
  pointer-events: none;
}

/* Handwritten Script Note */
.collage-handwritten-note {
  position: absolute;
  top: -18px;
  right: 15px;
  z-index: 7;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-emerald);
  text-align: right;
  transform: rotate(3deg);
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
  pointer-events: none;
}

/* Background Abstract Blobs */
.collage-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

.blob-peach {
  width: 260px;
  height: 260px;
  background: rgba(248, 216, 201, 0.65);
  top: -40px;
  left: -30px;
}

.blob-matcha {
  width: 220px;
  height: 220px;
  background: rgba(200, 230, 201, 0.55);
  bottom: -30px;
  right: -20px;
}

.blob-yellow {
  width: 200px;
  height: 200px;
  background: rgba(255, 249, 196, 0.7);
  top: 40%;
  right: 20%;
}

.floating-pill {
  position: absolute;
  z-index: 8;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(14, 59, 46, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
}

.floating-pill.pill-top {
  top: -20px;
  left: 20px;
  animation-delay: 0s;
}

.floating-pill.pill-bottom {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.floating-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-light-gold);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-pill-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-emerald);
}

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

/* ==========================================================================
   Benefits Strip
   ========================================================================== */
.benefits-strip {
  background: var(--color-emerald);
  color: var(--color-cream);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.benefits-scroller {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-light-gold);
}

.benefit-icon {
  font-size: 1.25rem;
  color: var(--color-gold);
}

/* ==========================================================================
   Wellness Goal Categories & Background Watermarks
   ========================================================================== */
.categories-section {
  position: relative;
  background-color: var(--color-ivory);
  background-image: 
    radial-gradient(circle at 12% 18%, rgba(201, 162, 39, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(14, 59, 46, 0.05) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' opacity='0.045'%3E%3Cg fill='%230E3B2E'%3E%3Cpath d='M80 30c-16 0-28 10-28 22 0 4 2 8 6 10-2 2-3 5-3 8 0 8 11 14 25 14s25-6 25-14c0-3-1-6-3-8 4-2 6-6 6-10 0-12-12-22-28-22zm-4 44v32h8V74c-2 .3-5 .5-8 .5s-6-.2-8-.5z'/%3E%3Ccircle cx='30' cy='120' r='14' fill='none' stroke='%230E3B2E' stroke-width='2' stroke-dasharray='3 3'/%3E%3Cpath d='M130 110c-8 0-14 6-14 14s6 14 14 14 14-6 14-14-6-14-14-14zm-2 18v10h4v-10h-4z'/%3E%3Cpath d='M20 40c0-10 8-18 18-18s18 8 18 18c-6 0-10 4-10 10H30c0-6-4-10-10-10z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  overflow: hidden;
}

.featured-products-section {
  position: relative;
  background-color: var(--color-white);
  background-image: 
    radial-gradient(circle at 92% 12%, rgba(201, 162, 39, 0.045) 0%, transparent 40%),
    radial-gradient(circle at 8% 88%, rgba(14, 59, 46, 0.035) 0%, transparent 48%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180' opacity='0.038'%3E%3Cg fill='%230E3B2E'%3E%3Cpath d='M90 35c-20 0-35 13-35 28 0 5 3 10 8 13-3 3-4 6-4 10 0 11 14 18 31 18s31-7 31-18c0-4-1-7-4-10 5-3 8-8 8-13 0-15-15-28-35-28zm-5 56v32h10V91c-3 .3-7 .5-10 .5s-7-.2-10-.5z'/%3E%3Cpath d='M35 125c-8 0-15 7-15 15s7 15 15 15 15-7 15-15-7-15-15-15zm-2 16v10h4v-10h-4z'/%3E%3Ccircle cx='145' cy='135' r='14' fill='none' stroke='%23C9A227' stroke-width='2' stroke-dasharray='4 3'/%3E%3Cpath d='M145 35c0-8 6-14 14-14s14 6 14 14c-4 0-8 3-8 7h-12c0-4-4-7-8-7z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  overflow: hidden;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  text-align: center;
  border: 1.5px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--category-accent, var(--color-gold));
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--category-accent, var(--color-gold));
}

.category-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--category-bg, var(--color-soft-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon-wrap {
  transform: scale(1.1);
}

.category-icon-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.category-name {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 0.4rem;
}

.category-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(14, 59, 46, 0.06);
  color: var(--color-emerald);
  font-size: 0.75rem;
  transition: var(--transition);
}

.category-card:hover .category-arrow {
  background: var(--color-emerald);
  color: var(--color-light-gold);
  transform: translateX(3px);
}

/* ==========================================================================
   Product Cards & Grid
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 59, 46, 0.25);
}

.product-image-wrap {
  position: relative;
  background: radial-gradient(circle, var(--prod-tint, #F8E8A8) 0%, #FFFFFF 85%);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
}

.product-image-wrap img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,0.12));
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-badge.badge-available {
  background: var(--color-emerald);
  color: var(--color-light-gold);
}

.product-badge.badge-coming-soon {
  background: var(--color-gold);
  color: var(--color-emerald);
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.wishlist-btn:hover {
  background: var(--color-emerald);
  color: #FF5A5F;
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: #FF5A5F;
  background: #FFF0F2;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: #F5A623;
  letter-spacing: 1px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.product-name a:hover {
  color: var(--color-gold);
}

.product-short-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.product-price {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-emerald);
}

.product-status-tag {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary-green);
}

/* ==========================================================================
   Ancient Ingredients Section
   ========================================================================== */
.ingredients-spotlight {
  background: var(--color-cream);
  position: relative;
}

.ingredients-grid-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ingredient-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1.5px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

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

.ingredient-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid var(--color-gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.ingredient-card:hover .ingredient-img {
  transform: scale(1.08);
  border-color: var(--color-emerald);
}

.ingredient-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 0.25rem;
}

.ingredient-cat-tag {
  font-size: 0.75rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* ==========================================================================
   Reels / Video Section
   ========================================================================== */
.reels-section {
  background: var(--color-emerald);
  color: var(--color-cream);
  padding: 5rem 0;
}

.reels-section .section-heading {
  color: var(--color-light-gold);
}

.reels-section .section-subtitle {
  color: var(--color-cream);
  opacity: 0.85;
}

.reels-slider-wrapper {
  position: relative;
  margin-top: 2rem;
}

.reels-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) rgba(255, 255, 255, 0.1);
}

.reels-container::-webkit-scrollbar {
  height: 8px;
}

.reels-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.reels-container::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.reel-card {
  flex: 0 0 240px;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(232, 199, 102, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--color-light-gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.reel-card:hover .reel-poster {
  transform: scale(1.05);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 59, 46, 0.95) 0%, rgba(14, 59, 46, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  z-index: 2;
}

.reel-views-badge {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--color-light-gold);
}

.reel-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

/* ==========================================================================
   Farm Story Section
   ========================================================================== */
.farm-story-section {
  background: var(--color-ivory);
}

.farm-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.farm-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
}

.farm-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.farm-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.farm-badge-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-emerald);
}

.farm-badge-overlay p {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
}

.farm-content h3 {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.farm-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.farm-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.farm-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.farm-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-emerald);
}

.farm-feature-icon {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* ==========================================================================
   Certifications & Trust Strip
   ========================================================================== */
.certifications-section {
  background: var(--color-cream);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.certifications-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

.cert-card img {
  width: 48px;
  height: 48px;
}

.cert-text h5 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-emerald);
}

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

/* ==========================================================================
   Testimonials / Customer Reviews
   ========================================================================== */
.testimonials-section {
  background: var(--color-ivory);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

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

.testimonial-quote {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.author-info h4 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-emerald);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Journal / Blog Preview
   ========================================================================== */
.journal-preview-section {
  background: var(--color-cream);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-image-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrap img {
  transform: scale(1.08);
}

.blog-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-emerald);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.blog-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex: 1;
}

.blog-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-emerald);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-link:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

/* ==========================================================================
   Community / Newsletter Section
   ========================================================================== */
.community-banner {
  background: var(--color-emerald);
  color: var(--color-cream);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.community-banner-box {
  background: var(--color-secondary-green);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.community-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-light-gold);
  margin-bottom: 0.75rem;
}

.community-banner p {
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
  background: var(--color-white);
  padding: 0.4rem;
  border-radius: var(--radius-full);
}

.subscribe-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-deep-forest);
  color: var(--color-cream);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--color-gold);
}

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

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: rgba(255, 248, 233, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--color-gold);
  color: var(--color-emerald);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-light-gold);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 248, 233, 0.75);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-light-gold);
  padding-left: 4px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 248, 233, 0.75);
  margin-bottom: 0.85rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 248, 233, 0.6);
}

.footer-tagline-quote {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-light-gold);
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 61, 43, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-gold);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 59, 46, 0.08);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--color-emerald);
  color: var(--color-light-gold);
}

/* Slide-out Cart Drawer */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 61, 43, 0.6);
  backdrop-filter: blur(4px);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-cream);
}

.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-emerald);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-ivory);
}

.free-shipping-bar {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.free-shipping-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-emerald);
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
}

.progress-track {
  height: 8px;
  background: rgba(14, 59, 46, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-light-gold));
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Global Toast Notification System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--color-emerald);
  color: var(--color-cream);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--color-gold);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: toastIn 0.3s ease forwards;
  max-width: 360px;
}

/* ==========================================================================
   Gen-Z Aesthetic Polish & Dopamine Wellness Design System
   ========================================================================== */

/* Infinite Running Marquee Banner */
.genz-marquee-strip {
  background: var(--color-deep-forest);
  color: var(--color-cream);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1.5px solid rgba(232, 199, 102, 0.35);
  border-bottom: 1.5px solid rgba(232, 199, 102, 0.35);
}

.genz-marquee-strip .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.genz-marquee-strip .marquee-item .marquee-icon {
  font-size: 1.15rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.genz-marquee-strip .marquee-item .marquee-dot {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-left: 1rem;
}

/* Dopamine Wellness Pastel Badges */
.badge-matcha {
  background: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #A5D6A7;
}

.badge-lilac {
  background: #F3E5F5;
  color: #6A1B9A;
  border: 1px solid #CE93D8;
}

.badge-butter {
  background: #FFFDE7;
  color: #F57F17;
  border: 1px solid #FFF59D;
}

.badge-rose {
  background: #FCE4EC;
  color: #AD1457;
  border: 1px solid #F48FB1;
}

.badge-sky {
  background: #E1F5FE;
  color: #0277BD;
  border: 1px solid #81D4FA;
}

/* Floating Aesthetic Stickers */
.aesthetic-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aesthetic-tag:hover {
  transform: translateY(-2px) scale(1.05);
}

/* TikTok & Social UGC Badges */
.tiktok-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.85);
  color: #FFFFFF;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.tiktok-tag span.fire {
  color: #FF4757;
}

/* Enhanced Product & Card Hover Lift */
.product-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 35px -10px rgba(14, 59, 46, 0.18);
  border-color: var(--color-gold);
}

.ingredient-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.ingredient-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--color-emerald);
}

/* UGC Reel Social Card Polish */
.reel-user-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* ==========================================================================
   Interactive Vibe Switcher Bar (Gen-Z Mode Selector)
   ========================================================================== */
.vibe-switcher-container {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vibe-switcher-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vibe-switcher-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(14, 59, 46, 0.15);
  box-shadow: 0 4px 20px rgba(14, 59, 46, 0.06);
  gap: 0.35rem;
  flex-wrap: wrap;
  width: max-content;
}

.vibe-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vibe-tab-btn:hover {
  color: var(--color-emerald);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.vibe-tab-btn.active {
  color: var(--color-emerald);
  background: #FFFFFF;
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.25);
  transform: scale(1.03);
}

.vibe-tab-btn.active[data-vibe="calm"] {
  border-color: #7E57C2;
  box-shadow: 0 4px 15px rgba(126, 87, 194, 0.3);
  color: #4A148C;
}

.vibe-tab-btn.active[data-vibe="womens"] {
  border-color: #E91E63;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  color: #880E4F;
}

.vibe-tab-btn.active[data-vibe="metabolic"] {
  border-color: #0288D1;
  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
  color: #01579B;
}

/* ==========================================================================
   Interactive Hero Hotspots on Authentic Image
   ========================================================================== */
.hero-hotspot {
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.hero-hotspot-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 59, 46, 0.9);
  color: var(--color-light-gold);
  border: 2px solid #FFFFFF;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7);
  animation: pulseGlow 2s infinite;
  transition: all 0.3s ease;
}

.hero-hotspot:hover .hero-hotspot-btn {
  background: var(--color-gold);
  color: var(--color-emerald);
  transform: scale(1.2);
}

.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  background: rgba(14, 59, 46, 0.96);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gold);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20;
}

.hero-hotspot:hover .hotspot-tooltip,
.hero-hotspot.active .hotspot-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Floating Quiz Trigger (Gen-Z Widget) */
.floating-quiz-trigger {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 85;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-deep-forest));
  color: var(--color-light-gold);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 10px 30px rgba(14, 59, 46, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 5s ease-in-out infinite;
}

.floating-quiz-trigger:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(201, 162, 39, 0.4);
  background: var(--color-secondary-green);
  color: #FFFFFF;
}

/* Interactive Vibe Quiz Modal */
.quiz-option-card {
  background: var(--color-cream);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

/* ==========================================================================
   AROYA — Daily Sip Streak Tracker (Snapchat Streaks Style 🔥)
   ========================================================================== */
.streak-section {
  position: relative;
  background: linear-gradient(180deg, #FAF7F2 0%, #FFF8E7 100%);
  padding: 4.5rem 0;
  overflow: hidden;
}

.streak-card-container {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(201, 162, 39, 0.12), 0 5px 15px rgba(0,0,0,0.04);
  position: relative;
  text-align: center;
}

.streak-header {
  margin-bottom: 2rem;
}

.streak-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  color: #E65100;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(230, 81, 0, 0.25);
  margin-bottom: 0.75rem;
}

.streak-flame-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.streak-flame-icon {
  font-size: clamp(3rem, 6vw, 4.2rem);
  animation: flamePulse 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 4px 15px rgba(255, 111, 0, 0.4));
}

.streak-count-display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #E65100 0%, #FF8F00 50%, #C9A227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.streak-badge-text {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-top: 0.25rem;
}

/* 7-Day Calendar Dots */
.streak-days-track {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  margin: 2rem 0;
  padding: 1.25rem;
  background: #FAF7F2;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.streak-day-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.streak-day-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.streak-day-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.streak-day-dot.today {
  border-color: #FF8F00;
  box-shadow: 0 0 0 3px rgba(255, 143, 0, 0.2);
}

.streak-day-dot.active {
  background: linear-gradient(135deg, #FF6F00, #E91E63);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.35);
  transform: scale(1.08);
}

.streak-day-dot.missed {
  opacity: 0.5;
  background: #ECEFF1;
}

/* Streak Actions */
.streak-action-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.75rem 0;
}

.btn-log-streak {
  background: linear-gradient(135deg, #FF6F00 0%, #E91E63 100%);
  color: #FFFFFF;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.95rem 2.25rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-log-streak:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 32px rgba(233, 30, 99, 0.45);
}

.btn-log-streak:active {
  transform: translateY(0) scale(0.98);
}

.btn-log-streak.btn-streak-logged {
  background: var(--color-emerald);
  box-shadow: 0 6px 18px rgba(14, 59, 46, 0.2);
  cursor: default;
}

.btn-share-streak {
  background: #FFFC00;
  color: #000000;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-share-streak:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Milestone Rewards Grid */
.streak-rewards-wrapper {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1.5px dashed var(--color-border);
  text-align: left;
}

.streak-rewards-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-emerald);
  margin-bottom: 1rem;
  text-align: center;
}

.streak-rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.streak-reward-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.25s ease;
}

.streak-reward-card.unlocked {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #FFFDF8, #FFF8E7);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.15);
}

.streak-reward-card.locked {
  opacity: 0.7;
}

.streak-reward-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.streak-reward-info {
  flex-grow: 1;
}

.streak-reward-title {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-emerald);
}

.streak-reward-desc {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

.streak-reward-action {
  flex-shrink: 0;
}

.btn-copy-code {
  background: var(--color-gold);
  color: var(--color-emerald);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-code:hover {
  background: var(--color-emerald);
  color: #FFFFFF;
}

.streak-lock-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background: var(--color-cream);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Animations */
@keyframes flamePulse {
  0% { transform: scale(1) rotate(-3deg); }
  100% { transform: scale(1.12) rotate(3deg); }
}

@keyframes sparklePop {
  0% { transform: translate(-50%, -50%) scale(0) rotate(0deg); opacity: 1; }
  50% { opacity: 1; }
  100% { transform: translate(calc(-50% + 40px), calc(-50% - 60px)) scale(1.3) rotate(360deg); opacity: 0; }
}

@media (max-width: 600px) {
  .streak-card-container {
    padding: 1.5rem 1rem;
  }
  .streak-day-dot {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Botanical & Functional Mushroom Watermark Themes (Section 2 & Section 3)
   ========================================================================== */
.categories-section {
  position: relative;
  overflow: hidden;
  background-color: #FAF6EF;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(14, 59, 46, 0.05) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 25 C45 25 35 38 35 48 C35 52 38 55 45 55 C48 55 52 55 54 57 C55 58 55 75 55 85 C55 88 57 90 60 90 C63 90 65 88 65 85 C65 75 65 58 66 57 C68 55 72 55 75 55 C82 55 85 52 85 48 C85 38 75 25 60 25 Z M50 42 C50 38 54 35 60 35 C66 35 70 38 70 42 C70 43 60 43 50 42 Z' fill='%230E3B2E' fill-opacity='0.035' fill-rule='evenodd'/%3E%3Cpath d='M15 95 C15 88 22 80 30 80 C32 85 30 92 25 96 C20 100 15 98 15 95 Z' fill='%23C9A227' fill-opacity='0.04'/%3E%3Cpath d='M105 30 C100 25 92 28 90 35 C96 36 102 34 105 30 Z' fill='%230E3B2E' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.categories-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 20 C60 20 30 55 30 85 C30 95 40 102 60 102 C70 102 82 104 88 110 C90 114 90 160 90 175 C90 182 94 185 100 185 C106 185 110 182 110 175 C110 160 110 114 112 110 C118 104 130 102 140 102 C160 102 170 95 170 85 C170 55 140 20 100 20 Z M70 65 C70 52 82 44 100 44 C118 44 130 52 130 65 C130 67 100 67 70 65 Z' fill='%230E3B2E' fill-opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.categories-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 240px;
  height: 240px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 150 C30 90 80 40 160 30 C150 110 100 160 30 150 Z M45 138 C80 125 115 95 135 60 C100 80 70 110 45 138 Z' fill='%23C9A227' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.categories-section .container {
  position: relative;
  z-index: 1;
}

.featured-products-section {
  position: relative;
  overflow: hidden;
  background: #FFFDF9;
  background-image: 
    radial-gradient(circle at 85% 15%, rgba(201, 162, 39, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(14, 59, 46, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230E3B2E' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M70 30 C55 30 45 42 45 52 C45 56 48 58 55 58 C58 58 62 58 64 60 C65 61 65 78 65 88 C65 91 67 93 70 93 C73 93 75 91 75 88 C75 78 75 61 76 60 C78 58 82 58 85 58 C92 58 95 56 95 52 C95 42 85 30 70 30 Z'/%3E%3Ccircle cx='25' cy='30' r='3'/%3E%3Ccircle cx='115' cy='110' r='4'/%3E%3Cpath d='M120 40 C110 35 105 45 110 52 C116 48 122 42 120 40 Z'/%3E%3Cpath d='M20 110 C25 100 38 105 32 118 C24 118 18 115 20 110 Z'/%3E%3C/g%3E%3C/svg%3E");
}

.featured-products-section::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -50px;
  width: 320px;
  height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 15 C55 15 20 55 20 90 C20 102 32 110 54 110 C65 110 78 112 84 120 C87 124 87 168 87 182 C87 188 92 192 100 192 C108 192 113 188 113 182 C113 168 113 124 116 120 C122 112 135 110 146 110 C168 110 180 102 180 90 C180 55 145 15 100 15 Z' fill='%230E3B2E' fill-opacity='0.038'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.featured-products-section::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 160 C40 95 95 40 175 30 C165 115 110 170 40 160 Z' fill='%23C9A227' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.featured-products-section .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Homepage Founder Story Section (Editorial 2-Column Luxury Layout)
   ========================================================================== */
.founder-story-section {
  position: relative;
  background-color: var(--color-cream);
  background-image: radial-gradient(circle at 15% 15%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 85% 85%, rgba(14, 59, 46, 0.06) 0%, transparent 45%);
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.founder-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.founder-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.founder-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(14, 59, 46, 0.15);
  border: 4px solid var(--color-white);
  background: var(--color-ivory);
  aspect-ratio: 4/5;
}

.founder-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.founder-visual-card:hover .founder-image-frame img {
  transform: scale(1.03);
}

.founder-badge-floating {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--color-emerald);
  color: var(--color-cream);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-green), 0 10px 25px rgba(0,0,0,0.25);
  border: 2px solid var(--color-gold);
  z-index: 2;
}

.founder-badge-floating .badge-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-light-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.founder-badge-floating .badge-sub {
  font-size: 0.78rem;
  color: rgba(255, 248, 233, 0.8);
  margin-top: 0.15rem;
}

.founder-content .section-tag {
  background: var(--color-soft-yellow);
  color: var(--color-emerald);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.founder-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  color: var(--color-emerald);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.founder-heading em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-gold);
}

.founder-narrative {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.founder-quote-box {
  background: var(--color-ivory);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.founder-quote-text {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-deep-forest);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.founder-quote-author {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
}

.founder-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.founder-highlight-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  text-align: center;
}

.founder-highlight-item .icon {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.founder-highlight-item .title {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-emerald);
}

/* ==========================================================================
   Instagram Story 9:16 Canvas Generator Modal Styles
   ========================================================================== */
#instagramStoryModal .modal-content {
  max-width: 480px;
  background: var(--color-emerald);
  color: var(--color-cream);
  border: 2px solid var(--color-gold);
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.story-generator-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.story-generator-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-light-gold);
  margin-top: 0.35rem;
}

.story-card-preview-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(201, 162, 39, 0.6);
  aspect-ratio: 9/16;
  background: #0E3B2E;
}

.story-card-preview-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.story-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-story-download {
  background: linear-gradient(135deg, #E8C766 0%, #C9A227 100%);
  color: var(--color-emerald);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-gold);
}

.btn-story-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.btn-story-share {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #FFFDF8;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-story-share:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-story-copy-tag {
  background: transparent;
  color: var(--color-light-gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-align: center;
}

@media (max-width: 900px) {
  .founder-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-visual-card {
    max-width: 420px;
    margin: 0 auto;
  }
  .founder-badge-floating {
    bottom: -10px;
    right: 0;
    padding: 0.8rem 1rem;
  }
  .founder-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}




