@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #5C3D2E;
  --color-primary-light: #7A5A4A;
  --color-primary-dark: #3E2518;
  --color-secondary: #2E7D52;
  --color-secondary-light: #3A9966;
  --color-accent: #C08B3E;
  --color-accent-light: #D4A85C;
  --color-bg: #FFFBF5;
  --color-bg-alt: #F5EFE6;
  --color-bg-dark: #2C1A0E;
  --color-text: #2C1A0E;
  --color-text-light: #6B5744;
  --color-text-muted: #9A8B7A;
  --color-border: #E5DDD2;
  --color-card: #FFFFFF;
  --color-white: #FFFFFF;
  --font-heading: 'Lora', serif;
  --font-body: 'Raleway', sans-serif;
  --shadow-sm: 0 1px 3px rgba(44, 26, 14, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 26, 14, 0.1);
  --shadow-lg: 0 8px 30px rgba(44, 26, 14, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

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

a:hover { color: var(--color-accent); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

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

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 245, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 251, 245, 0.97);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo:hover { color: var(--color-primary-dark); }

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

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

.nav-cta {
  padding: 10px 22px;
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--color-accent-light);
  color: var(--color-white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-primary-dark);
  transition: all var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: linear-gradient(135deg, rgba(92, 61, 46, 0.88), rgba(192, 139, 62, 0.65));
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { color: var(--color-white); }

.hero-text h1 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 24px;
  opacity: 0.92;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

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

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

section {
  padding: 60px 20px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

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

.section-title p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  animation: fadeInUp 0.4s ease forwards;
}

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

.product-card-image {
  position: relative;
  padding: 16px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

.stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.stock-badge.in-stock {
  background: #DEF7EC;
  color: #046C4E;
}

.stock-badge.low-stock {
  background: #FEF3C7;
  color: #92400E;
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.product-description.expanded {
  max-height: 500px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
  font-family: var(--font-body);
}

.product-card-footer {
  padding: 0 20px 20px;
}

.product-card-footer .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
}

.categories-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.categories-bar a {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: all var(--transition);
}

.categories-bar a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.view-all-wrap {
  text-align: center;
  margin-top: 32px;
}

.benefits-section {
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(44, 26, 14, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.benefit-card h3 { margin-bottom: 10px; }

.benefit-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.how-it-works {
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, rgba(44, 26, 14, 0.04) 0, rgba(44, 26, 14, 0.04) 1px, transparent 1px, transparent 16px);
  pointer-events: none;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.step-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-top: 30px;
  flex-shrink: 0;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-preview-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about-preview-text h2 { margin-bottom: 16px; }

.about-preview-text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.about-stat {
  text-align: center;
  padding: 16px 8px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.about-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.about-stat .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--color-card);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

.review-product {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.review-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #DEF7EC;
  color: #046C4E;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 8px;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.who-for-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.who-for-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.who-for-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-for-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
}

.who-for-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.who-for-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.expert-section {
  max-width: 900px;
  margin: 0 auto;
}

.expert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: var(--color-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
}

.expert-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.expert-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
}

.expert-name {
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1rem;
}

.expert-title {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.faq-section {
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(44, 26, 14, 0.03) 0, rgba(44, 26, 14, 0.03) 1px, transparent 1px, transparent 8px),
              repeating-linear-gradient(90deg, rgba(44, 26, 14, 0.03) 0, rgba(44, 26, 14, 0.03) 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--color-card);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.blog-section {
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(44, 26, 14, 0.04) 1px, transparent 1px),
                    radial-gradient(circle, rgba(44, 26, 14, 0.03) 2px, transparent 2px);
  background-size: 16px 16px, 32px 32px;
  background-position: 0 0, 8px 8px;
  pointer-events: none;
}

.blog-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.blog-card-body {
  padding: 22px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}

.blog-read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(44, 26, 14, 0.8));
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 500;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 26, 14, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: var(--color-white);
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
}

.newsletter-section {
  background: var(--color-accent);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.newsletter-content h2 {
  color: var(--color-white);
  margin-bottom: 10px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-height: 44px;
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.newsletter-form button:hover {
  background: var(--color-primary);
}

.newsletter-fine {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

.newsletter-success {
  display: none;
  color: var(--color-white);
  font-weight: 600;
  padding: 16px;
}

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  background: var(--color-accent);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--color-accent); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p { margin-bottom: 6px; }

.affiliate-disclosure {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1500;
  font-size: 0.88rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

.cookie-banner a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.cookie-banner button {
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  min-height: 44px;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--color-accent);
  color: var(--color-white);
}

.cookie-decline {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.cookie-accept:hover { background: var(--color-accent-light); }
.cookie-decline:hover { background: rgba(255, 255, 255, 0.25); }

.page-hero {
  padding: 120px 20px 40px;
  background: var(--color-bg-alt);
  text-align: center;
}

.page-hero h1 { margin-bottom: 8px; }

.back-link {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.back-link:hover { color: var(--color-accent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-card);
  transition: border-color var(--transition);
  min-height: 44px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 24px;
  background: #DEF7EC;
  border-radius: var(--radius);
  color: #046C4E;
  font-weight: 600;
  text-align: center;
}

.contact-info-block {
  padding: 32px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

.contact-info-block h3 {
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-story {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.about-story-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about-story p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.about-mission {
  padding: 48px 20px;
}

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

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-card h3 { margin: 14px 0 10px; }

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.terms-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
}

.terms-content h2,
.privacy-content h2 {
  margin: 32px 0 12px;
  font-size: 1.4rem;
}

.terms-content p,
.privacy-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.terms-content ul,
.privacy-content ul {
  margin: 12px 0 20px 24px;
  color: var(--color-text-light);
}

.terms-content li,
.privacy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@media (min-width: 768px) {
  section { padding: 80px 40px; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 300px; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .who-for-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu a { padding: 12px 0; font-size: 1.05rem; }
  .hero-text h1 { font-size: 2rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .benefits-grid { grid-template-columns: 1fr; max-width: 400px; }
  .steps-container { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .about-preview { grid-template-columns: 1fr; }
  .about-preview-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .who-for-grid { grid-template-columns: 1fr; }
  .expert-card { grid-template-columns: 1fr; text-align: center; }
  .expert-avatar { display: flex; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1600px) {
  .container { max-width: 1400px; }
}
