/* ==========================================================================
   PREMIUM MULTI-BRAND SKINCARE E-COMMERCE STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS RESET
   -------------------------------------------------------------------------- */

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

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

::selection {
  background-color: var(--sage-muted);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Color System - Skincare Warm Palette */
  --bg-warm: #FBF8F3;
  --bg-soft: #F5F0E8;
  --white: #FFFFFF;
  --black: #000000;

  /* Sage Green Primary */
  --sage: #7D9470;
  --sage-light: #A3B899;
  --sage-muted: rgba(125, 148, 112, 0.12);
  --sage-deep: #5C7350;

  /* Terracotta Accent */
  --terracotta: #C4956A;
  --terracotta-soft: #D4AD8A;
  --terracotta-muted: rgba(196, 149, 106, 0.12);
  --terracotta-deep: #A67A4F;

  /* Warm Brown Dark Sections */
  --brown-deep: #4A3228;
  --brown-warm: #5C4033;
  --dark-bg: #4A3228;
  --dark-bg-gradient: linear-gradient(135deg, #4A3228 0%, #5C4033 100%);

  /* Peach/Pink Accents */
  --peach-soft: #F5D5C8;
  --warm-yellow: #E8D5A3;
  --warm-yellow-light: #F0E4C4;

  /* Gold Shadow */
  --shadow-gold: 0 4px 20px rgba(196, 149, 106, 0.25);

  /* Text Colors */
  --text-primary: #2D2926;
  --text-secondary: #5A5550;
  --text-muted: #8A8580;
  --text-on-dark: #F5F0E8;
  --text-on-dark-muted: #C4B8A8;

  /* Beige/Neutral */
  --beige-muted: #E9E0D4;
  --border-light: rgba(45, 41, 38, 0.08);
  --border-medium: rgba(45, 41, 38, 0.12);

  /* Functional */
  --success: #22C55E;
  --whatsapp: #25D366;

  /* Shadows - Soft UI Evolution */
  --shadow-xs: 0 1px 2px rgba(74, 50, 40, 0.03);
  --shadow-sm: 0 2px 8px rgba(74, 50, 40, 0.04);
  --shadow-subtle: 0 2px 20px rgba(74, 50, 40, 0.04);
  --shadow-md: 0 4px 16px rgba(74, 50, 40, 0.06);
  --shadow-card: 0 4px 30px rgba(74, 50, 40, 0.06);
  --shadow-lg: 0 8px 30px rgba(74, 50, 40, 0.08);
  --shadow-elevated: 0 12px 40px rgba(74, 50, 40, 0.1);
  --shadow-xl: 0 20px 50px rgba(74, 50, 40, 0.12);
  --shadow-2xl: 0 25px 60px rgba(74, 50, 40, 0.16);
  --shadow-card-hover: 0 12px 40px rgba(74, 50, 40, 0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  --space-4xl: 12rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-medium: 300ms;
  --duration-slow: 500ms;

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 900px;
  --nav-height: 72px;
  --announcement-height: 40px;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--sage);
  border-radius: 1px;
}

.eyebrow-dark {
  color: var(--terracotta);
}

.eyebrow-dark::before {
  background-color: var(--terracotta);
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
  scroll-margin-top: calc(var(--announcement-height) + var(--nav-height) + 12px);
}

html {
  scroll-padding-top: calc(var(--announcement-height) + var(--nav-height) + 12px);
}

.section--sm { padding-block: clamp(3rem, 5vw, 5rem); }
.section--lg { padding-block: clamp(5rem, 10vw, 10rem); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-lg);
}

.separator {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border: none;
  margin-block: var(--space-md);
}

.separator--center {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */

.announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announcement-height);
  background-color: var(--dark-bg);
  z-index: 1001;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.announcement__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.announcement__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-inline: var(--space-lg);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--warm-yellow-light);
  text-transform: uppercase;
}

.announcement__item .separator-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--terracotta-soft);
}

.announcement-close {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--warm-yellow-light);
  opacity: 0.7;
  transition: opacity var(--duration-fast) var(--ease-out);
  z-index: 10;
}

.announcement-close:hover {
  opacity: 1;
}

.announcement-close svg {
  width: 14px;
  height: 14px;
}

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

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */

