/** Shopify CDN: Minification failed

Line 60:0 All "@import" rules must come first

**/
/* ============================================
   NATURAL OLIVE OIL - PREMIUM E-COMMERCE
   Dawn Theme Custom Styles
   ============================================ */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --natural-olive: #4A5D23;
  --natural-olive-dark: #3A4A1B;
  --natural-olive-light: #6B7F3A;
  --natural-gold: #C9A962;
  --natural-gold-dark: #B8954D;
  --natural-brown: #8B7355;
  
  /* Neutrals */
  --natural-white: #FFFFFF;
  --natural-cream: #FAF8F5;
  --natural-beige: #F5F0E8;
  --natural-sand: #E8E2D9;
  --natural-gray: #9A9590;
  --natural-charcoal: #4A4540;
  --natural-black: #1A1815;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-spacing: 100px;
  --section-spacing-mobile: 60px;
  
  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(26, 24, 21, 0.08);
  --shadow-medium: 0 8px 30px rgba(26, 24, 21, 0.12);
  --shadow-strong: 0 20px 50px rgba(26, 24, 21, 0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ==========================================
   GOOGLE FONTS IMPORT
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;500;600;700&display=swap');

/* ==========================================
   BASE OVERRIDES FOR DAWN
   ========================================== */
.natural-section {
  padding: var(--section-spacing) 0;
}

.natural-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.natural-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.natural-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--natural-gold);
  margin-bottom: 16px;
}

.natural-subtitle::before,
.natural-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--natural-gold);
}

.natural-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--natural-black);
  margin: 0 0 20px 0;
}

.natural-description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--natural-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   BUTTONS
   ========================================== */
.natural-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.natural-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.natural-btn:hover::before {
  left: 100%;
}

.natural-btn-primary {
  background: var(--natural-olive);
  color: var(--natural-white);
  border-color: var(--natural-olive);
}

.natural-btn-primary:hover {
  background: var(--natural-olive-dark);
  border-color: var(--natural-olive-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 93, 35, 0.3);
}

.natural-btn-secondary {
  background: transparent;
  color: var(--natural-olive);
  border-color: var(--natural-olive);
}

.natural-btn-secondary:hover {
  background: var(--natural-olive);
  color: var(--natural-white);
  transform: translateY(-3px);
}

.natural-btn-white {
  background: var(--natural-white);
  color: var(--natural-olive);
  border-color: var(--natural-white);
}

.natural-btn-white:hover {
  background: var(--natural-cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.natural-btn-gold {
  background: linear-gradient(135deg, var(--natural-gold), var(--natural-gold-dark));
  color: var(--natural-black);
  border-color: var(--natural-gold);
}

.natural-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.natural-btn-lg {
  padding: 20px 48px;
  font-size: 14px;
}

.natural-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-smooth);
}

.natural-btn:hover svg {
  transform: translateX(5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.natural-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--natural-black);
}

.natural-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.natural-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.natural-hero-slide.active {
  opacity: 1;
}

.natural-hero-slide img,
.natural-hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.natural-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 21, 0.7) 0%,
    rgba(26, 24, 21, 0.4) 50%,
    rgba(26, 24, 21, 0.6) 100%
  );
  z-index: 2;
}

.natural-hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  padding: 40px;
}

.natural-hero-content.center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.natural-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--natural-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease forwards;
}

.natural-hero-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--natural-gold);
}

.natural-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--natural-white);
  margin: 0 0 24px 0;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.natural-hero-title span {
  color: var(--natural-gold);
  font-style: italic;
}

.natural-hero-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.natural-hero-title em::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--natural-gold);
  opacity: 0.3;
  z-index: -1;
  transform: skewX(-5deg);
}

.natural-hero-description {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.natural-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.natural-hero-content.center .natural-hero-buttons {
  justify-content: center;
}

.natural-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.natural-hero-content.center .natural-hero-stats {
  justify-content: center;
}

.natural-hero-stat {
  text-align: left;
}

.natural-hero-stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--natural-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.natural-hero-stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Navigation */
.natural-hero-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.natural-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.natural-hero-dot:hover,
.natural-hero-dot.active {
  background: var(--natural-gold);
  transform: scale(1.3);
}

/* Hero Arrows */
.natural-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition-smooth);
  color: var(--natural-white);
}

