/* ========================================
   NATURAL GLOW HAIR — Global Stylesheet
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --cream: #FAF7F2;
  --beige: #E8DDD0;
  --beige-dark: #D4C4B0;
  --brown-light: #C4A882;
  --brown: #8B6F5E;
  --brown-dark: #5C3D2E;
  --text-dark: #3D2B1F;
  --text-mid: #6B4F3F;
  --text-light: #9C7E70;
  --sage: #7D8C75;
  --sage-light: #A8B5A0;
  --sage-dark: #5A6854;
  --gold: #C4A882;
  --gold-dark: #A0845E;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(61, 43, 31, 0.08);
  --shadow-medium: 0 8px 40px rgba(61, 43, 31, 0.12);
  --shadow-strong: 0 16px 60px rgba(61, 43, 31, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: 'Lato', sans-serif;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
}

.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--beige);
}

.section-dark {
  background-color: var(--text-dark);
}

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

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

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--brown);
  color: var(--cream);
  border: 2px solid var(--brown);
}

.btn-primary:hover {
  background-color: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 111, 94, 0.35);
}

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

.btn-secondary:hover {
  background-color: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-sage {
  background-color: var(--sage);
  color: var(--cream);
  border: 2px solid var(--sage);
}

.btn-sage:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 140, 117, 0.35);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--text-dark);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
  padding: 18px 44px;
  font-size: 0.9rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--cream);
  border-bottom: 1px solid var(--beige);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(61, 43, 31, 0.06);
}

.navbar.scrolled {
  box-shadow: var(--shadow-medium);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  line-height: 1;
  gap: 3px;
}

.nav-logo-glowwa {
  font-family: 'Lato', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.nav-logo-stockist {
  font-family: 'Lato', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-left: 6px;
}

.nav-logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brown);
  transition: width 0.3s ease;
}

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

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

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

.nav-cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-cart-btn:hover {
  background-color: var(--beige);
  color: var(--brown);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cream);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.mobile-nav.open {
  transform: translateX(0);
  display: flex;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-dark);
}

.mobile-nav a:hover {
  color: var(--brown);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #F0E8DC 50%, var(--beige) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196, 168, 130, 0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(125, 140, 117, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 60% 80%, rgba(139, 111, 94, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-text {
  animation: fadeInLeft 0.9s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(196, 168, 130, 0.2);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196, 168, 130, 0.3);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-title em {
  font-style: italic;
  color: var(--brown);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.9s ease 0.2s both;
}

.hero-image-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 40%, rgba(250, 247, 242, 0.95), rgba(232, 221, 208, 0.6));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
}

.hero-product-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transform: translateY(-10px);
  filter: drop-shadow(0 20px 40px rgba(61, 43, 31, 0.2));
  transition: transform 0.5s ease;
}

.hero-product-img:hover {
  transform: translateY(-18px);
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.hero-badge-1 {
  top: 12%;
  right: -8%;
  animation-delay: 0s;
}

.hero-badge-2 {
  bottom: 18%;
  left: -8%;
  animation-delay: 1.5s;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  background-color: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  line-height: 1.3;
}

.hero-badge-sub {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.68rem;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  background-color: var(--text-dark);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--beige);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(232, 221, 208, 0.2);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--sage);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.product-card-badge.badge-gold {
  background-color: var(--gold);
  color: var(--text-dark);
}

.product-card-badge.badge-meno {
  background-color: var(--brown);
  color: var(--cream);
}

.product-card-img {
  background: linear-gradient(135deg, var(--cream), var(--beige));
  padding: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img img {
  width: 75%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 8px 20px rgba(61, 43, 31, 0.12));
}

.product-card:hover .product-card-img img {
  transform: scale(1.06) translateY(-4px);
}

.product-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-range {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  font-size: 0.75rem;
  color: var(--gold);
}

.star-rating {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 700;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 1rem;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 700;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.price-per {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ========================================
   WHY GLOWWA SECTION
   ======================================== */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-bottom-color: var(--brown);
}

.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ========================================
   INGREDIENT SECTION
   ======================================== */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--beige);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--beige-dark);
}

.ingredient-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--beige), var(--cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.ingredient-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.ingredient-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--beige);
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--beige-dark);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--beige), var(--brown-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ========================================
   AWARDS SECTION
   ======================================== */
.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--beige);
}

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

.award-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}