.navbar {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--duration-medium) var(--ease-out);
}

.navbar.scrolled {
  background-color: rgba(253, 248, 243, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-subtle);
  border-bottom: 1px solid var(--border-light);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-logo-img {
  width: auto;
  height: 120px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }

  .footer-logo-img {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 46px;
  }
}

.navbar__logo span {
  color: var(--terracotta);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-block: var(--space-xs);
  transition: color var(--duration-fast) var(--ease-out);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--sage);
  transition: width var(--duration-medium) var(--ease-out);
}

.navbar__link:hover {
  color: var(--sage-deep);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__icons {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
}

.navbar__icon:hover {
  background-color: var(--sage-muted);
  color: var(--sage-deep);
}

.navbar__icon svg {
  width: 20px;
  height: 20px;
}

.navbar__cta {
  margin-left: var(--space-sm);
}

.navbar__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-medium) var(--ease-out);
  margin-inline: auto;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--duration-medium) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background-color: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn--primary:hover {
  background-color: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--accent {
  background-color: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn--accent:hover {
  background-color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 149, 106, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn--outline:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
  background-color: var(--sage-muted);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--ghost {
  background-color: transparent;
  color: var(--sage);
  border-color: transparent;
  padding-inline: var(--space-sm);
}

.btn--ghost:hover {
  background-color: var(--sage-muted);
}

.btn--sm {
  font-size: 0.7rem;
  padding: 10px 22px;
}

.btn--lg {
  font-size: 0.85rem;
  padding: 18px 42px;
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.btn--icon.btn--sm {
  width: 36px;
  height: 36px;
}

.btn--icon.btn--lg {
  width: 52px;
  height: 52px;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  height: calc(100vh - var(--announcement-height) - var(--nav-height));
  min-height: 560px;
  margin-top: calc(var(--announcement-height) + var(--nav-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to right,
    #cfe5f2 0%,
    #aacadf 35%,
    #8db6d8 50%,
    #aacadf 65%,
    #cfe5f2 100%
  );
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.25) contrast(1.08) brightness(1.06);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 41, 38, 0.55) 0%,
    rgba(45, 41, 38, 0.18) 45%,
    rgba(45, 41, 38, 0) 70%
  );
  z-index: 1;
}

.hero__ribbon {
  position: absolute;
  top: var(--space-lg);
  right: 0;
  z-index: 5;
  background-color: var(--sage);
  color: var(--white);
  padding: 10px 24px 10px 20px;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  box-shadow: 0 4px 20px rgba(125, 148, 112, 0.35);
  transform: translateX(0);
  transition: transform var(--duration-medium) var(--ease-out);
}

.hero__ribbon:hover {
  transform: translateX(-4px);
}

.hero__ribbon-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  padding: var(--space-2xl) clamp(2rem, 5vw, 6rem) var(--space-2xl);
}

.hero__eyebrow {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  background-color: var(--white);
}

.hero__title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  font-weight: 500;
  color: var(--white);
}

.hero__title .highlight {
  color: var(--sage-light);
  font-style: italic;
}

.hero__subtitle {
  display: none;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn--light {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   8. TRUST BADGES
   -------------------------------------------------------------------------- */

.trust {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding-block: var(--space-lg);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-medium) var(--ease-out);
}

.trust__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  transform: scaleX(0);
  transition: transform var(--duration-medium) var(--ease-out);
}

.trust__item:hover {
  border-color: var(--sage-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust__item:hover::before {
  transform: scaleX(1);
}

.trust__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--sage-muted);
  color: var(--sage);
  margin-bottom: var(--space-xs);
}

.trust__icon svg {
  width: 22px;
  height: 22px;
}