.natural-hero-arrow:hover {
  background: var(--natural-white);
  color: var(--natural-olive);
  transform: translateY(-50%) scale(1.1);
}

.natural-hero-arrow svg {
  width: 24px;
  height: 24px;
}

.natural-hero-arrow-prev {
  left: 40px;
}

.natural-hero-arrow-next {
  right: 40px;
}

/* Hero Scroll Indicator */
.natural-hero-scroll {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.natural-hero-scroll-text {
  writing-mode: vertical-rl;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
}

.natural-hero-scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--natural-white), transparent);
  position: relative;
}

.natural-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--natural-gold);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  50% { opacity: 0.5; }
  100% { transform: translateY(50px); opacity: 0; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   FEATURES BAR
   ========================================== */
.natural-features {
  background: var(--natural-olive);
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.natural-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.natural-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-smooth);
}

.natural-feature-item:last-child {
  border-right: none;
}

.natural-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.natural-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.natural-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--natural-gold);
  fill: none;
  stroke-width: 1.5;
}

.natural-feature-text {
  color: var(--natural-white);
}

.natural-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.natural-feature-text p {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.natural-about {
  background: var(--natural-white);
  overflow: hidden;
}

.natural-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.natural-about-images {
  position: relative;
}

.natural-about-image-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.natural-about-image-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.natural-about-image-main:hover img {
  transform: scale(1.05);
}

.natural-about-image-secondary {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 8px solid var(--natural-white);
}

.natural-about-image-secondary img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.natural-about-badge {
  position: absolute;
  top: 40px;
  left: -40px;
  background: var(--natural-gold);
  color: var(--natural-black);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.natural-about-badge-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.natural-about-badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  display: block;
}

/* Floating Elements */
.natural-about-float {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.natural-about-float-1 {
  top: 20%;
  right: 10%;
  background: var(--natural-cream);
}

.natural-about-float-2 {
  bottom: 30%;
  left: 5%;
  background: var(--natural-beige);
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.natural-about-content {
  padding-right: 40px;
}

.natural-about-content .natural-subtitle {
  justify-content: flex-start;
}

.natural-about-content .natural-subtitle::before {
  display: none;
}

.natural-about-content .natural-title {
  text-align: left;
}

.natural-about-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--natural-charcoal);
  margin-bottom: 40px;
}

.natural-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.natural-about-feature {
  display: flex;
  gap: 16px;
}

.natural-about-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--natural-cream);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.natural-about-feature:hover .natural-about-feature-icon {
  background: var(--natural-olive);
}

.natural-about-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--natural-olive);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-smooth);
}

.natural-about-feature:hover .natural-about-feature-icon svg {
  stroke: var(--natural-white);
}

.natural-about-feature h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--natural-black);
}

.natural-about-feature p {
  font-size: 14px;
  color: var(--natural-gray);
  margin: 0;
  line-height: 1.6;
}

.natural-about-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--natural-sand);
}

.natural-about-signature-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid var(--natural-cream);
}

.natural-about-signature-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--natural-black);
}

.natural-about-signature-title {
  font-size: 14px;
  color: var(--natural-gray);
  margin: 0;
}

.natural-about-signature-sign {
  margin-left: auto;
  font-family: 'Brush Script MT', cursive;
  font-size: 32px;
  color: var(--natural-olive);
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.natural-products {
  background: var(--natural-cream);
}

.natural-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.natural-products-header .natural-section-header {
  text-align: left;
  margin-bottom: 0;
}

.natural-products-tabs {
  display: flex;
  gap: 8px;
}

.natural-products-tab {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--natural-charcoal);
  background: transparent;
  border: 2px solid var(--natural-sand);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.natural-products-tab:hover,
.natural-products-tab.active {
  background: var(--natural-olive);
  border-color: var(--natural-olive);
  color: var(--natural-white);
}

.natural-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Product Card */
.natural-product-card {
  position: relative;
  background: var(--natural-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.natural-product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.natural-product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--natural-beige);
}

.natural-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.natural-product-card:hover .natural-product-card-image img {
  transform: scale(1.08);
}

.natural-product-card-image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.natural-product-card:hover .natural-product-card-image-hover {
  opacity: 1;
}

.natural-product-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.natural-product-badge {
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
}

.natural-product-badge-new {
  background: var(--natural-olive);
  color: var(--natural-white);
}

.natural-product-badge-sale {
  background: #DC2626;
  color: var(--natural-white);
}

.natural-product-badge-bestseller {
  background: var(--natural-gold);
  color: var(--natural-black);
}

.natural-product-badge-organic {
  background: var(--natural-olive-light);
  color: var(--natural-white);
}

.natural-product-card-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(15px);
  transition: all var(--transition-smooth);
  z-index: 2;
}