.award-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.award-org {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ========================================
   GALLERY STRIP
   ======================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--beige), var(--beige-dark));
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(61, 43, 31, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(61, 43, 31, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.gallery-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 50%, var(--sage-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.newsletter-section h2,
.newsletter-section p {
  color: var(--cream);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 2rem auto 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-submit {
  padding: 16px 28px;
  background-color: var(--brown);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background-color: var(--brown-dark);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--text-dark);
  padding: 72px 0 0;
  color: var(--beige);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 6px;
  line-height: 1.3;
}

.footer-brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(232, 221, 208, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  background-color: rgba(232, 221, 208, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(232, 221, 208, 0.7);
  transition: var(--transition);
}

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

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(232, 221, 208, 0.7);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-newsletter-input {
  padding: 12px 18px;
  background: rgba(232, 221, 208, 0.08);
  border: 1px solid rgba(232, 221, 208, 0.15);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter-input::placeholder {
  color: rgba(232, 221, 208, 0.4);
}

.footer-newsletter-input:focus {
  border-color: rgba(196, 168, 130, 0.4);
  background: rgba(232, 221, 208, 0.12);
}

.footer-newsletter-btn {
  padding: 12px 18px;
  background-color: var(--brown);
  color: var(--cream);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.footer-newsletter-btn:hover {
  background-color: var(--gold);
  color: var(--text-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 221, 208, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(232, 221, 208, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(232, 221, 208, 0.5);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--beige);
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(125, 140, 117, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--brown);
}

.breadcrumb i {
  font-size: 0.6rem;
}

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

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

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

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-loaded .animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ========================================
   BASKET SIDEBAR
   ======================================== */
.basket-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.basket-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.basket-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: var(--cream);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.basket-sidebar.open {
  right: 0;
}

.basket-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.basket-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.basket-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-mid);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.basket-close:hover {
  background: var(--beige);
  color: var(--text-dark);
}

.basket-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.basket-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.basket-empty i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.4;
}

.basket-empty p {
  font-size: 0.9rem;
}

.basket-item {
  display: flex;
  gap: 1rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--beige);
  align-items: center;
}

.basket-item-img {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
  padding: 6px;
}

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

.basket-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.basket-item-price {
  font-size: 0.88rem;
  color: var(--brown);
  font-weight: 700;
}

.basket-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  background: var(--beige);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-dark);
}

.qty-btn:hover {
  background: var(--beige-dark);
}

.qty-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 20px;
  text-align: center;
}

.basket-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px;
  transition: var(--transition);
}

.basket-item-remove:hover {
  color: #c0392b;
}

.basket-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--beige);
  background: var(--white);
}

.basket-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.basket-subtotal-label {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.basket-subtotal-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 700;
}

.basket-delivery-note {
  font-size: 0.78rem;
  color: var(--sage);
  margin-bottom: 1.2rem;
  text-align: center;
}

.basket-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}

.basket-checkout-btn:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 111, 94, 0.3);
}

.basket-continue {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.basket-continue:hover {
  color: var(--brown);
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--text-dark);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-strong);
  max-width: 320px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast i {
  color: var(--sage-light);
  font-size: 1rem;
}

/* ========================================
   DIVIDERS & DECORATIVE ELEMENTS
   ======================================== */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brown-light), var(--sage));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.divider-left {
  margin: 0 0 1.5rem;
}

.leaf-decor {
  font-size: 1.2rem;
  opacity: 0.3;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139, 111, 94, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item {
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--white);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--beige-dark);
}

.faq-question {
  padding: 22px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question.active {
  color: var(--brown);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--brown);
  transition: var(--transition);
}

.faq-question.active .faq-icon {
  background: var(--brown);
  color: var(--cream);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-main-img {
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-medium);
}

.product-main-img img {
  width: 75%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(61, 43, 31, 0.15));
  transition: transform 0.4s ease;
}

.product-main-img:hover img {
  transform: scale(1.05) translateY(-5px);
}

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
}

.product-thumb {
  width: 72px;
  height: 72px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--brown);
}

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

.product-info {
  padding-top: 1rem;
}

.product-range-badge {
  display: inline-block;
  background: var(--beige);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.product-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.review-count {
  font-size: 0.85rem;
  color: var(--text-light);
  border-left: 1px solid var(--beige-dark);
  padding-left: 1rem;
}

.product-price-display {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.product-price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.product-benefits {
  margin-bottom: 1.8rem;
}

.product-benefits h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--beige);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 22px;
  height: 22px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--cream);
  flex-shrink: 0;
}

.product-add-section {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-add-btn {
  flex: 1;
  min-width: 200px;
}

.product-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.product-tag i {
  color: var(--sage);
}

.product-details-tabs {
  border-top: 1.5px solid var(--beige);
  padding-top: 2rem;
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--beige);
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

.tab-btn:hover:not(.active) {
  color: var(--text-mid);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.ingredient-pill {
  background: var(--beige);
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ========================================
   RESULTS PAGE
   ======================================== */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-banner-item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
}

.stat-banner-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(232, 221, 208, 0.2);
}

.stat-banner-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-banner-label {
  font-size: 0.9rem;
  color: rgba(232, 221, 208, 0.8);
  line-height: 1.5;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--beige);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--beige-dark);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--beige), var(--cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1100px) {
  .ingredient-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 60px 24px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

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

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    position: static;
  }

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

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

  .stat-banner-item:nth-child(2)::after {
    display: none;
  }

  .stat-banner-item:nth-child(1),
  .stat-banner-item:nth-child(2) {
    border-bottom: 1px solid rgba(232, 221, 208, 0.2);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

  .trust-bar-inner {
    gap: 1.2rem;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    font-size: 0.7rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: visible;
    gap: 0.5rem;
  }

  .newsletter-input {
    border-radius: var(--radius-md);
    padding: 14px 20px;
  }

  .newsletter-submit {
    border-radius: var(--radius-md);
    padding: 14px 20px;
  }

  .basket-sidebar {
    width: 100%;
    right: -100%;
  }

  .hero-badge {
    display: none;
  }
}

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

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

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

  .stats-banner {
    grid-template-columns: 1fr 1fr;
  }

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