.trust__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.trust__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. SECTION HEADERS
   -------------------------------------------------------------------------- */

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-header .eyebrow {
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. CATEGORY SHOWCASE
   -------------------------------------------------------------------------- */

.categories {
  overflow: hidden;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

.category-card:hover .category-card__image {
  transform: scale(1.06);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(44, 36, 32, 0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  transition: background var(--duration-medium) var(--ease-out);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(44, 36, 32, 0.75) 100%);
}

.category-card__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-light);
  margin-bottom: 4px;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.category-card__count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Asymmetric grid spans */
.category-card--wide { grid-column: span 7; min-height: 380px; }
.category-card--tall { grid-column: span 5; grid-row: span 2; min-height: 100%; }
.category-card--medium { grid-column: span 5; min-height: 260px; }
.category-card--small { grid-column: span 4; min-height: 260px; }
.category-card--small2 { grid-column: span 3; min-height: 260px; }

/* --------------------------------------------------------------------------
   11. PRODUCT CARDS
   -------------------------------------------------------------------------- */

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--duration-medium) var(--ease-out);
  position: relative;
}

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

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--bg-soft);
}

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

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  transform: translateY(100%);
  transition: transform var(--duration-medium) var(--ease-out);
}

.product-card:hover .product-card__quick-actions {
  transform: translateY(0);
}

.product-card__quick-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.product-card__quick-btn:hover {
  background-color: var(--sage);
  color: var(--white);
}

.product-card__quick-btn svg {
  width: 16px;
  height: 16px;
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-card__badge--new {
  background-color: var(--sage);
  color: var(--white);
}

.product-card__badge--sale {
  background-color: var(--terracotta);
  color: var(--white);
}

.product-card__wishlist {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  z-index: 2;
  transition: all var(--duration-fast) var(--ease-out);
}

.product-card__wishlist:hover {
  background-color: var(--terracotta);
  color: var(--white);
}

.product-card__wishlist svg {
  width: 16px;
  height: 16px;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-xs) var(--space-sm) 0;
}

.product-card__stars {
  display: flex;
  gap: 2px;
  color: var(--warm-yellow);
}

.product-card__stars svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.product-card__stars svg.half {
  clip-path: inset(0 50% 0 0);
}

.product-card__review-count {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.product-card__body {
  padding: var(--space-sm);
}

.product-card__category {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 4px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.product-card__price-current {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-card__price-original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__price-discount {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--terracotta);
}

.product-card__detail {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-card__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: var(--space-sm);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background-color: var(--whatsapp);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--duration-fast) var(--ease-out);
}

.product-card__wa:hover {
  background-color: #1EBE5A;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* --------------------------------------------------------------------------
   12. PRODUCTS GRID / FILTER
   -------------------------------------------------------------------------- */

.products-filter {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  justify-content: center;
}

.products-filter__pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--border-medium);
  color: var(--text-secondary);
  background-color: var(--white);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.products-filter__pill:hover {
  border-color: var(--sage-light);
  color: var(--sage-deep);
}

.products-filter__pill.active {
  background-color: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

/* --------------------------------------------------------------------------
    13. CATEGORY SHOWCASE SECTIONS
    -------------------------------------------------------------------------- */

.category-showcase {
  overflow: hidden;
}

.category-showcase--moisturizers {
  background-color: var(--bg-soft);
}

.category-showcase--sunscreen {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D6 100%);
}

.category-showcase--lipcare {
  background: linear-gradient(135deg, #FFF0F0 0%, #FFE8EC 100%);
}

.category-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.category-showcase__header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.category-showcase__nav {
  display: flex;
  gap: var(--space-xs);
}

.category-showcase__arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.category-showcase__arrow:hover {
  background-color: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.category-showcase__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.category-showcase__arrow:disabled:hover {
  background-color: var(--white);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.category-showcase__header h2 {
  margin-bottom: var(--space-xs);
}

.category-showcase__header p {
  max-width: 480px;
}

.category-showcase__header .eyebrow {
  margin-bottom: var(--space-xs);
}

.category-showcase__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.category-showcase__grid::-webkit-scrollbar {
  display: none;
}

.category-showcase__grid .product-card {
  flex: 0 0 calc((100% - var(--space-md) * 3) / 4);
  scroll-snap-align: start;
}

/* --------------------------------------------------------------------------
    14. CTA SECTION
    -------------------------------------------------------------------------- */

.cta-section {
  background-color: var(--bg-warm);
}

.cta-section__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-section__inner h2 {
  margin-bottom: var(--space-md);
}

.cta-section__inner h2 .highlight {
  color: var(--sage);
  font-style: italic;
}

.cta-section__inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
    15. WHY CHOOSE US (DARK SECTION)
    -------------------------------------------------------------------------- */

.why-us {
  background: var(--dark-bg-gradient);
  color: var(--white);
  overflow: hidden;
  position: relative;
  scroll-margin-top: calc(var(--announcement-height) + var(--nav-height) + 12px);
  padding-block: clamp(4rem, 8vw, 8rem);
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125, 148, 112, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-us .section-header h2 {
  color: var(--white);
}

.why-us .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.why-us__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

.why-us__heading h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.why-us__heading h2 em {
  color: var(--terracotta-soft);
  font-style: italic;
}

.why-us__heading p {
  color: rgba(255, 255, 255, 0.6);
}

.why-us__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.why-us__grid::-webkit-scrollbar {
  display: none;
}

.why-us__grid .why-us__card {
  flex: 0 0 calc((100% - var(--space-md) * 3) / 4);
  scroll-snap-align: start;
}

.why-us__card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration-medium) var(--ease-out);
  position: relative;
}

.why-us__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.why-us__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--terracotta-soft);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.why-us__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(125, 148, 112, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-light);
  margin-bottom: var(--space-sm);
}

.why-us__card-icon svg {
  width: 22px;
  height: 22px;
}

.why-us__card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.why-us__card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. BRAND SHOWCASE
   -------------------------------------------------------------------------- */

.brands {
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding-block: var(--space-xl);
  scroll-margin-top: calc(var(--announcement-height) + var(--nav-height) + 12px);
}

.brands__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 45s linear infinite;
}

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