.natural-product-card:hover .natural-product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.natural-product-action {
  width: 44px;
  height: 44px;
  background: var(--natural-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  color: var(--natural-charcoal);
}

.natural-product-action:hover {
  background: var(--natural-olive);
  color: var(--natural-white);
  transform: scale(1.1);
}

.natural-product-action svg {
  width: 20px;
  height: 20px;
}

.natural-product-card-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: var(--natural-olive);
  color: var(--natural-white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
  cursor: pointer;
  border: none;
  width: 100%;
}

.natural-product-card:hover .natural-product-card-quick-add {
  transform: translateY(0);
}

.natural-product-card-quick-add:hover {
  background: var(--natural-olive-dark);
}

.natural-product-card-content {
  padding: 24px;
  text-align: center;
}

.natural-product-card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--natural-gray);
  margin-bottom: 8px;
}

.natural-product-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.natural-product-card-title a {
  color: var(--natural-black);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.natural-product-card-title a:hover {
  color: var(--natural-olive);
}

.natural-product-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.natural-product-card-price-current {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--natural-olive);
}

.natural-product-card-price-compare {
  font-size: 16px;
  color: var(--natural-gray);
  text-decoration: line-through;
}

.natural-product-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.natural-product-card-stars {
  display: flex;
  gap: 2px;
}

.natural-product-card-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--natural-gold);
}

.natural-product-card-stars svg.empty {
  fill: var(--natural-sand);
}

.natural-product-card-reviews {
  font-size: 13px;
  color: var(--natural-gray);
}

.natural-product-card-sizes {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.natural-product-size {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--natural-sand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  background: transparent;
  color: var(--natural-charcoal);
}

.natural-product-size:hover,
.natural-product-size.active {
  border-color: var(--natural-olive);
  color: var(--natural-olive);
  background: rgba(74, 93, 35, 0.05);
}

.natural-products-footer {
  text-align: center;
  margin-top: 50px;
}

/* ==========================================
   BENEFITS / WHY CHOOSE US
   ========================================== */
.natural-benefits {
  background: var(--natural-olive);
  position: relative;
  overflow: hidden;
}

.natural-benefits::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.natural-benefits::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.natural-benefits .natural-subtitle {
  color: var(--natural-gold);
}

.natural-benefits .natural-title {
  color: var(--natural-white);
}

.natural-benefits .natural-description {
  color: rgba(255, 255, 255, 0.7);
}

.natural-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.natural-benefit-card {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.natural-benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
}

.natural-benefit-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all var(--transition-smooth);
}

.natural-benefit-card:hover .natural-benefit-icon {
  background: rgba(201, 169, 98, 0.2);
  transform: scale(1.1);
}

.natural-benefit-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--natural-gold);
  fill: none;
  stroke-width: 1.5;
}

.natural-benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--natural-white);
  margin: 0 0 16px 0;
}

.natural-benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.natural-process {
  background: var(--natural-white);
}

.natural-process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.natural-process-content {
  order: 2;
}

.natural-process-content .natural-section-header {
  text-align: left;
}

.natural-process-content .natural-subtitle::before {
  display: none;
}

.natural-process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.natural-process-step {
  display: flex;
  gap: 24px;
  padding: 30px;
  background: var(--natural-cream);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.natural-process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--natural-sand);
  transition: all var(--transition-smooth);
}

.natural-process-step:hover::before,
.natural-process-step.active::before {
  background: var(--natural-olive);
}

.natural-process-step:hover,
.natural-process-step.active {
  background: var(--natural-white);
  box-shadow: var(--shadow-medium);
  transform: translateX(10px);
}

.natural-process-step-number {
  width: 60px;
  height: 60px;
  background: var(--natural-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--natural-olive);
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
}

.natural-process-step:hover .natural-process-step-number,
.natural-process-step.active .natural-process-step-number {
  background: var(--natural-olive);
  color: var(--natural-white);
}

