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

:root {
  --primary: #3B4B8A;
  --primary-light: #5A6CB0;
  --primary-dark: #2A3668;
  --secondary: #9B8EC4;
  --secondary-light: #C4B8E0;
  --accent: #D4A056;
  --accent-hover: #C08D3E;
  --bg-primary: #FAF8F5;
  --bg-secondary: #F0EDE8;
  --bg-dark: #1E1E2E;
  --bg-dark-lighter: #2A2A3E;
  --text-primary: #2D2B3A;
  --text-secondary: #5A5770;
  --text-light: #8A8698;
  --text-on-dark: #F0EDE8;
  --white: #FFFFFF;
  --border: #E0DCD6;
  --success: #4CAF50;
  --warning: #FFA726;
  --error: #E53935;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(59, 75, 138, 0.08);
  --shadow-md: 0 4px 20px rgba(59, 75, 138, 0.12);
  --shadow-lg: 0 8px 32px rgba(59, 75, 138, 0.16);
  --transition: 0.25s 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(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.3;
}

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 500; }

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

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 2px;
}

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

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

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

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

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

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.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.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

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

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  padding: 8px 0;
}

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

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

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

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('imgs/hero-home.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 20px;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

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

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

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

section {
  padding: 60px 20px;
}

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

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

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

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

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

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

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(59, 75, 138, 0.06);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 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);
}

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

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  padding: 16px;
}

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

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

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.stars {
  color: var(--accent);
  letter-spacing: 1px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-height: 66px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product-desc.expanded {
  max-height: 300px;
}

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

.product-stock {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 10px 0;
}

.stock-in {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success);
}

.stock-low {
  background: rgba(255, 167, 38, 0.1);
  color: var(--warning);
}

.product-card .btn-primary {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  font-size: 0.9rem;
}

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

.cat-link {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.cat-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

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

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

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(59, 75, 138, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

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

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

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

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

.about-stats {
  display: flex;
  gap: 32px;
  margin: 24px 0;
}

.about-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

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

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.review-verified {
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
}

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

.review-product {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.who-card:hover {
  transform: translateY(-4px);
}

.who-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: rgba(155, 142, 196, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

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

.who-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.expert-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-light);
}

.expert-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.expert-title {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.expert-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
}

.expert-tips {
  list-style: none;
  padding: 0;
}

.expert-tips li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.expert-tips li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

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

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

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 8px 4px;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

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

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

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

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

.footer-brand .logo {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand .logo span {
  color: var(--secondary-light);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(240, 237, 232, 0.7);
  margin-bottom: 6px;
  line-height: 1.5;
}

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

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

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

.footer-col ul a {
  color: rgba(240, 237, 232, 0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}

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

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 237, 232, 0.7);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(240, 237, 232, 0.1);
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(240, 237, 232, 0.5);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--secondary-light);
}

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

.cookie-accept, .cookie-decline {
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  min-height: 44px;
  min-width: 44px;
}

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

.cookie-decline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(240, 237, 232, 0.3);
}

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

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.inner-page {
  margin-top: 80px;
  padding: 60px 20px;
  min-height: 60vh;
}

.inner-page h1 {
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

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

.form-success {
  display: none;
  background: rgba(76, 175, 80, 0.1);
  color: var(--success);
  padding: 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
}

.contact-info-block h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.contact-info-block p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-info-block + .contact-info-block {
  margin-top: 28px;
}

.about-page .about-story {
  margin-bottom: 48px;
}

.about-page .about-story img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
  box-shadow: var(--shadow-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

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

.value-card h3 {
  margin: 12px 0 8px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.terms-page h2,
.privacy-page h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.terms-page ul,
.privacy-page ul {
  color: var(--text-secondary);
  margin: 0 0 14px 24px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  section { padding: 80px 40px; }
  .hero h1 { font-size: 2.8rem; }
  .inner-page { padding: 80px 40px; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }
  .hero h1 { font-size: 3rem; }
  .hero-content { padding: 0 40px; }
}

@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu a { padding: 14px 0; display: block; font-size: 1rem; }
  .hero { height: auto; min-height: 50vh; padding: 40px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-section { grid-template-columns: 1fr; text-align: center; }
  .expert-avatar { margin: 0 auto; }
  .expert-quote { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 0.82rem; }
}

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