.brands__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-inline: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration-medium) var(--ease-out);
}

.brands__item:hover {
  border-color: var(--sage-light);
  color: var(--sage-deep);
  background-color: var(--sage-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.brands__item img {
  height: 24px;
  width: auto;
  opacity: 0.5;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.brands__item:hover img {
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   15. FLASH SALE
   -------------------------------------------------------------------------- */

.flash-sale {
  background: var(--dark-bg-gradient);
  position: relative;
  overflow: hidden;
}

.flash-sale__decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.flash-sale__decoration--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 213, 204, 0.1) 0%, transparent 70%);
  top: -100px;
  left: -50px;
  animation: pulse-deco 8s ease-in-out infinite;
}

.flash-sale__decoration--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(125, 148, 112, 0.1) 0%, transparent 70%);
  bottom: -80px;
  right: -30px;
  animation: pulse-deco 8s ease-in-out infinite 4s;
}

@keyframes pulse-deco {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.flash-sale__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.flash-sale__content .eyebrow {
  color: var(--terracotta-soft);
}

.flash-sale__content .eyebrow::before {
  background-color: var(--terracotta-soft);
}

.flash-sale__content h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.flash-sale__content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-lg);
}

.flash-sale__countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.flash-sale__timer-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  min-width: 80px;
  text-align: center;
}

.flash-sale__timer-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.flash-sale__timer-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.flash-sale__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   16. PRODUCT DISCOVERY
   -------------------------------------------------------------------------- */

.discovery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.discovery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.discovery__item-image {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
}

.discovery__item:hover .discovery__item-image {
  transform: scale(1.06);
}

.discovery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 36, 32, 0.1) 0%, rgba(44, 36, 32, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--duration-medium) var(--ease-out);
}

.discovery__item:hover .discovery__item-overlay {
  opacity: 1;
}

.discovery__item-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.4;
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  line-height: 1;
}

.discovery__item-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-light);
  margin-bottom: 4px;
}

.discovery__item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
}

.discovery__item-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-top: var(--space-xs);
}

.discovery__item-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.discovery__item:hover .discovery__item-link svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   17. TESTIMONIALS
   -------------------------------------------------------------------------- */

.testimonials {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background-color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration-medium) var(--ease-out);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
  color: var(--warm-yellow);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__text::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--sage-light);
  margin-right: 4px;
  line-height: 0;
  vertical-align: -0.3em;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage-muted);
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

/* --------------------------------------------------------------------------
   18. STATS COUNTER
   -------------------------------------------------------------------------- */

.stats {
  background: var(--dark-bg-gradient);
  position: relative;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--terracotta-soft);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stats__label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   19. TWO-COLUMN PROMO SECTION
   -------------------------------------------------------------------------- */

.promo {
  background-color: var(--bg-soft);
  position: relative;
}