.natural-process-step h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--natural-black);
}

.natural-process-step p {
  font-size: 15px;
  color: var(--natural-gray);
  margin: 0;
  line-height: 1.6;
}

.natural-process-image {
  order: 1;
  position: relative;
}

.natural-process-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.natural-process-image-main img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.natural-process-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--natural-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
}

.natural-process-video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--natural-olive);
}

.natural-process-video-btn svg {
  width: 36px;
  height: 36px;
  fill: var(--natural-olive);
  margin-left: 5px;
  transition: fill var(--transition-smooth);
}

.natural-process-video-btn:hover svg {
  fill: var(--natural-white);
}

.natural-process-video-btn::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.natural-testimonials {
  background: var(--natural-cream);
}

.natural-testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.natural-testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
}

.natural-testimonial {
  flex: 0 0 100%;
  padding: 0 40px;
}

.natural-testimonial-content {
  background: var(--natural-white);
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  text-align: center;
  position: relative;
}

.natural-testimonial-quote {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  color: var(--natural-cream);
}

.natural-testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 30px;
}

.natural-testimonial-rating svg {
  width: 24px;
  height: 24px;
  fill: var(--natural-gold);
}

.natural-testimonial-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: italic;
  line-height: 1.6;
  color: var(--natural-charcoal);
  margin-bottom: 40px;
}

.natural-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.natural-testimonial-author-image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid var(--natural-cream);
}

.natural-testimonial-author-info {
  text-align: left;
}

.natural-testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--natural-black);
  margin: 0 0 4px 0;
}

.natural-testimonial-author-title {
  font-size: 14px;
  color: var(--natural-gray);
  margin: 0;
}

.natural-testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.natural-testimonial-btn {
  width: 56px;
  height: 56px;
  border: 2px solid var(--natural-sand);
  border-radius: var(--radius-full);
  background: var(--natural-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  color: var(--natural-charcoal);
}

.natural-testimonial-btn:hover {
  background: var(--natural-olive);
  border-color: var(--natural-olive);
  color: var(--natural-white);
}

.natural-testimonial-btn svg {
  width: 22px;
  height: 22px;
}

.natural-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.natural-testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--natural-sand);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.natural-testimonial-dot:hover,
.natural-testimonial-dot.active {
  background: var(--natural-olive);
  transform: scale(1.2);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.natural-instagram {
  padding: var(--section-spacing) 0 0;
  background: var(--natural-white);
}

.natural-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.natural-instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.natural-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.natural-instagram-item:hover img {
  transform: scale(1.1);
}

.natural-instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 93, 35, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.natural-instagram-item:hover .natural-instagram-overlay {
  opacity: 1;
}

.natural-instagram-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--natural-white);
}

.natural-instagram-overlay span {
  color: var(--natural-white);
  font-size: 14px;
  font-weight: 600;
}

/* ==========================================
   NEWSLETTER
   ========================================== */
.natural-newsletter {
  background: var(--natural-beige);
}

.natural-newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.natural-newsletter-content .natural-section-header {
  text-align: left;
  margin-bottom: 30px;
}

.natural-newsletter-content .natural-subtitle::before {
  display: none;
}

.natural-newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.natural-newsletter-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--natural-charcoal);
}

.natural-newsletter-benefit svg {
  width: 20px;
  height: 20px;
  stroke: var(--natural-olive);
  flex-shrink: 0;
}

.natural-newsletter-form-wrapper {
  background: var(--natural-white);
  padding: 50px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

.natural-newsletter-form-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--natural-black);
}

.natural-newsletter-form-subtitle {
  font-size: 15px;
  color: var(--natural-gray);
  margin: 0 0 30px 0;
}

.natural-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.natural-newsletter-input-group {
  display: flex;
  gap: 16px;
}

.natural-newsletter-input {
  flex: 1;
  padding: 18px 24px;
  font-size: 15px;
  border: 2px solid var(--natural-sand);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  font-family: var(--font-body);
}

.natural-newsletter-input:focus {
  outline: none;
  border-color: var(--natural-olive);
  box-shadow: 0 0 0 4px rgba(74, 93, 35, 0.1);
}

.natural-newsletter-input::placeholder {
  color: var(--natural-gray);
}

