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

:root {
  --cream: #FDF6EE;
  --warm-gold: #C9A96E;
  --dusty-rose: #C4A4A4;
  --charcoal: #2A2A2A;
  --sage: #A8B5A0;
  --white: #FFFFFF;
  --off-white: #FAF7F2;
  --light-bg: #F5F0EB;
  --gold-hover: #B08A4A;
  --gold-light: rgba(201, 169, 110, 0.12);
  --rose-light: rgba(196, 164, 164, 0.1);
  --sage-light: rgba(168, 181, 160, 0.15);
  --text-primary: #2A2A2A;
  --text-secondary: #6B6560;
  --text-muted: #9A938C;
  --border: rgba(201, 169, 110, 0.2);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(42, 42, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(42, 42, 42, 0.1);
  --shadow-lg: 0 16px 50px rgba(42, 42, 42, 0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--warm-gold);
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  font-weight: 300;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(253, 246, 238, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.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);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253, 246, 238, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
}

.mobile-overlay a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
}

.mobile-overlay a:hover {
  color: var(--warm-gold);
}

.hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 50%, var(--light-bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.03"/></svg>');
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 12px;
}

.hero h1 {
  margin-bottom: 16px;
  font-weight: 700;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--warm-gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--warm-gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

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

.proof-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-image {
  display: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.products {
  padding: 80px 0;
  background: var(--off-white);
}

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

.filter-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  background: var(--white);
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--warm-gold);
  color: var(--warm-gold);
}

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

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

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

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}

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

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

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

.stars {
  color: var(--warm-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

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

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

.product-desc-full {
  display: none;
}

.product-desc.expanded .product-desc-short {
  display: none;
}

.product-desc.expanded .product-desc-full {
  display: inline;
}

.read-more-btn {
  font-size: 0.82rem;
  color: var(--warm-gold);
  font-weight: 500;
  padding: 0;
  display: inline;
  transition: color var(--transition);
}

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

.product-features {
  margin: 8px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gold-light);
  color: var(--warm-gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  margin-bottom: 14px;
  font-weight: 500;
}

.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.stock-badge.popular .stock-dot {
  background: #E8A838;
}

.btn-check-price {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  background: var(--warm-gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: auto;
}

.btn-check-price:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 42px;
  border: 2px solid var(--warm-gold);
  color: var(--warm-gold);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
}

.btn-outline:hover {
  background: var(--warm-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.benefits {
  padding: 80px 0;
  background: var(--cream);
}

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

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

.benefit-card:hover {
  border-color: var(--warm-gold);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-light);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--warm-gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
}

.about {
  padding: 80px 0;
  background: var(--off-white);
}

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

.about-text h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--warm-gold);
}

.about-text p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

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

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--warm-gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

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

.reviews {
  padding: 80px 0;
  background: var(--cream);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: var(--transition);
}

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

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

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-badge {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.review-stars {
  color: var(--warm-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

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

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

.compare {
  padding: 80px 0;
  background: var(--off-white);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

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

.compare-table thead th {
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  background: var(--charcoal);
  color: var(--white);
  border: none;
}

.compare-table thead th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.compare-table tbody td {
  padding: 14px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-bg);
  color: var(--text-secondary);
}

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

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.compare-table .check {
  color: var(--sage);
  font-size: 1.1rem;
}

.compare-table .cross {
  color: var(--dusty-rose);
  font-size: 1.1rem;
}

.gallery {
  padding: 80px 0;
  background: var(--cream);
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 42, 42, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 2001;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 2001;
}

.lightbox-nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.faq {
  padding: 80px 0;
  background: var(--off-white);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition);
  gap: 16px;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--warm-gold);
  border-radius: 1px;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.footer {
  padding: 60px 0 28px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
}

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

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--warm-gold);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--warm-gold);
  color: var(--warm-gold);
  background: rgba(201, 169, 110, 0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(42, 42, 42, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-text a {
  color: var(--warm-gold);
  text-decoration: underline;
}

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

.cookie-accept {
  padding: 7px 20px;
  background: var(--warm-gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
}

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

.cookie-decline {
  padding: 7px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.privacy-page {
  margin-top: var(--header-height);
  padding: 60px 0;
  min-height: calc(100vh - var(--header-height));
}

.privacy-page h1 {
  margin-bottom: 32px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

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

.privacy-page p,
.privacy-page li {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.privacy-page ul {
  padding-left: 20px;
  list-style: disc;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 32px;
  }

  .hero-image {
    display: block;
  }

  .products-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);
  }
}

@media (min-width: 1024px) {
  .products-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);
  }
}

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

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-overlay {
    display: flex;
    pointer-events: none;
  }

  .mobile-overlay.open {
    pointer-events: auto;
  }

  .hero {
    min-height: 350px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

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

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .products {
    padding: 60px 0;
  }

  .benefits,
  .about,
  .reviews,
  .compare,
  .gallery,
  .faq {
    padding: 60px 0;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 280px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-proof {
    gap: 12px;
  }

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

  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .section-header p {
    font-size: 0.88rem;
  }

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

  .stat-item strong {
    font-size: 1.4rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px 0;
  }

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