.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-md);
  align-items: stretch;
}

.promo__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.promo__card--steps {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.promo__card--cta {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 60%, var(--sage-light) 100%);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.promo__card--cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promo__card--cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promo__card--cta .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.promo__card--cta .eyebrow::before {
  background-color: rgba(255, 255, 255, 0.4);
}

.promo__card--cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.promo__card--cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.promo__card--cta .btn {
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.promo__step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}

.promo__step:last-child {
  border-bottom: none;
}

.promo__step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--sage-muted);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.promo__step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.promo__step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.promo__card--steps .eyebrow {
  margin-bottom: var(--space-md);
}

.promo__card--steps h3 {
  margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   20. INSTAGRAM GRID
   -------------------------------------------------------------------------- */

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

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

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

.instagram__item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(92, 115, 80, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-medium) var(--ease-out);
}

.instagram__item:hover .instagram__item-overlay {
  opacity: 1;
}

.instagram__item-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   21. NEWSLETTER
   -------------------------------------------------------------------------- */

.newsletter {
  background: linear-gradient(135deg, var(--peach-soft) 0%, var(--warm-yellow-light) 50%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(125, 148, 112, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter__content {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.newsletter__content h2 {
  margin-bottom: var(--space-xs);
}

.newsletter__content p {
  margin-bottom: var(--space-lg);
}

.newsletter__form {
  display: flex;
  gap: var(--space-xs);
  max-width: 460px;
  margin-inline: auto;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-medium);
  background-color: var(--white);
  font-size: 0.85rem;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.newsletter__input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-muted);
}

/* --------------------------------------------------------------------------
   22. FAQ
   -------------------------------------------------------------------------- */

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: start;
}

.faq__header {
  position: sticky;
  top: calc(var(--announcement-height) + var(--nav-height) + var(--space-xl));
}

.faq__header h2 {
  margin-bottom: var(--space-sm);
}

.faq__header p {
  margin-bottom: var(--space-lg);
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq__item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.faq__item.active {
  border-color: var(--sage-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background-color: var(--white);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out);
}

.faq__question:hover {
  background-color: var(--bg-soft);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--sage-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition: transform var(--duration-medium) var(--ease-spring);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
  background-color: var(--sage);
  color: var(--white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-medium) var(--ease-out);
}

.faq__answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   23. FINAL CTA
   -------------------------------------------------------------------------- */

.final-cta {
  background-color: var(--bg-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125, 148, 112, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.final-cta p {
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   24. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-2xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__brand-name span {
  color: var(--sage-light);
}

.footer__brand-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-md);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--sage-light);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage-light);
}

.footer__contact-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer__newsletter-form {
  display: flex;
  gap: 6px;
  margin-top: var(--space-sm);
}

.footer__newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.8rem;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer__newsletter-input:focus {
  border-color: var(--sage);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__newsletter-btn {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background-color: var(--sage);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color var(--duration-fast) var(--ease-out);
}

.footer__newsletter-btn:hover {
  background-color: var(--sage-deep);
}

.footer__social {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  background-color: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__payment-icon {
  width: 42px;
  height: 26px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   25. MOBILE STICKY BOTTOM BAR
   -------------------------------------------------------------------------- */

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  z-index: 999;
  padding: 0 var(--space-md);
}

.mobile-bottom-bar__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 100%;
}

.mobile-bottom-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-bottom-bar__item.active,
.mobile-bottom-bar__item:hover {
  color: var(--sage-deep);
}

.mobile-bottom-bar__item svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   26. MOBILE MENU
   -------------------------------------------------------------------------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--bg-warm);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-medium) var(--ease-out);
}

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

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--duration-fast) var(--ease-out);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
  transition: all var(--duration-medium) var(--ease-out);
}

.mobile-menu__link:nth-child(1) { transition-delay: 50ms; }
.mobile-menu__link:nth-child(2) { transition-delay: 100ms; }
.mobile-menu__link:nth-child(3) { transition-delay: 150ms; }
.mobile-menu__link:nth-child(4) { transition-delay: 200ms; }
.mobile-menu__link:nth-child(5) { transition-delay: 250ms; }
.mobile-menu__link:nth-child(6) { transition-delay: 300ms; }