.natural-newsletter-submit {
  padding: 18px 40px;
  background: var(--natural-olive);
  color: var(--natural-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: var(--font-body);
}

.natural-newsletter-submit:hover {
  background: var(--natural-olive-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.natural-newsletter-terms {
  font-size: 13px;
  color: var(--natural-gray);
  margin-top: 10px;
}

.natural-newsletter-terms a {
  color: var(--natural-olive);
  text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */
.natural-footer {
  background: var(--natural-black);
  color: var(--natural-white);
  padding: 80px 0 0;
}

.natural-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.natural-footer-brand {
  padding-right: 40px;
}

.natural-footer-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--natural-white);
  margin-bottom: 8px;
}

.natural-footer-logo span {
  color: var(--natural-gold);
}

.natural-footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 24px;
}

.natural-footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.natural-footer-social {
  display: flex;
  gap: 12px;
}

.natural-footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--natural-white);
  transition: all var(--transition-smooth);
}

.natural-footer-social a:hover {
  background: var(--natural-olive);
  border-color: var(--natural-olive);
  transform: translateY(-3px);
}

.natural-footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.natural-footer-column h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--natural-white);
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.natural-footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.natural-footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.natural-footer-links a:hover {
  color: var(--natural-gold);
  transform: translateX(5px);
}

.natural-footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.natural-footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--natural-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.natural-footer-contact-item span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.natural-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.natural-footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.natural-footer-payments {
  display: flex;
  align-items: center;
  gap: 16px;
}

.natural-footer-payments img {
  height: 28px;
  opacity: 0.7;
  transition: opacity var(--transition-smooth);
}

.natural-footer-payments img:hover {
  opacity: 1;
}

.natural-footer-legal {
  display: flex;
  gap: 24px;
}

.natural-footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.natural-footer-legal a:hover {
  color: var(--natural-gold);
}

/* ==========================================
   CART DRAWER
   ========================================== */
.natural-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 21, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(5px);
}

.natural-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.natural-cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  background: var(--natural-white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  box-shadow: var(--shadow-strong);
}

.natural-cart-drawer.active {
  right: 0;
}

.natural-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--natural-sand);
}

.natural-cart-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: var(--natural-black);
}

.natural-cart-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: none;
  background: var(--natural-cream);
  cursor: pointer;
  transition: all var(--transition-smooth);
  color: var(--natural-charcoal);
}

.natural-cart-close:hover {
  background: var(--natural-olive);
  color: var(--natural-white);
}

.natural-cart-close svg {
  width: 20px;
  height: 20px;
}

.natural-cart-shipping-bar {
  padding: 16px 24px;
  background: var(--natural-cream);
  text-align: center;
}

.natural-cart-shipping-progress {
  height: 6px;
  background: var(--natural-sand);
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  overflow: hidden;
}

.natural-cart-shipping-progress-bar {
  height: 100%;
  background: var(--natural-olive);
  border-radius: var(--radius-full);
  transition: width var(--transition-smooth);
}

.natural-cart-shipping-text {
  font-size: 14px;
  color: var(--natural-charcoal);
}

.natural-cart-shipping-text strong {
  color: var(--natural-olive);
}

.natural-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.natural-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--natural-sand);
}

.natural-cart-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.natural-cart-item-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--natural-cream);
}

.natural-cart-item-image img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.natural-cart-item-details {
  display: flex;
  flex-direction: column;
}

.natural-cart-item-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--natural-black);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color var(--transition-smooth);
}

.natural-cart-item-title:hover {
  color: var(--natural-olive);
}

.natural-cart-item-variant {
  font-size: 13px;
  color: var(--natural-gray);
  margin-bottom: auto;
}

.natural-cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.natural-cart-item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--natural-sand);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.natural-cart-item-quantity button {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition-smooth);
  color: var(--natural-charcoal);
}

.natural-cart-item-quantity button:hover {
  background: var(--natural-cream);
}

.natural-cart-item-quantity span {
  width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.natural-cart-item-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--natural-olive);
}

.natural-cart-item-remove {
  font-size: 12px;
  color: var(--natural-gray);
  text-decoration: underline;
  cursor: pointer;
  border: none;
  background: none;
  margin-top: 8px;
  padding: 0;
  transition: color var(--transition-smooth);
}

