:root {
  --color-primary: #8B6F4E;
  --color-primary-dark: #6B4F2E;
  --color-primary-light: #A8896C;
  --color-secondary: #D4B896;
  --color-accent: #C4783E;
  --color-accent-hover: #A8602A;
  --color-bg: #FAF7F2;
  --color-bg-alt: #F0EBE3;
  --color-bg-dark: #2C2218;
  --color-text: #3A2F25;
  --color-text-light: #6B5E50;
  --color-text-on-dark: #F0EBE3;
  --color-white: #FFFFFF;
  --color-border: #E0D6CA;
  --color-success: #5A8C5A;
  --color-warning: #D4A04A;
  --color-star: #D4A04A;
  --color-shadow: rgba(58, 47, 37, 0.08);
  --color-shadow-lg: rgba(58, 47, 37, 0.14);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-primary-dark);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

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

.section-title {
  font-size: 1.85rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(196, 120, 62, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196, 120, 62, 0.4);
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: rgba(250, 247, 242, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  box-shadow: 0 2px 20px var(--color-shadow);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

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

.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 {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 60%, var(--color-secondary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 184, 150, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(139, 111, 78, 0.1);
  border: 1px solid rgba(139, 111, 78, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

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

.hero-cta {
  margin-bottom: 24px;
}

.hero-proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.hero-proof-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-star);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--color-shadow-lg);
  aspect-ratio: 4/3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(139, 111, 78, 0.1);
  pointer-events: none;
}

.products {
  padding: 80px 0;
  background: var(--color-bg);
}

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

.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

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

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: var(--transition);
  border: 1px solid rgba(224, 214, 202, 0.5);
}

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

.product-card.hidden {
  display: none;
}

.product-card.filtering {
  animation: fadeScale 0.4s ease forwards;
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-bestseller {
  background: var(--color-accent);
  color: var(--color-white);
}

.badge-popular {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
}

.badge-instock {
  background: rgba(90, 140, 90, 0.15);
  color: var(--color-success);
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-light);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

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

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-star);
}

.stars svg.empty {
  fill: var(--color-border);
}

.rating-count {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.stock-dot.high { background: var(--color-success); }
.stock-dot.medium { background: var(--color-warning); }

.product-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.product-desc.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--color-accent-hover);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.spec-tag {
  padding: 3px 10px;
  background: var(--color-bg-alt);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.product-actions {
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.btn-check-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-check-price:hover {
  box-shadow: 0 4px 15px rgba(196, 120, 62, 0.35);
  transform: translateY(-1px);
}

.btn-check-price svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

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

.btn-view-all {
  padding: 14px 40px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.btn-view-all:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--color-shadow-lg);
}

.benefits {
  padding: 80px 0;
  background: var(--color-bg-alt);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: var(--transition);
  border: 1px solid rgba(224, 214, 202, 0.3);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--color-shadow-lg);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(196, 120, 62, 0.1), rgba(212, 184, 150, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

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

.about {
  padding: 80px 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.85rem;
  margin-bottom: 20px;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  border-radius: 2px;
  margin-top: 10px;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

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

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

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 600;
  margin-top: 2px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--color-shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(139, 111, 78, 0.1);
  pointer-events: none;
}

.reviews {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1px solid rgba(224, 214, 202, 0.3);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: 0 6px 20px var(--color-shadow-lg);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
}

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

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-success);
  margin-top: 2px;
}

.verified-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--color-success);
}

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

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--color-star);
}

.review-product {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.comparison {
  padding: 80px 0;
  background: var(--color-bg);
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--color-white);
}

.comparison-table thead th {
  padding: 18px 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--color-border);
  color: var(--color-primary-dark);
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.highlight {
  background: linear-gradient(135deg, rgba(196, 120, 62, 0.08), rgba(212, 184, 150, 0.12));
  color: var(--color-accent);
}

.comparison-table tbody td {
  padding: 14px 16px;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
}

.comparison-table tbody td.highlight {
  background: rgba(196, 120, 62, 0.04);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.check-icon {
  color: var(--color-success);
  font-size: 1.1rem;
  font-weight: 700;
}

.cross-icon {
  color: #c0392b;
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--color-shadow);
  aspect-ratio: 4/3;
  background: var(--color-bg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 34, 24, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-caption {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 34, 24, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.faq {
  padding: 80px 0;
  background: var(--color-bg);
}

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

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

.faq-item.active {
  border-color: var(--color-primary-light);
  box-shadow: 0 2px 12px var(--color-shadow);
}

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

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--color-primary-light);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

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

.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.footer {
  background: var(--color-bg-dark);
  padding: 60px 0 0;
  color: var(--color-text-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  color: var(--color-text-on-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(240, 235, 227, 0.6);
  line-height: 1.6;
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.footer-nav a {
  display: block;
  font-size: 0.88rem;
  color: rgba(240, 235, 227, 0.6);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240, 235, 227, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(240, 235, 227, 0.1);
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(240, 235, 227, 0.7);
  transition: var(--transition);
}

.social-link:hover svg {
  fill: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(240, 235, 227, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(240, 235, 227, 0.45);
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(240, 235, 227, 0.45);
  transition: var(--transition);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(44, 34, 24, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(240, 235, 227, 0.1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(240, 235, 227, 0.75);
  flex: 1;
  min-width: 200px;
}

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

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

.cookie-decline {
  background: rgba(240, 235, 227, 0.1);
  color: rgba(240, 235, 227, 0.7);
  border: 1px solid rgba(240, 235, 227, 0.15);
}

.cookie-decline:hover {
  background: rgba(240, 235, 227, 0.15);
}

.privacy-page {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

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

.privacy-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.privacy-content h2 {
  font-size: 1.35rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.privacy-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.privacy-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.privacy-updated {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .hamburger {
    display: none;
  }

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

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

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

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

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

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

  .hero h1 {
    font-size: 2.5rem;
  }

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

@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px var(--color-shadow);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 50vh;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 30px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-image {
    max-height: 200px;
  }

  .hero-proof {
    gap: 12px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

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

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .hero h1 {
    font-size: 3rem;
  }
}