.mobile-menu__link:hover {
  color: var(--sage);
}

.mobile-menu__close {
  position: absolute;
  top: calc(var(--announcement-height) + var(--space-sm));
  right: var(--space-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-primary);
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-medium) var(--ease-out);
}

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

/* --------------------------------------------------------------------------
   27. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* --------------------------------------------------------------------------
   28. SEARCH MODAL
   -------------------------------------------------------------------------- */

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--announcement-height) + var(--nav-height) + var(--space-xl));
  background-color: rgba(44, 36, 32, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-medium) var(--ease-out);
}

.search-modal.active {
  opacity: 1;
  pointer-events: all;
}

.search-modal__inner {
  width: 100%;
  max-width: 600px;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--space-lg);
  transform: translateY(-10px);
  transition: transform var(--duration-medium) var(--ease-out);
}

.search-modal.active .search-modal__inner {
  transform: translateY(0);
}

.search-modal__input-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.search-modal__input-wrapper svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-modal__input {
  flex: 1;
  font-size: 1rem;
  color: var(--text-primary);
  padding-block: var(--space-xs);
}

.search-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.search-modal__close:hover {
  background-color: var(--sage-muted);
  color: var(--sage-deep);
}

.search-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.search-modal__tag {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
}

.search-modal__tag:hover {
  border-color: var(--sage-light);
  color: var(--sage-deep);
  background-color: var(--sage-muted);
}

