@import url("fonts.css");

:root {
  --ink: #12161a;
  --ink-soft: #5b6470;
  --graphite: #1c2126;
  --graphite-2: #262b31;
  --graphite-3: #2d3238;
  --graphite-line: #333a41;
  --graphite-line-2: #3a4048;
  --blue: #2f6fed;
  --blue-tint: #eef3fe;
  --line: #e4e7eb;
  --surface: #f6f7f9;
  --red: #e0483e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

a { color: inherit; }
a:hover { color: var(--blue); }

h1, h2, h3, .font-display {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
}

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

button { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 48px;
  background: var(--graphite);
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14.5px;
}

.main-nav a {
  color: #c7cdd4;
  text-decoration: none;
}

.main-nav a.active { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  color: #c7cdd4;
  text-decoration: none;
  font-size: 13.5px;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  background: var(--blue);
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.cart-count {
  background: #fff;
  color: var(--blue);
  border-radius: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 5px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--graphite-line-2);
  border-radius: 8px;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--graphite);
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(47, 111, 237, 0.18);
  color: #7fa4ff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.hero p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #b8bfc7;
  max-width: 480px;
  margin: 0 0 32px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: "Manrope", sans-serif;
}

.btn-primary { background: var(--blue); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid var(--graphite-line-2); }
.btn-dark { background: var(--graphite); color: #fff; }
.btn-block { width: 100%; }

.hero-media {
  border-radius: 20px;
  height: 360px;
  overflow: hidden;
  border: 1px solid var(--graphite-line);
  position: relative;
}

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

/* ---------- Perks strip ---------- */
.perks {
  padding: 28px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.perks-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.perk-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.perk-desc { font-size: 13px; color: var(--ink-soft); }

/* ---------- Sections ---------- */
.section { padding: 80px 48px; }
.section-tight { padding: 0 48px 80px; }
.section-surface { background: var(--surface); padding: 80px 48px; }
.section-graphite { background: var(--graphite); padding: 56px 48px; }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

h2.section-title { font-weight: 700; font-size: 30px; margin: 0 0 8px; }
h2.section-title.center { text-align: center; margin: 0 0 36px; }
.section-lead { color: var(--ink-soft); font-size: 15px; margin: 0 0 36px; }

.view-all-link { color: var(--blue); text-decoration: none; font-weight: 600; font-size: 14.5px; }

/* ---------- Category tiles ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s;
}

.tile:hover { border-color: var(--blue); }

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 18px;
}

.tile-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 17px; }
.tile-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Product grid & card ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  height: 100%;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.badge-sale { background: var(--red); }
.badge-new { background: var(--blue); }
.badge-best { background: var(--graphite); }

.product-photo {
  border-radius: 10px;
  height: 150px;
  overflow: hidden;
  background: var(--surface);
}

.product-photo img { width: 100%; height: 100%; object-fit: cover; }

.product-sub {
  font-size: 11.5px;
  color: #8a929b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.product-name {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.3;
  min-height: 40px;
}

.product-spec { font-size: 12.5px; color: #6b7280; line-height: 1.5; min-height: 34px; }

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.product-price { font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); }
.product-old-price { font-size: 13px; color: #a3aab2; text-decoration: line-through; }

.btn-add {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-add.added { background: var(--graphite); }

/* ---------- Filters (category pages) ---------- */
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb .current { color: var(--ink); }

.category-hero { padding: 48px 48px 20px; max-width: 1280px; margin: 0 auto; }
.category-hero h1 { font-weight: 700; font-size: 34px; margin: 0 0 10px; }
.category-hero p { color: var(--ink-soft); font-size: 15.5px; max-width: 640px; line-height: 1.6; margin: 0 0 24px; }

.filter-row { display: flex; gap: 10px; flex-wrap: wrap; }

.filter-btn {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
}

.filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.category-products { padding: 24px 48px 80px; max-width: 1280px; margin: 0 auto; }

.category-info { background: var(--surface); padding: 64px 48px; }
.category-info-inner { max-width: 1280px; margin: 0 auto; }
.category-info h2 { font-weight: 700; font-size: 24px; margin: 0 0 14px; }
.category-info p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; max-width: 760px; margin: 0 0 12px; }
.category-info a { color: var(--blue); text-decoration: none; font-weight: 700; font-size: 14px; }

/* ---------- Why us ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1280px; margin: 0 auto; }
.split-media { border-radius: 16px; height: 320px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.reason-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.reason-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.reasons { display: flex; flex-direction: column; gap: 18px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.stars { color: var(--blue); font-size: 14px; margin-bottom: 10px; }
.testimonial-text { font-size: 14.5px; line-height: 1.6; color: var(--ink); margin: 0 0 16px; }
.testimonial-author { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Newsletter ---------- */
.newsletter-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-weight: 700; font-size: 24px; color: #fff; margin: 0 0 10px; }
.newsletter-inner > p { color: #b8bfc7; font-size: 14.5px; margin: 0 0 24px; }

.form-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.input-dark {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--graphite-line-2);
  background: var(--graphite-2);
  color: #fff;
  font-size: 14px;
  min-width: 260px;
  font-family: "Manrope", sans-serif;
}

.form-note { font-size: 13px; margin-top: 14px; }
.form-note.ok { color: #7fd8a6; }
.form-note.error { color: #ff9b93; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--graphite);
  color: #c7cdd4;
  padding: 56px 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--graphite-line);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif; font-weight: 700; color: #fff; font-size: 16px;
}
.footer-brand-name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 18px; color: #fff; }
.footer-about { font-size: 13.5px; line-height: 1.7; color: #9aa2ab; max-width: 280px; margin: 0 0 16px; }
.footer-legalname { font-size: 13px; color: #83898f; margin: 0; }

.footer-col-title { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 14px; font-family: "Sora", sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-links a { color: #c7cdd4; text-decoration: none; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 20px 0 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: #83898f;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--graphite); color: #e5e8eb;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-size: 13.5px;
  z-index: 200;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.15);
}

.cookie-banner[hidden] { display: none; }

.cookie-text { max-width: 760px; line-height: 1.6; color: #c7cdd4; }
.cookie-text a { color: #6fa1ff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-reject {
  background: transparent; color: #c7cdd4; border: 1px solid var(--graphite-line-2);
  border-radius: 8px; padding: 10px 16px; font-size: 13.5px; cursor: pointer; font-weight: 600;
}
.btn-cookie-accept {
  background: var(--blue); color: #fff; border: none;
  border-radius: 8px; padding: 10px 18px; font-size: 13.5px; cursor: pointer; font-weight: 700;
}

/* ---------- Cart page ---------- */
.cart-section { padding: 48px 48px 80px; max-width: 1000px; margin: 0 auto; }
.cart-section h1 { font-weight: 700; font-size: 30px; margin: 0 0 28px; }

.cart-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.cart-item-photo { border-radius: 8px; height: 72px; overflow: hidden; background: var(--surface); }
.cart-item-photo img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: "Sora", sans-serif; font-weight: 600; font-size: 15px; }
.cart-item-sub { font-size: 12.5px; color: var(--ink-soft); }

.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 15px;
}
.qty-value { min-width: 20px; text-align: center; font-weight: 600; font-size: 14px; }

.cart-item-total { text-align: right; min-width: 110px; }
.cart-item-subtotal { font-family: "Sora", sans-serif; font-weight: 700; font-size: 15px; }
.cart-item-remove {
  background: none; border: none; color: #a3aab2; font-size: 12.5px; cursor: pointer;
  text-decoration: underline; padding: 0; margin-top: 4px;
}

.cart-summary { background: var(--surface); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-soft); }
.cart-summary-divider { height: 1px; background: var(--line); margin: 6px 0; }
.cart-summary-total { display: flex; justify-content: space-between; font-family: "Sora", sans-serif; font-weight: 700; font-size: 18px; }
.cart-summary-legal { font-size: 12px; color: var(--ink-soft); margin: 6px 0 0; text-align: center; }
.cart-summary-legal a { color: var(--blue); text-decoration: none; }

.cart-empty { text-align: center; padding: 60px 0; border: 1px dashed var(--line); border-radius: 14px; }
.cart-empty-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.cart-empty p { color: var(--ink-soft); font-size: 14px; margin: 0 0 20px; }

/* ---------- Contact page ---------- */
.contact-section { padding: 56px 48px 80px; max-width: 1100px; margin: 0 auto; }
.contact-section h1 { font-weight: 700; font-size: 32px; margin: 0 0 10px; }
.contact-section > p { color: var(--ink-soft); font-size: 15px; margin: 0 0 40px; max-width: 600px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.contact-info-line { font-size: 14px; color: var(--ink-soft); }
.contact-info-small { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

.map-placeholder {
  border-radius: 12px;
  height: 160px;
  background: linear-gradient(135deg, var(--blue-tint), var(--surface));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
}
.map-pin { font-size: 22px; }
.map-label { font-size: 12.5px; color: var(--ink-soft); text-align: center; padding: 0 16px; }

.contact-form, .newsletter-form-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border-radius: 14px; padding: 28px;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field {
  padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line);
  font-size: 14px; font-family: "Manrope", sans-serif; width: 100%;
}

textarea.field { resize: vertical; }

.check-row { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--ink-soft); }
.check-row input { margin-top: 2px; }
.check-row a { color: var(--blue); text-decoration: none; }

.form-alert {
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.form-alert.ok { background: #e9f9ef; color: #1c7a3f; border: 1px solid #bfe9cd; }
.form-alert.error { background: #fdeceb; color: #a02e26; border: 1px solid #f4c3bf; }
.form-alert[hidden] { display: none; }

/* ---------- Legal / doc pages ---------- */
.doc-section { padding: 56px 48px 90px; max-width: 760px; margin: 0 auto; }
.doc-section h1 { font-weight: 700; font-size: 30px; margin: 0 0 6px; }
.doc-updated { font-size: 13px; color: var(--ink-soft); margin: 0 0 28px; }
.doc-body { display: flex; flex-direction: column; gap: 22px; font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); }
.doc-block-title { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.doc-body a { color: var(--blue); text-decoration: none; }

.cookie-card { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.cookie-card-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.cookie-card-status { font-size: 12.5px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.cookie-card-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.shipping-row {
  display: flex; justify-content: space-between; border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 18px; font-size: 14px;
}
.shipping-row strong { color: var(--blue); }
.shipping-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.doc-h2 { font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px; margin: 0 0 16px; }
.doc-p { font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 12px; }

/* ---------- Tanacsok / articles + FAQ ---------- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.article-photo { height: 140px; overflow: hidden; background: var(--surface); }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-tag { font-size: 11.5px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; }
.article-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 16.5px; line-height: 1.35; margin: 0; }
.article-excerpt { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; flex: 1; }

.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 14.5px; font-family: "Sora", sans-serif; }
.faq-icon { color: var(--blue); font-size: 18px; }
.faq-a { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 12px 0 0; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- About page ---------- */
.about-hero { background: var(--graphite); padding: 64px 48px; }
.about-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.about-hero h1 { font-weight: 700; font-size: 34px; color: #fff; margin: 0 0 14px; }
.about-hero p { color: #b8bfc7; font-size: 15.5px; line-height: 1.7; margin: 0; }

.about-story { padding: 64px 48px; max-width: 1000px; margin: 0 auto; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.about-story h2 { font-weight: 700; font-size: 24px; margin: 0 0 14px; }
.about-story p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin: 0 0 12px; }
.about-media { border-radius: 16px; height: 260px; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.values-title { font-weight: 700; font-size: 24px; margin: 0 0 24px; text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-item { text-align: center; padding: 20px; }
.value-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.value-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.stats-section { background: var(--surface); padding: 56px 48px; }
.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { font-family: "Sora", sans-serif; font-weight: 700; font-size: 28px; color: var(--blue); }
.stat-label { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { height: 260px; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container, .container-narrow, .container-doc,
  .hero, .perks, .section, .section-tight, .section-surface, .section-graphite,
  .category-hero, .category-products, .category-info, .cart-section,
  .contact-section, .doc-section, .site-header, .site-footer, .cookie-banner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-nav { display: none; width: 100%; order: 3; flex-direction: column; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; border-top: 1px solid var(--graphite-line); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-phone { display: none; }
  .hero h1 { font-size: 32px; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; grid-template-areas: "photo name" "photo qty" "photo total"; }
  .article-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