.natural-cart-item-remove:hover {
  color: #DC2626;
}

.natural-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

.natural-cart-empty svg {
  width: 80px;
  height: 80px;
  stroke: var(--natural-sand);
  margin-bottom: 24px;
}

.natural-cart-empty p {
  font-size: 18px;
  color: var(--natural-gray);
  margin-bottom: 24px;
}

.natural-cart-footer {
  padding: 24px;
  background: var(--natural-cream);
}

.natural-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.natural-cart-subtotal span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--natural-black);
}

.natural-cart-subtotal span:last-child {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--natural-olive);
}

.natural-cart-note {
  font-size: 13px;
  color: var(--natural-gray);
  text-align: center;
  margin-bottom: 20px;
}

.natural-cart-footer .natural-btn {
  width: 100%;
  margin-bottom: 12px;
}

.natural-cart-footer .natural-btn:last-child {
  margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1200px) {
  .natural-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .natural-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .natural-footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .natural-footer-brand {
    grid-column: span 3;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 80px;
  }
  
  .natural-hero-arrow {
    display: none;
  }
  
  .natural-hero-stats {
    gap: 30px;
  }
  
  .natural-hero-stat-number {
    font-size: 36px;
  }
  
  .natural-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .natural-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .natural-feature-item:nth-child(2n) {
    border-right: none;
  }
  
  .natural-feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .natural-about-wrapper,
  .natural-process-wrapper,
  .natural-newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .natural-about-content,
  .natural-process-content {
    padding-right: 0;
    text-align: center;
  }
  
  .natural-about-content .natural-subtitle,
  .natural-process-content .natural-subtitle {
    justify-content: center;
  }
  
  .natural-about-content .natural-subtitle::after {
    display: block;
  }
  
  .natural-about-image-secondary {
    right: 20px;
    bottom: -40px;
    width: 220px;
  }
  
  .natural-about-badge {
    left: 20px;
    top: 30px;
    padding: 24px;
  }
  
  .natural-about-badge-number {
    font-size: 44px;
  }
  
  .natural-process-content {
    order: 1;
  }
  
  .natural-process-image {
    order: 2;
  }
  
  .natural-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .natural-products-header {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .natural-products-header .natural-section-header {
    text-align: center;
  }
  
  .natural-products-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
  }
  
  .natural-hero {
    min-height: 100svh;
  }
  
  .natural-hero-content {
    padding: 24px;
    text-align: center;
  }
  
  .natural-hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  
  .natural-hero-buttons {
    justify-content: center;
  }
  
  .natural-hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  
  .natural-hero-stat {
    flex: 0 0 calc(50% - 12px);
    text-align: center;
  }
  
  .natural-hero-scroll {
    display: none;
  }
  
  .natural-features-grid {
    grid-template-columns: 1fr;
  }
  
  .natural-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .natural-feature-item:last-child {
    border-bottom: none;
  }
  
  .natural-about-features {
    grid-template-columns: 1fr;
  }
  
  .natural-about-signature {
    flex-direction: column;
    text-align: center;
  }
  
  .natural-about-signature-sign {
    margin-left: 0;
    margin-top: 16px;
  }
  
  .natural-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .natural-benefit-card {
    padding: 40px 24px;
  }
  
  .natural-instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .natural-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .natural-footer-brand {
    grid-column: span 2;
  }
  
  .natural-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .natural-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .natural-newsletter-input-group {
    flex-direction: column;
  }
  
  .natural-cart-drawer {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .natural-products-grid {
    grid-template-columns: 1fr;
  }
  
  .natural-products-tabs {
    width: 100%;
  }
  
  .natural-products-tab {
    flex: 1;
    text-align: center;
  }
  
  .natural-testimonial-content {
    padding: 40px 24px;
  }
  
  .natural-testimonial-text {
    font-size: 20px;
  }
  
  .natural-footer-top {
    grid-template-columns: 1fr;
  }
  
  .natural-footer-brand {
    grid-column: span 1;
  }
  
  .natural-newsletter-form-wrapper {
    padding: 30px 24px;
  }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.natural-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.natural-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.natural-fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.natural-fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.natural-fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.natural-fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.natural-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.natural-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation */
.natural-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.natural-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.natural-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.natural-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.natural-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.natural-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.natural-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

.natural-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}