/* --------------------------------------------------------------------------
   29. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .why-us__grid .why-us__card {
    flex: 0 0 calc((100% - var(--space-md)) / 2);
  }

  .discovery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .discovery__grid .discovery__item:nth-child(4),
  .discovery__grid .discovery__item:nth-child(5) {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

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

  .hero {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--bg-warm);
  }

  .hero__bg {
    position: relative;
    height: 45vh;
    min-height: 300px;
    max-height: 380px;
    width: 100%;
  }

  .hero__bg img {
    object-fit: cover;
    object-position: center;
  }

  .hero__overlay {
    display: none;
  }

  .hero__ribbon {
    display: none;
  }

  .hero__content {
    padding: var(--space-xl) var(--space-md) var(--space-xl);
    text-align: center;
    max-width: 100%;
  }

  .hero__eyebrow {
    color: var(--sage);
    margin-bottom: var(--space-sm);
  }

  .hero__eyebrow::before {
    background-color: var(--sage);
  }

  .hero__title {
    color: var(--text-primary);
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    margin-bottom: var(--space-sm);
  }

  .hero__title .highlight {
    color: var(--sage);
  }

  .hero__subtitle {
    display: block;
    color: var(--text-secondary);
    margin-inline: auto;
    margin-bottom: var(--space-lg);
  }

  .hero__actions {
    justify-content: center;
  }

  .btn--light {
    color: var(--text-primary);
    border-color: var(--border-medium);
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .btn--light:hover {
    background-color: var(--sage-muted);
    border-color: var(--sage);
    color: var(--sage-deep);
  }

  .navbar__nav {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

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

  .category-card--wide { grid-column: span 2; min-height: 300px; }
  .category-card--tall { grid-column: span 1; grid-row: span 1; min-height: 300px; }
  .category-card--medium { grid-column: span 1; min-height: 240px; }
  .category-card--small { grid-column: span 1; min-height: 240px; }
  .category-card--small2 { grid-column: span 1; min-height: 240px; }

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

  .why-us__grid .why-us__card {
    flex: 0 0 calc((100% - var(--space-sm)) / 2);
  }

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

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

  .faq__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .faq__header {
    position: static;
    text-align: center;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .testimonial-card {
    flex: 0 0 320px;
  }

  .category-showcase__grid .product-card {
    flex: 0 0 calc((100% - var(--space-md)) / 2);
  }

  .category-showcase__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: clamp(3rem, 6vw, 5rem);
  }

  .why-us {
    padding-block: clamp(3rem, 6vw, 5rem);
  }

  .hero__content {
    padding-inline: var(--space-md);
    padding-block: var(--space-xl);
  }

  .hero__bg {
    height: 40vh;
    min-height: 260px;
    max-height: 320px;
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
  }

  .trust__item {
    padding: var(--space-sm);
  }

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

  .category-card--wide,
  .category-card--tall,
  .category-card--medium,
  .category-card--small,
  .category-card--small2 {
    grid-column: span 1;
    min-height: 260px;
  }

  .why-us__grid .why-us__card {
    flex: 0 0 100%;
  }

  .why-us__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-us__nav {
    align-self: flex-end;
  }

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

  .stats__item:nth-child(2)::after {
    display: none;
  }

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

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    flex: 0 0 280px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .flash-sale__countdown {
    gap: var(--space-xs);
  }

  .flash-sale__timer-box {
    min-width: 64px;
    padding: var(--space-xs) var(--space-sm);
  }

  .flash-sale__timer-number {
    font-size: 1.8rem;
  }

  .flash-sale__actions {
    flex-direction: column;
    align-items: center;
  }

  .mobile-menu__link {
    font-size: 1.5rem;
  }

  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }

  .product-card__quick-actions {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-sm);
  }

  .testimonial-card {
    flex: 0 0 260px;
  }

  .category-showcase__grid .product-card {
    flex: 0 0 calc((100% - var(--space-sm)) / 2);
  }

  .category-showcase__header .btn {
    width: 100%;
  }

  .category-showcase__header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .category-showcase__nav {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero__title {
    font-size: 2rem;
  }

  .hero__content {
    padding-block: var(--space-lg);
  }

  .hero__bg {
    height: 35vh;
    min-height: 220px;
    max-height: 280px;
  }

  .section {
    padding-block: clamp(2.5rem, 6vw, 4rem);
  }

  .why-us {
    padding-block: clamp(2.5rem, 6vw, 4rem);
  }

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

  .trust__item {
    flex-direction: row;
    text-align: left;
    gap: var(--space-sm);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card__body {
    padding: var(--space-xs);
  }

  .product-card__title {
    font-size: 0.9rem;
  }

  .product-card__price-current {
    font-size: 1rem;
  }

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

  .category-card--wide,
  .category-card--tall,
  .category-card--medium,
  .category-card--small,
  .category-card--small2 {
    grid-column: span 1;
    min-height: 180px;
  }

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

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

  .stats__item::after {
    display: none;
  }

  .promo__card--cta {
    padding: var(--space-xl);
  }

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

  .flash-sale__timer-box {
    min-width: 50px;
    padding: var(--space-xs);
  }

  .flash-sale__timer-number {
    font-size: 1.5rem;
  }

  .products-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-xs);
  }

  .products-filter::-webkit-scrollbar {
    display: none;
  }

  .products-filter__pill {
    flex-shrink: 0;
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .brands__item {
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-sm);
    margin-inline: var(--space-xs);
  }

  .product-card__wa {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .mobile-bottom-bar__item {
    font-size: 0.55rem;
    letter-spacing: 0.03em;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }

  .category-showcase__grid .product-card {
    flex: 0 0 calc(100% - var(--space-lg));
  }

  .category-showcase__header {
    margin-bottom: var(--space-lg);
  }

  .cta-section__actions {
    flex-direction: column;
  }

  .cta-section__actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   30. UTILITY CLASSES
   -------------------------------------------------------------------------- */

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Spacing */
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mx-auto { margin-inline: auto; }

/* Width/Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-narrow { max-width: var(--container-narrow); }

/* Border radius */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-10 { z-index: 10; }

/* Transitions */
.transition-all { transition: all var(--duration-medium) var(--ease-out); }
.transition-fast { transition: all var(--duration-fast) var(--ease-out); }
.transition-slow { transition: all var(--duration-slow) var(--ease-out); }

