/* Okna Kakovost — shared stylesheet */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/public-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/public-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --c-primary: oklch(0.32 0.09 250);
  --c-accent: oklch(0.72 0.16 55);
  --c-accent-hover: oklch(0.62 0.16 55);
  --c-bg: oklch(0.985 0.004 90);
  --c-bg-alt: oklch(0.965 0.006 90);
  --c-text: oklch(0.22 0.01 260);
  --c-text-muted: oklch(0.48 0.012 260);
  --c-text-soft: oklch(0.3 0.01 260);
  --c-border: oklch(0.9 0.006 90);
  --c-badge-bg: oklch(0.94 0.03 55);
  --c-badge-text: oklch(0.5 0.14 55);
  --c-green: oklch(0.6 0.14 145);
  --c-footer-bg: oklch(0.18 0.01 260);
  --c-footer-border: oklch(0.3 0.01 260);
  --c-footer-text: oklch(0.85 0.01 260);
  --c-footer-muted: oklch(0.7 0.01 260);
  --c-placeholder-a: oklch(0.92 0.008 250);
  --c-placeholder-b: oklch(0.96 0.006 250);
  --font-heading: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body), sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary); }
a:hover { color: var(--c-accent-hover); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--c-primary); color: #fff;
  padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-legal-header { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.985 0.004 90 / 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; background: var(--c-primary); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.logo-mark span { width: 13px; height: 13px; border: 2px solid #fff; transform: rotate(45deg); display: block; }
.logo-name { font-family: var(--font-heading), sans-serif; font-weight: 800; font-size: 18px; color: var(--c-text); line-height: 1; }
.logo-tag { font-size: 10.5px; color: var(--c-text-muted); letter-spacing: .05em; }

.main-nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: 15px; font-weight: 600; }
.main-nav a { text-decoration: none; color: var(--c-text); }
.main-nav a.active { color: var(--c-primary); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { text-decoration: none; font-weight: 700; font-size: 14px; color: var(--c-text); white-space: nowrap; }
.cart-link {
  position: relative; text-decoration: none; display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px; background: var(--c-bg-alt); border: 1px solid var(--c-border);
}
.cart-link.on-cart-page { border-color: var(--c-primary); }
.cart-icon { font-size: 16px; }
.cart-badge {
  position: absolute; top: -6px; right: -6px; background: var(--c-accent); color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 10px; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* Buttons */
.btn { text-decoration: none; font-weight: 700; font-size: 16px; padding: 16px 28px; border-radius: 10px; display: inline-block; border: none; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent-hover); color: #fff; }
.btn-secondary { background: #fff; color: var(--c-text); border: 1px solid var(--c-border); }
.btn-secondary:hover { color: var(--c-text); border-color: var(--c-primary); }
.btn-dark { background: var(--c-primary); color: #fff; }
.btn-dark:hover { color: #fff; opacity: .92; }
.btn-block { width: 100%; text-align: center; }
.btn-sm { font-size: 14px; padding: 11px; border-radius: 8px; }

/* Hero */
.hero { padding: 72px 24px 60px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy { min-width: 0; }
.badge { display: inline-block; background: var(--c-badge-bg); color: var(--c-badge-text); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.hero h1 { font-family: var(--font-heading), sans-serif; font-size: clamp(32px, 5vw, 52px); line-height: 1.08; font-weight: 800; margin: 0 0 20px; }
.hero-lead { font-size: 18px; line-height: 1.6; color: var(--c-text-muted); max-width: 520px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 18px; border: 1px solid var(--c-border); }

/* Placeholder image block (fallback) */
.ph-img {
  aspect-ratio: 5/4; border-radius: 18px;
  background: repeating-linear-gradient(135deg, var(--c-placeholder-a) 0 14px, var(--c-placeholder-b) 14px 28px);
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--c-border);
}

/* Stats */
.stats-bar { border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); background: #fff; }
.stats-grid { max-width: 1200px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; text-align: center; }
.stat-num { font-family: var(--font-heading), sans-serif; font-weight: 800; font-size: 26px; color: var(--c-primary); }
.stat-label { font-size: 13px; color: var(--c-text-muted); }

/* Sections */
.section { max-width: 1200px; margin: 0 auto; padding: 72px 24px; }
.section-title { font-family: var(--font-heading), sans-serif; font-size: 32px; font-weight: 800; margin: 0 0 12px; }
.section-title-center { text-align: center; }
.section-lead { font-size: 16px; color: var(--c-text-muted); max-width: 560px; margin: 0 0 40px; }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--c-border); border-radius: 14px; padding: 28px; display: block; }
.service-icon { font-size: 28px; margin-bottom: 14px; }
.service-title { font-family: var(--font-heading), sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--c-text-muted); line-height: 1.5; }

.section-alt { background: #fff; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.section-alt-inner { max-width: 1200px; margin: 0 auto; padding: 72px 24px; }
.section-header-row { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.link-strong { text-decoration: none; font-weight: 700; color: var(--c-primary); }

.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.products-grid.shop { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.product-card { border: 1px solid var(--c-border); border-radius: 12px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.product-media { aspect-ratio: 1; overflow: hidden; background: repeating-linear-gradient(135deg, var(--c-placeholder-a) 0 10px, var(--c-placeholder-b) 10px 20px); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; }
.product-card.shop .product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.product-cat { font-size: 11px; font-weight: 700; color: var(--c-accent); letter-spacing: .03em; text-transform: uppercase; }
.product-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.product-card.shop .product-name { font-size: 15px; line-height: 1.3; margin-bottom: 0; }
.product-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; flex: 1; }
.product-price { color: var(--c-primary); font-weight: 800; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 8px; }
.product-price-row .unit { font-size: 12px; color: var(--c-text-muted); font-weight: 400; }
.product-price-row .amount { font-weight: 800; font-size: 18px; color: var(--c-primary); }

.steps-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.step { text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 999px; background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 14px; }
.step-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--c-text-muted); }

.section-muted { background: var(--c-bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.testimonial-card { background: #fff; border-radius: 14px; padding: 26px; border: 1px solid var(--c-border); }
.stars { color: var(--c-accent); margin-bottom: 10px; }
.testimonial-text { font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.testimonial-author { font-weight: 700; font-size: 14px; }

.coverage-section { max-width: 1200px; margin: 0 auto; padding: 72px 24px; text-align: center; }
.coverage-title { font-family: var(--font-heading), sans-serif; font-size: 28px; font-weight: 800; margin: 0 0 12px; }
.coverage-text { font-size: 15px; color: var(--c-text-muted); max-width: 640px; margin: 0 auto 8px; }

.cta-section { background: var(--c-primary); color: #fff; }
.cta-inner { max-width: 900px; margin: 0 auto; padding: 64px 24px; text-align: center; }
.cta-inner h2 { font-family: var(--font-heading), sans-serif; font-size: 30px; font-weight: 800; margin: 0 0 14px; }
.cta-inner p { font-size: 16px; opacity: .9; margin: 0 0 28px; }
.cta-inner.compact { padding: 56px 24px; }
.cta-inner.compact h2 { font-size: 28px; }

/* Footer */
.site-footer { background: var(--c-footer-bg); color: var(--c-footer-text); }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 56px 24px 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand { font-family: var(--font-heading), sans-serif; font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 10px; }
.footer-desc { font-size: 14px; line-height: 1.6; max-width: 280px; color: var(--c-footer-muted); }
.footer-heading { font-weight: 700; color: #fff; margin-bottom: 12px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links a { text-decoration: none; color: var(--c-footer-muted); }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--c-footer-muted); }
.footer-bottom { border-top: 1px solid var(--c-footer-border); max-width: 1200px; margin: 0 auto; padding: 18px 24px; font-size: 13px; color: oklch(0.6 0.01 260); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-simple .footer-bottom-row { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.footer-simple .footer-bottom-row a { text-decoration: none; color: var(--c-footer-muted); }
.footer-simple .footer-bottom-row a:hover { color: #fff; }
.footer-simple .footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-simple { max-width: 1000px; margin: 0 auto; padding: 28px 24px; font-size: 13px; color: var(--c-footer-muted); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--c-footer-bg); color: #fff;
  padding: 16px 24px; display: none; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap;
  z-index: 100; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.visible { display: flex; }
.cookie-text { font-size: 13px; max-width: 600px; }
.cookie-text a { color: oklch(0.8 0.1 55); }
.cookie-btn { background: var(--c-accent); color: #fff; border: none; font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 8px; cursor: pointer; }

/* Forms / contact page */
.page-hero { max-width: 1200px; margin: 0 auto; padding: 56px 24px 20px; }
.page-hero h1 { font-family: var(--font-heading), sans-serif; font-size: 38px; font-weight: 800; margin: 0 0 14px; }
.page-hero p { font-size: 16px; color: var(--c-text-muted); max-width: 680px; margin: 0; }

.contact-grid { max-width: 1200px; margin: 0 auto; padding: 56px 24px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-grid h1 { font-family: var(--font-heading), sans-serif; font-size: 34px; font-weight: 800; margin: 0 0 14px; }
.contact-intro { font-size: 15px; color: var(--c-text-muted); margin: 0 0 28px; line-height: 1.6; }

.form-stack { display: flex; flex-direction: column; gap: 12px; }
.form-stack input, .form-stack textarea {
  border: 1px solid var(--c-border); border-radius: 8px; padding: 12px 14px; font-size: 14px; font-family: inherit; width: 100%;
}
.form-stack textarea { resize: vertical; }
.form-note { font-size: 11px; color: var(--c-text-muted); line-height: 1.5; margin: 4px 0 0; }

.success-box { background: #fff; border: 1px solid var(--c-border); border-radius: 14px; padding: 36px; text-align: center; }
.success-icon { font-size: 36px; margin-bottom: 10px; }
.success-title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.success-text { font-size: 14px; color: var(--c-text-muted); }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; border: 1px solid var(--c-border); }
.contact-card { background: #fff; border: 1px solid var(--c-border); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; gap: 12px; }
.contact-row .ic { font-size: 18px; }
.contact-row .ttl { font-weight: 700; font-size: 14px; }
.contact-row .val { font-size: 14px; color: var(--c-text-muted); }

/* Shop */
.shop-intro { max-width: 1200px; margin: 0 auto; padding: 48px 24px 8px; }
.shop-intro h1 { font-family: var(--font-heading), sans-serif; font-size: 36px; font-weight: 800; margin: 0 0 10px; }
.shop-intro p { font-size: 16px; color: var(--c-text-muted); max-width: 600px; margin: 0 0 28px; }
.category-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  border: 1px solid var(--c-border); background: #fff; color: var(--c-text); font-weight: 600; font-size: 13px;
  padding: 9px 16px; border-radius: 999px; cursor: pointer; font-family: inherit;
}
.filter-btn.active { border-color: var(--c-primary); background: var(--c-primary); color: #fff; }
.shop-grid-section { max-width: 1200px; margin: 0 auto; padding: 0 24px 72px; }
.add-to-cart-btn { margin-top: 10px; background: var(--c-primary); color: #fff; border: none; font-weight: 700; font-size: 14px; padding: 11px; border-radius: 8px; cursor: pointer; width: 100%; font-family: inherit; }
.add-to-cart-btn.added { background: var(--c-green); }
.shop-cta { background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.shop-cta-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px; text-align: center; }
.shop-cta-inner p { font-size: 15px; color: var(--c-text-muted); margin: 0 0 16px; }

/* Cart */
.cart-section { max-width: 1000px; margin: 0 auto; padding: 48px 24px 96px; }
.cart-section h1 { font-family: var(--font-heading), sans-serif; font-size: 32px; font-weight: 800; margin: 0 0 28px; }
.cart-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 16px; background: #fff; border: 1px solid var(--c-border); border-radius: 12px; padding: 16px; align-items: center; }
.cart-item-img { width: 64px; height: 64px; flex: none; border-radius: 8px; overflow: hidden; background: repeating-linear-gradient(135deg, var(--c-placeholder-a) 0 8px, var(--c-placeholder-b) 8px 16px); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .nm { font-weight: 700; font-size: 14px; }
.cart-item-info .pr { font-size: 12px; color: var(--c-text-muted); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--c-border); background: #fff; cursor: pointer; font-weight: 700; font-family: inherit; }
.qty-val { width: 26px; text-align: center; font-weight: 700; font-size: 14px; }
.cart-item-total { width: 80px; text-align: right; font-weight: 800; color: var(--c-primary); }
.remove-btn { border: none; background: none; color: var(--c-text-muted); cursor: pointer; font-size: 18px; padding: 4px; }

.cart-summary { background: #fff; border: 1px solid var(--c-border); border-radius: 14px; padding: 24px; position: sticky; top: 90px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 8px; }
.summary-row.muted { font-size: 13px; color: var(--c-text-muted); margin-bottom: 16px; }
.summary-total { border-top: 1px solid var(--c-border); padding-top: 14px; display: flex; justify-content: space-between; font-weight: 800; font-size: 18px; margin-bottom: 20px; }
.summary-total span:last-child { color: var(--c-primary); }
.summary-form-title { font-weight: 700; font-size: 14px; margin-bottom: 10px; }

.empty-cart { text-align: center; padding: 60px 0; background: #fff; border: 1px solid var(--c-border); border-radius: 14px; }
.empty-cart-icon { font-size: 40px; margin-bottom: 14px; }
.empty-cart-title { font-weight: 700; font-size: 18px; margin-bottom: 10px; }

/* FAQ */
.faq-section { max-width: 800px; margin: 0 auto; padding: 56px 24px 88px; }
.faq-section h1 { font-family: var(--font-heading), sans-serif; font-size: 34px; font-weight: 800; margin: 0 0 32px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--c-border); border-radius: 12px; padding: 20px 22px; }
.faq-q { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; }

/* Blog */
.blog-grid { max-width: 1200px; margin: 0 auto; padding: 20px 24px 72px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden; }
.blog-media { aspect-ratio: 16/10; overflow: hidden; background: repeating-linear-gradient(135deg, var(--c-placeholder-a) 0 10px, var(--c-placeholder-b) 10px 20px); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-meta { font-size: 12px; color: var(--c-text-muted); margin-bottom: 6px; }
.blog-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; line-height: 1.3; }
.blog-excerpt { font-size: 13.5px; color: var(--c-text-muted); line-height: 1.6; margin: 0; }

/* Legal pages */
.legal-header { position: sticky; top: 0; z-index: 50; background: oklch(0.985 0.004 90 / 0.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--c-border); }
.legal-header-inner { max-width: 1000px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.legal-logo-name { font-family: var(--font-heading), sans-serif; font-weight: 800; font-size: 17px; color: var(--c-text); }
.legal-back { text-decoration: none; font-weight: 600; font-size: 14px; color: var(--c-text); }
.legal-section-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 88px; }
.legal-section-wrap h1 { font-family: var(--font-heading), sans-serif; font-size: 32px; font-weight: 800; margin: 0 0 8px; }
.legal-updated { font-size: 13px; color: var(--c-text-muted); margin: 0 0 32px; }
.legal-blocks { display: flex; flex-direction: column; gap: 22px; font-size: 15px; line-height: 1.7; color: var(--c-text-soft); }
.legal-blocks h2 { font-family: var(--font-heading), sans-serif; font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.legal-blocks p { margin: 0; }
.legal-info-box { background: #fff; border: 1px solid var(--c-border); border-radius: 14px; padding: 32px; display: flex; flex-direction: column; gap: 14px; font-size: 15px; line-height: 1.7; }
.legal-note { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; margin-top: 24px; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .products-grid, .services-grid, .steps-grid, .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-inner { padding: 12px 16px; }
  .hero, .section, .page-hero, .contact-grid, .cart-section, .faq-section, .legal-section-wrap { padding-left: 16px; padding-right: 16px; }
}
