/* Voler Qurka — self-hosted fonts, no external CDN */
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/karla-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: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/karla-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/lora-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: 'Lora';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root{
  --bg: oklch(97% 0.015 95);
  --ink: oklch(27% 0.02 130);
  --header-bg: oklch(99% 0.004 95);
  --border: oklch(89% 0.012 95);
  --green: oklch(32% 0.07 150);
  --green-mid: oklch(52% 0.12 145);
  --green-bg: oklch(93% 0.035 145);
  --muted: oklch(45% 0.02 130);
  --muted-2: oklch(35% 0.02 130);
  --muted-3: oklch(30% 0.02 130);
  --red: oklch(50% 0.14 25);
  --overlay: oklch(20% 0.01 130 / 0.4);
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Karla', Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  -webkit-font-smoothing:antialiased;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-sans);
  line-height:1.6;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{ color:inherit; text-decoration:none; }
button{ cursor:pointer; font-family:inherit; }
input, textarea, select{ font-family:inherit; }
img{ max-width:100%; }
h1,h2,h3{ font-family:var(--font-serif); }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:40;
  background:var(--header-bg);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:16px 48px; flex-wrap:wrap;
}
.brand{ background:none; border:none; text-align:left; padding:0; display:flex; flex-direction:column; gap:0; }
.brand-name{ font-family:var(--font-serif); font-size:26px; font-weight:700; color:var(--green); }
.brand-sub{ font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); }
.main-nav{ display:flex; gap:8px; flex-wrap:wrap; }
.nav-link{ background:none; border:none; padding:8px 14px; border-radius:999px; font-size:15px; color:var(--ink); font-weight:500; display:inline-block; }
.nav-link.active{ color:var(--green); font-weight:700; background:var(--green-bg); }
.cart-btn{ display:flex; align-items:center; gap:8px; background:var(--green); color:#fff; border:none; border-radius:999px; padding:10px 20px; font-size:14px; font-weight:600; }
.cart-count{ background:#fff; color:var(--green); border-radius:999px; min-width:20px; height:20px; display:none; align-items:center; justify-content:center; font-size:12px; padding:0 5px; }
.cart-count.show{ display:inline-flex; }

/* ---------- Cart drawer ---------- */
.cart-overlay{ position:fixed; inset:0; background:var(--overlay); z-index:50; display:none; }
.cart-overlay.open{ display:block; }
.cart-drawer{ position:fixed; top:0; right:0; bottom:0; width:380px; max-width:92vw; background:var(--header-bg); z-index:51; box-shadow:-8px 0 24px oklch(20% 0.01 130 / 0.15); display:flex; flex-direction:column; transform:translateX(100%); transition:transform .25s ease; }
.cart-drawer.open{ transform:translateX(0); }
.cart-drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--border); }
.cart-drawer-title{ font-family:var(--font-serif); font-size:20px; font-weight:600; }
.cart-close{ background:none; border:none; font-size:22px; color:var(--muted); }
.cart-body{ flex:1; overflow-y:auto; padding:16px 24px; display:flex; flex-direction:column; gap:16px; }
.cart-empty{ font-size:14px; color:var(--muted); }
.cart-row{ display:flex; gap:12px; align-items:flex-start; padding-bottom:14px; border-bottom:1px solid oklch(93% 0.01 95); }
.cart-thumb{ width:56px; height:56px; flex-shrink:0; border-radius:2px; object-fit:cover; background:var(--green-bg); }
.cart-row-name{ font-size:14px; font-weight:600; }
.cart-row-price{ font-size:13px; color:var(--muted); margin-top:2px; }
.cart-qty{ display:flex; align-items:center; gap:8px; margin-top:8px; }
.qty-btn{ width:24px; height:24px; border:1px solid var(--border); background:#fff; border-radius:4px; font-size:14px; }
.cart-remove{ margin-left:auto; font-size:12px; color:var(--red); background:none; border:none; }
.cart-row-sub{ font-size:14px; font-weight:600; white-space:nowrap; }
.cart-foot{ padding:20px 24px; border-top:1px solid var(--border); display:flex; flex-direction:column; gap:12px; }
.cart-total-line{ display:flex; justify-content:space-between; font-size:16px; font-weight:700; }
.btn-checkout{ background:var(--green); color:#fff; border:none; border-radius:999px; padding:14px; font-size:15px; font-weight:600; text-align:center; display:block; }

/* ---------- Buttons ---------- */
.btn{ border:none; border-radius:999px; padding:14px 28px; font-size:15px; font-weight:600; display:inline-block; }
.btn-primary{ background:var(--green); color:#fff; }
.btn-outline{ background:#fff; color:var(--green); border:1px solid var(--green); }
.btn-add{ background:var(--green-mid); color:#fff; border:none; border-radius:999px; padding:8px 14px; font-size:12px; font-weight:700; }
.link-btn{ background:none; border:none; color:var(--green); font-weight:600; font-size:14px; display:inline-block; }

/* ---------- Layout ---------- */
main{ flex:1; display:flex; flex-direction:column; }
.wrap{ max-width:1280px; margin:0 auto; width:100%; }
.wrap-narrow{ max-width:1000px; margin:0 auto; width:100%; }
.wrap-article{ max-width:760px; margin:0 auto; width:100%; }
.wrap-product{ max-width:1080px; margin:0 auto; width:100%; }
.wrap-catalog{ max-width:1240px; margin:0 auto; width:100%; }
.section{ padding:64px 48px; }
.section-tight{ padding:56px 48px; }

/* ---------- Hero ---------- */
.hero{ padding:72px 48px; display:flex; gap:56px; align-items:center; flex-wrap:wrap; max-width:1280px; margin:0 auto; width:100%; }
.hero-copy{ flex:1; min-width:320px; display:flex; flex-direction:column; gap:20px; }
.eyebrow{ font-size:13px; letter-spacing:0.1em; text-transform:uppercase; color:var(--green-mid); font-weight:700; }
.hero h1{ font-size:48px; line-height:1.15; margin:0; font-weight:700; }
.hero p{ font-size:17px; color:var(--muted-2); max-width:480px; margin:0; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:8px; }
.hero-photo{ flex:1; min-width:320px; }

/* ---------- Photo placeholders (now real images) ---------- */
.ph{ border-radius:4px; overflow:hidden; background:var(--green-bg); position:relative; display:block; }
.ph img{ width:100%; height:100%; object-fit:cover; display:block; }
.ph-hero{ height:360px; }
.ph-card{ height:160px; }
.ph-card-lg{ height:170px; }
.ph-article-hero{ height:280px; margin-bottom:32px; }
.ph-product-hero{ flex:1; min-width:300px; height:380px; }
.ph-about{ height:300px; margin:8px 0; }
.ph-contact{ height:160px; margin-top:8px; }
.ph-badge{ position:absolute; top:10px; left:10px; background:var(--green); color:#fff; font-size:11px; font-weight:700; padding:4px 8px; border-radius:2px; }

/* ---------- USP strip ---------- */
.usp-strip{ background:#fff; padding:36px 48px; display:flex; gap:32px; justify-content:center; flex-wrap:wrap; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.usp-item{ display:flex; flex-direction:column; gap:4px; max-width:220px; }
.usp-title{ font-size:15px; font-weight:700; color:var(--green); }
.usp-desc{ font-size:13px; color:var(--muted); }

/* ---------- Section headers ---------- */
.section-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:28px; flex-wrap:wrap; gap:12px; }
.section-head h2{ font-size:30px; margin:0; font-weight:700; }

/* ---------- Grids & cards ---------- */
.grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:28px; }
.grid-products{ display:grid; grid-template-columns:repeat(auto-fit, minmax(230px,1fr)); gap:24px; }
.grid-catalog{ display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:24px; }
.grid-narrow{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:16px; }
.grid-values{ display:grid; grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); gap:20px; }
.grid-related{ display:grid; grid-template-columns:repeat(auto-fit, minmax(200px,1fr)); gap:16px; }

.card{ text-align:left; background:#fff; border:1px solid var(--border); border-radius:4px; padding:0; overflow:hidden; display:flex; flex-direction:column; }
.card-body{ padding:20px; display:flex; flex-direction:column; gap:8px; }
.card-cat{ font-size:12px; color:var(--green-mid); font-weight:700; text-transform:uppercase; letter-spacing:0.04em; }
.card-title{ font-family:var(--font-serif); font-size:19px; font-weight:600; line-height:1.3; }
.card-excerpt{ font-size:14px; color:var(--muted); }
.card-title-lg{ font-size:20px; }
.card-body-lg{ padding:22px; }

.product-card{ background:#fff; border:1px solid var(--border); border-radius:4px; display:flex; flex-direction:column; overflow:hidden; }
.product-card .ph{ position:relative; border-radius:0; }
.product-body{ padding:16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-cat{ font-size:11px; color:var(--green-mid); font-weight:700; text-transform:uppercase; }
.product-cat-lg{ font-size:12px; letter-spacing:0.04em; }
.product-name{ background:none; border:none; text-align:left; font-family:var(--font-serif); font-size:15px; font-weight:600; line-height:1.3; display:block; width:100%; }
.product-desc{ font-size:13px; color:var(--muted); }
.product-row{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; }
.product-price{ font-size:17px; font-weight:700; color:var(--green); }

.mini-card{ text-align:left; background:#fff; border:1px solid var(--border); border-radius:4px; padding:16px; display:block; }
.mini-cat{ font-size:11px; color:var(--green-mid); font-weight:700; text-transform:uppercase; }
.mini-title{ font-family:var(--font-serif); font-size:15px; font-weight:600; margin-top:4px; }
.mini-price{ font-size:14px; font-weight:700; color:var(--green); margin-top:6px; }

/* ---------- Testimonials ---------- */
.testimonials{ background:var(--green-bg); padding:64px 48px; }
.testimonials-inner{ max-width:1000px; margin:0 auto; display:flex; flex-direction:column; gap:32px; }
.testimonials h2{ font-size:28px; margin:0; font-weight:700; text-align:center; }
.testimonial{ background:#fff; border-radius:4px; padding:24px; display:flex; flex-direction:column; gap:12px; }
.testimonial-quote{ font-size:15px; color:var(--muted-3); font-style:italic; }
.testimonial-name{ font-size:13px; font-weight:700; color:var(--green); }

/* ---------- Newsletter ---------- */
.newsletter{ padding:64px 48px; display:flex; flex-direction:column; align-items:center; gap:16px; text-align:center; }
.newsletter h2{ font-size:26px; margin:0; font-weight:700; }
.newsletter p{ font-size:14px; color:var(--muted); max-width:420px; margin:0; }
.newsletter-form{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.newsletter-success{ color:var(--green-mid); font-weight:700; }

/* ---------- Forms ---------- */
.field{ padding:12px 14px; border:1px solid var(--border); border-radius:4px; font-size:14px; width:100%; background:#fff; }
.field-pill{ padding:12px 16px; border:1px solid var(--border); border-radius:999px; font-size:14px; min-width:240px; }
textarea.field{ resize:vertical; }
.form-col{ display:flex; flex-direction:column; gap:14px; }
.form-row{ display:flex; gap:14px; }
.form-hint{ font-size:12px; color:var(--muted); }
.success-box{ background:#fff; border:1px solid var(--border); border-radius:4px; padding:24px; color:var(--green-mid); font-weight:700; }

/* ---------- Catalog filters ---------- */
.filters{ display:flex; gap:10px; margin-bottom:32px; flex-wrap:wrap; }
.filter-btn{ border:1px solid var(--green); border-radius:999px; padding:9px 18px; font-size:13px; font-weight:600; background:#fff; color:var(--green); }
.filter-btn.active{ background:var(--green); color:#fff; }

/* ---------- Product detail ---------- */
.product-detail{ display:flex; gap:48px; flex-wrap:wrap; }
.product-info{ flex:1; min-width:300px; display:flex; flex-direction:column; gap:14px; }
.product-info h1{ font-size:30px; margin:0; font-weight:700; }
.price-lg{ font-size:26px; font-weight:700; color:var(--green); }
.product-desc-lg{ font-size:15px; color:var(--muted-3); margin:0; }
.qty-picker{ display:flex; align-items:center; gap:10px; border:1px solid var(--border); border-radius:999px; padding:6px 12px; }
.qty-picker button{ background:none; border:none; font-size:16px; }
.qty-picker span{ min-width:20px; text-align:center; font-size:14px; }
.detail-actions{ display:flex; align-items:center; gap:14px; margin-top:8px; }
.btn-add-lg{ background:var(--green); color:#fff; border:none; border-radius:999px; padding:14px 28px; font-size:14px; font-weight:700; }
.related-block{ margin-top:56px; padding-top:32px; border-top:1px solid var(--border); }
.related-block h3{ font-size:20px; margin:0 0 16px; }

/* ---------- Article ---------- */
.article-meta{ font-size:13px; color:var(--green-mid); font-weight:700; text-transform:uppercase; letter-spacing:0.04em; }
.article-body{ display:flex; flex-direction:column; gap:18px; font-size:16px; color:var(--muted-3); }
.article-body p{ margin:0; }

/* ---------- Checkout ---------- */
.checkout-grid{ display:flex; gap:40px; flex-wrap:wrap; }
.checkout-form{ flex:2; min-width:280px; }
.order-summary{ flex:1; min-width:220px; background:#fff; border:1px solid var(--border); border-radius:4px; padding:20px; display:flex; flex-direction:column; gap:10px; align-self:flex-start; }
.order-summary-title{ font-weight:700; font-size:15px; }
.order-line{ display:flex; justify-content:space-between; font-size:13px; color:var(--muted-3); }
.order-total{ display:flex; justify-content:space-between; font-size:15px; font-weight:700; border-top:1px solid var(--border); padding-top:10px; margin-top:4px; }
.order-confirm{ text-align:center; padding:64px 0; display:flex; flex-direction:column; gap:14px; align-items:center; }
.order-check{ font-size:40px; }
.order-confirm h1{ font-size:28px; margin:0; font-weight:700; }
.order-confirm p{ color:var(--muted); font-size:15px; max-width:420px; margin:0; }

/* ---------- About / Contact ---------- */
.about-body p{ font-size:16px; color:var(--muted-3); margin:0; }
.value-card{ background:#fff; border:1px solid var(--border); border-radius:4px; padding:20px; display:flex; flex-direction:column; gap:6px; }
.value-title{ font-weight:700; font-size:15px; color:var(--green); }
.value-desc{ font-size:13px; color:var(--muted); }
.contact-grid{ display:flex; gap:48px; flex-wrap:wrap; }
.contact-info{ flex:1; min-width:280px; display:flex; flex-direction:column; gap:16px; }
.contact-info-label{ font-weight:700; font-size:14px; }
.contact-info-val{ font-size:14px; color:var(--muted-2); }
.contact-form-col{ flex:1; min-width:280px; }

/* ---------- Legal ---------- */
.legal-sections{ display:flex; flex-direction:column; gap:28px; }
.legal-sections h2{ font-size:19px; margin:0 0 10px; font-weight:600; }
.legal-sections p{ margin:0 0 8px; font-size:15px; color:var(--muted-3); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--green); color:oklch(95% 0.01 145); padding:56px 48px 24px; margin-top:auto; }
.footer-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(200px,1fr)); gap:36px; max-width:1240px; margin:0 auto; }
.footer-brand{ display:flex; flex-direction:column; gap:10px; }
.footer-brand-name{ font-family:var(--font-serif); font-size:22px; font-weight:700; color:#fff; }
.footer-brand-desc{ font-size:13px; opacity:0.85; }
.footer-col{ display:flex; flex-direction:column; gap:8px; }
.footer-col-title{ font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:0.05em; opacity:0.7; margin-bottom:4px; }
.footer-link{ background:none; border:none; color:#fff; opacity:0.85; font-size:14px; text-align:left; padding:0; display:inline-block; }
.footer-text{ font-size:14px; opacity:0.85; }
.footer-bottom{ max-width:1240px; margin:36px auto 0; padding-top:20px; border-top:1px solid oklch(95% 0.01 145 / 0.2); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12px; opacity:0.7; }

/* ---------- Cookie banner ---------- */
.cookie-banner{ position:fixed; bottom:0; left:0; right:0; background:#fff; border-top:1px solid var(--border); padding:18px 48px; display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; z-index:60; box-shadow:0 -4px 16px oklch(20% 0.01 130 / 0.08); }
.cookie-text{ font-size:13px; color:var(--muted-3); max-width:600px; }
.cookie-text a{ color:var(--green); font-weight:600; }
.cookie-actions{ display:flex; gap:10px; flex-shrink:0; }
.btn-cookie-reject{ background:#fff; border:1px solid var(--border); border-radius:999px; padding:9px 18px; font-size:13px; font-weight:600; }
.btn-cookie-accept{ background:var(--green); color:#fff; border:none; border-radius:999px; padding:9px 18px; font-size:13px; font-weight:600; }

.form-error{ color:var(--red); font-size:13px; }

/* ---------- Back link ---------- */
.back-link{ background:none; border:none; color:var(--green); font-weight:600; font-size:14px; margin-bottom:24px; display:inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 640px){
  .site-header{ padding:14px 20px; }
  .hero, .section, .section-tight{ padding-left:20px; padding-right:20px; }
  .hero h1{ font-size:34px; }
  .cookie-banner{ padding:16px 20px; }
  .site-footer{ padding:40px 20px 20px; }
}