/* Glass effects */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass--dark {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Visibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Display on mobile only */
.hide-desktop { display: none; }

@media (max-width: 1024px) {
  .hide-desktop { display: block; }
  .hide-mobile { display: none !important; }
}

/* --------------------------------------------------------------------------
   31. LOADING SKELETON
   -------------------------------------------------------------------------- */

.skeleton {
  position: relative;
  overflow: hidden;
  background-color: var(--beige-muted);
  border-radius: var(--radius-sm);
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  animation: shimmer 1.8s ease-in-out infinite;
}

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

.skeleton--text {
  height: 14px;
  width: 80%;
}

.skeleton--title {
  height: 24px;
  width: 60%;
}

.skeleton--avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.skeleton--image {
  aspect-ratio: 1;
  width: 100%;
}

/* --------------------------------------------------------------------------
   32. COUNTER ANIMATION
   -------------------------------------------------------------------------- */

@keyframes counter-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.counter-animate {
  animation: counter-pulse 0.4s var(--ease-spring);
}

/* --------------------------------------------------------------------------
   33. PAGE TRANSITIONS
   -------------------------------------------------------------------------- */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

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

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

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

.page-enter {
  animation: fadeIn var(--duration-medium) var(--ease-out);
}

.page-exit {
  animation: fadeOut var(--duration-medium) var(--ease-out);
}

/* --------------------------------------------------------------------------
   34. WHATSAPP FLOAT
   -------------------------------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 998;
  transition: all var(--duration-medium) var(--ease-out);
}

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

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

@media (max-width: 1024px) {
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

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

/* --------------------------------------------------------------------------
   35. BACK TO TOP
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--dark-bg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration-medium) var(--ease-out);
}

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

.back-to-top:hover {
  background-color: var(--sage);
  transform: translateY(-3px);
}

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

@media (max-width: 1024px) {
  .back-to-top {
    bottom: 144px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* --------------------------------------------------------------------------
   36. CUSTOM SCROLLBAR
   -------------------------------------------------------------------------- */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--beige-muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--beige-muted) var(--bg-warm);
}

/* --------------------------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   40. ABOUT HETHVI
   -------------------------------------------------------------------------- */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about__content h2 {
  margin-bottom: var(--space-md);
}

.about__content em,
.why-us h2 em {
  color: var(--sage);
  font-style: italic;
}

.about__content p {
  margin-bottom: var(--space-md);
}

.about__features {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.about__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.about__feature svg {
  flex: 0 0 22px;
  color: var(--sage);
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   41. CUSTOMER REVIEWS
   -------------------------------------------------------------------------- */

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
}

.reviews__heading {
  text-align: left;
  margin: 0;
  max-width: 560px;
}

.reviews__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
  margin-top: var(--space-xl);
}

.reviews__grid::-webkit-scrollbar {
  display: none;
}

.reviews__grid .review-card {
  flex: 0 0 calc((100% - var(--space-md) * 2) / 3);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .reviews__grid .review-card {
    flex: 0 0 calc((100% - var(--space-md)) / 2);
  }
}

@media (max-width: 768px) {
  .reviews__grid {
    margin-top: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .reviews__grid .review-card {
    flex: 0 0 100%;
  }

  .reviews__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews__nav {
    align-self: flex-end;
  }
}

.review-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--duration-medium) var(--ease-out);
}

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

.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--warm-yellow);
}

.review-card__stars svg {
  fill: currentColor;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background-color: var(--sage-muted);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.review-card__author div {
  display: flex;
  flex-direction: column;
}

.review-card__author strong {
  font-size: 0.9rem;
  color: var(--text-primary);
}

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

/* --------------------------------------------------------------------------
   42. VISIT / CONTACT
   -------------------------------------------------------------------------- */

.visit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.visit__card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--duration-medium) var(--ease-out);
}

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

.visit__card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background-color: var(--sage-muted);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit__card h3 {
  font-size: 1.15rem;
}

.visit__card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   43. STORE LOCATION / MAP
   -------------------------------------------------------------------------- */

.location__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.location__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location__map {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.location__info h3 {
  margin-bottom: var(--space-xs);
}

.location__info p {
  margin-bottom: var(--space-md);
}

.location__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.location__info-item svg {
  flex: 0 0 18px;
  color: var(--sage);
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   44. RESPONSIVE: NEW SECTIONS
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__media {
    max-width: 480px;
    margin-inline: auto;
  }

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

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

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

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

  .location__map {
    height: 300px;
  }

  .location__actions .btn {
    width: 100%;
  }
}

@media print {
  .announcement,
  .navbar,
  .mobile-bottom-bar,
  .whatsapp-float,
  .back-to-top,
  .mobile-menu {
    display: none !important;
  }

  body {
    background-color: white;
    color: black;
    padding: 0;
  }

  .section {
    padding-block: 2rem;
  }
}
