/* Zunazo Kvaso — shared stylesheet */

:root{
  --bg: oklch(98% 0.004 95);
  --ink: oklch(28% 0.02 250);
  --ink-soft: oklch(42% 0.02 250);
  --ink-soft-2: oklch(48% 0.02 250);
  --ink-soft-3: oklch(50% 0.02 250);
  --ink-mute: oklch(55% 0.02 250);
  --brand: oklch(58% 0.11 235);
  --brand-dark: oklch(40% 0.09 240);
  --brand-darker: oklch(35% 0.1 235);
  --brand-text: oklch(30% 0.07 240);
  --link: oklch(45% 0.1 235);
  --link-hover: oklch(35% 0.1 235);
  --sand: oklch(93% 0.035 80);
  --sand-2: oklch(96% 0.01 90);
  --sand-3: oklch(88% 0.05 75);
  --line: oklch(92% 0.02 90);
  --line-2: oklch(90% 0.02 90);
  --line-3: oklch(85% 0.02 90);
  --footer-bg: oklch(20% 0.025 245);
  --footer-line: oklch(30% 0.02 245);
  --footer-text: oklch(85% 0.01 240);
  --footer-text-2: oklch(72% 0.01 240);
  --footer-text-3: oklch(60% 0.01 240);
  --danger: oklch(55% 0.1 25);
  --font-head: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{color:var(--link);text-decoration:none;}
a:hover{color:var(--link-hover);}
::selection{background:oklch(85% 0.05 235);}
img{max-width:100%;display:block;}
button{font-family:inherit;}

@keyframes zk-fade{from{opacity:0;transform:translateY(6px);}to{opacity:1;transform:translateY(0);}}

.page-wrap{flex:1;display:flex;flex-direction:column;min-height:100vh;}
main{flex:1;}
.wrap{max-width:1180px;margin:0 auto;padding-left:20px;padding-right:20px;}

/* Top announcement bar */
.topbar{
  background:var(--brand-dark);
  color:#fff;
  font-size:13px;
  text-align:center;
  padding:7px 12px;
  letter-spacing:0.02em;
}

/* Header */
.site-header{
  position:sticky;top:0;z-index:40;
  background:oklch(98% 0.004 95 / 0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line-2);
}
.site-header__inner{
  max-width:1180px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px 20px;flex-wrap:wrap;
}
.brand{display:flex;align-items:center;gap:10px;cursor:pointer;}
.brand-mark{
  width:38px;height:38px;border-radius:10px;background:var(--brand);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.brand-mark span{width:16px;height:16px;border:2px solid #fff;border-radius:3px;display:block;}
.brand-name{font-family:var(--font-head);font-weight:800;font-size:19px;line-height:1;color:oklch(30% 0.06 240);}
.brand-domain{font-size:11px;letter-spacing:0.08em;color:oklch(55% 0.04 230);text-transform:uppercase;}

.nav{display:flex;gap:22px;flex-wrap:wrap;}
.nav a{font-size:14.5px;font-weight:500;color:var(--ink-soft-2);}
.nav a.active{font-weight:700;color:oklch(38% 0.1 235);}
.nav a:hover{color:var(--link-hover);}

.header-actions{display:flex;align-items:center;gap:14px;}
.cart-toggle{
  position:relative;cursor:pointer;display:flex;align-items:center;gap:8px;
  background:oklch(93% 0.03 80);padding:9px 14px;border-radius:999px;border:1px solid var(--sand-3);
}
.cart-toggle__icon{width:16px;height:14px;border:2px solid oklch(35% 0.06 240);border-radius:2px;border-top:none;}
.cart-toggle span.label{font-size:13px;font-weight:600;}
.cart-badge{
  background:var(--brand);color:#fff;font-size:11px;font-weight:700;border-radius:999px;
  min-width:18px;height:18px;display:none;align-items:center;justify-content:center;padding:0 5px;
}
.cart-badge.show{display:flex;}

/* Cart drawer */
.cart-overlay{
  position:fixed;inset:0;background:oklch(20% 0.02 250 / 0.4);z-index:50;
  display:none;
}
.cart-overlay.open{display:block;}
.cart-drawer{
  position:absolute;right:0;top:0;bottom:0;width:min(400px,92vw);background:#fff;
  box-shadow:-10px 0 30px oklch(20% 0.02 250 / 0.15);display:flex;flex-direction:column;
}
.cart-drawer__head{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;border-bottom:1px solid var(--line);}
.cart-drawer__title{font-family:var(--font-head);font-weight:700;font-size:18px;}
.cart-drawer__close{cursor:pointer;font-size:20px;color:var(--ink-mute);border:none;background:none;}
.cart-drawer__body{flex:1;overflow-y:auto;padding:12px 20px;}
.cart-empty{text-align:center;padding:40px 10px;color:var(--ink-mute);}
.cart-item{display:flex;gap:12px;padding:14px 0;border-bottom:1px solid oklch(94% 0.02 90);}
.cart-item__thumb{width:56px;height:56px;border-radius:8px;flex-shrink:0;object-fit:cover;}
.cart-item__name{font-size:13px;font-weight:600;margin-bottom:2px;}
.cart-item__price{font-size:12px;color:var(--ink-mute);margin-bottom:6px;}
.cart-item__ctrl{display:flex;align-items:center;gap:8px;}
.qty-btn{width:22px;height:22px;border:1px solid var(--line-3);border-radius:5px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:14px;background:#fff;}
.cart-item__qty{font-size:13px;min-width:16px;text-align:center;}
.cart-item__remove{margin-left:auto;font-size:12px;color:var(--danger);cursor:pointer;background:none;border:none;}
.cart-item__subtotal{font-size:13px;font-weight:700;white-space:nowrap;}
.cart-drawer__foot{padding:18px 20px;border-top:1px solid var(--line);}
.cart-total{display:flex;justify-content:space-between;font-size:15px;font-weight:700;margin-bottom:12px;}
.cart-note{font-size:11px;color:var(--ink-mute);text-align:center;margin-top:8px;}

/* Buttons */
.btn{border:none;padding:14px 26px;border-radius:10px;font-size:15px;font-weight:700;cursor:pointer;font-family:inherit;display:inline-block;}
.btn-primary{background:var(--brand);color:#fff;}
.btn-primary:hover{background:var(--brand-darker);color:#fff;}
.btn-outline{background:transparent;color:oklch(35% 0.06 240);border:1.5px solid oklch(80% 0.03 90);}
.btn-outline:hover{background:oklch(96% 0.01 90);}
.btn-small{padding:8px 14px;font-size:12.5px;border-radius:8px;}
.btn-block{width:100%;}

/* Hero */
.hero{background:linear-gradient(180deg, var(--sand) 0%, var(--bg) 100%);}
.hero__inner{
  max-width:1180px;margin:0 auto;padding:64px 20px 56px;
  display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:40px;align-items:center;
}
.hero__badge{
  display:inline-block;background:var(--sand-3);color:oklch(38% 0.07 235);font-size:12px;font-weight:700;
  letter-spacing:0.04em;padding:6px 12px;border-radius:999px;margin-bottom:16px;
}
.hero h1{font-family:var(--font-head);font-weight:800;font-size:clamp(32px,4.5vw,52px);line-height:1.08;margin:0 0 18px;color:oklch(28% 0.07 240);}
.hero p{font-size:17px;line-height:1.6;color:var(--ink-soft);max-width:480px;margin:0 0 26px;}
.hero__cta{display:flex;gap:14px;flex-wrap:wrap;}
.hero__img{aspect-ratio:6/5;border-radius:20px;overflow:hidden;}
.hero__img img{width:100%;height:100%;object-fit:cover;}

/* Trust badges */
.trust-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;padding:12px 0 50px;}
.trust-card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px 14px;text-align:center;}
.trust-card__icon{width:36px;height:36px;border-radius:999px;background:oklch(92% 0.04 80);margin:0 auto 10px;display:flex;align-items:center;justify-content:center;font-size:16px;color:oklch(45% 0.08 235);}
.trust-card__text{font-size:13px;font-weight:600;line-height:1.35;}

/* Sections */
.section{padding:56px 0;}
.section--tint{background:var(--sand-2);}
.section__head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:26px;flex-wrap:wrap;gap:8px;}
.section__head h2{font-family:var(--font-head);font-size:28px;font-weight:700;margin:0;}
.section__more{cursor:pointer;font-size:14px;font-weight:600;color:var(--link);}

/* Category grid */
.cat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.cat-card{cursor:pointer;background:#fff;border-radius:16px;overflow:hidden;border:1px solid var(--line);display:block;}
.cat-card__img{aspect-ratio:4/3;overflow:hidden;}
.cat-card__img img{width:100%;height:100%;object-fit:cover;}
.cat-card__label{padding:14px 16px;font-weight:700;font-size:15px;color:var(--ink);}

/* Product grid & card */
.prod-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.product-card{background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;height:100%;}
.product-card__img{cursor:pointer;aspect-ratio:1/1;overflow:hidden;display:block;}
.product-card__img img{width:100%;height:100%;object-fit:cover;}
.product-card__body{padding:14px 16px 16px;display:flex;flex-direction:column;flex:1;}
.product-card__cat{font-size:11px;font-weight:700;letter-spacing:0.04em;color:var(--link);text-transform:uppercase;margin-bottom:6px;}
.product-card__name{cursor:pointer;font-size:14.5px;font-weight:600;line-height:1.35;margin-bottom:10px;flex:1;color:var(--ink);}
.product-card__row{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.product-card__price{font-size:17px;font-weight:800;color:var(--brand-text);}

/* Newsletter */
.newsletter{background:var(--brand-dark);padding:54px 0;}
.newsletter__inner{max-width:1180px;margin:0 auto;padding:0 20px;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:30px;align-items:center;}
.newsletter h2{font-family:var(--font-head);color:#fff;font-size:26px;font-weight:700;margin:0 0 10px;}
.newsletter p{color:oklch(90% 0.02 240);font-size:15px;margin:0;}
.newsletter-form{display:flex;gap:10px;flex-wrap:wrap;}
.newsletter-form input{flex:1;min-width:220px;padding:13px 16px;border-radius:10px;border:none;font-size:14px;font-family:inherit;}
.newsletter-form button{background:var(--sand-3);color:oklch(30% 0.07 235);border:none;padding:13px 22px;border-radius:10px;font-weight:700;cursor:pointer;font-family:inherit;white-space:nowrap;}

/* Article grid & card */
.article-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.article-card{cursor:pointer;background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;height:100%;}
.article-card__img{aspect-ratio:16/10;overflow:hidden;}
.article-card__img img{width:100%;height:100%;object-fit:cover;}
.article-card__body{padding:16px;display:flex;flex-direction:column;flex:1;}
.article-card__meta{font-size:11px;font-weight:700;letter-spacing:0.04em;color:var(--link);text-transform:uppercase;margin-bottom:8px;}
.article-card__title{font-size:15px;font-weight:700;line-height:1.35;margin-bottom:8px;color:var(--ink);}
.article-card__excerpt{font-size:13px;color:var(--ink-soft-2);line-height:1.5;flex:1;}
.article-card__read{font-size:12px;color:var(--link);font-weight:600;margin-top:12px;}

/* Breadcrumb */
.breadcrumb{font-size:13px;color:var(--ink-mute);margin-bottom:6px;}
.breadcrumb a{color:var(--ink-mute);cursor:pointer;}
.breadcrumb a:hover{color:var(--link);}

/* Shop */
.shop-head{margin-bottom:22px;}
.shop-head h1{font-family:var(--font-head);font-size:32px;font-weight:800;margin:0 0 6px;}
.shop-head p{color:var(--ink-soft);font-size:15px;margin:0;}
.shop-filters{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:28px;}
.filter-chip{cursor:pointer;padding:9px 16px;border-radius:999px;font-size:13.5px;font-weight:600;background:var(--sand-2);color:var(--ink-soft-2);border:none;font-family:inherit;}
.filter-chip.active{background:var(--brand);color:#fff;}

/* Product detail */
.product-detail{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:42px;}
.product-detail__gallery{aspect-ratio:1/1;border-radius:18px;overflow:hidden;}
.product-detail__gallery img{width:100%;height:100%;object-fit:cover;}
.product-detail__cat{font-size:12px;font-weight:700;letter-spacing:0.05em;color:var(--link);text-transform:uppercase;margin-bottom:8px;}
.product-detail h1{font-family:var(--font-head);font-size:30px;font-weight:800;margin:0 0 14px;}
.product-detail__price{font-size:26px;font-weight:800;color:var(--brand-text);margin-bottom:16px;}
.product-detail__desc{font-size:15px;line-height:1.65;color:var(--ink-soft);margin:0 0 20px;}
.feature-list{margin-bottom:24px;}
.feature-list__title{font-weight:700;font-size:14px;margin-bottom:10px;}
.feature-item{display:flex;gap:8px;align-items:baseline;font-size:14px;color:oklch(38% 0.02 250);margin-bottom:6px;}
.feature-item__check{color:var(--link);}
.buy-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
.qty-control{display:flex;align-items:center;border:1px solid var(--line-3);border-radius:10px;}
.qty-control button{width:38px;height:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:16px;background:none;border:none;}
.qty-control__val{width:32px;text-align:center;font-weight:700;}
.buy-row .btn-primary{flex:1;padding:14px 20px;}
.delivery-info{margin-top:22px;padding-top:18px;border-top:1px solid var(--line);font-size:13px;color:var(--ink-soft-3);display:flex;flex-direction:column;gap:6px;}

/* Article detail */
.article-detail{max-width:760px;margin:0 auto;}
.article-detail__meta{font-size:12px;font-weight:700;letter-spacing:0.05em;color:var(--link);text-transform:uppercase;margin-bottom:10px;}
.article-detail h1{font-family:var(--font-head);font-size:32px;font-weight:800;margin:0 0 20px;line-height:1.2;}
.article-detail__img{aspect-ratio:16/8;border-radius:16px;overflow:hidden;margin-bottom:26px;}
.article-detail__img img{width:100%;height:100%;object-fit:cover;}
.article-detail p{font-size:16px;line-height:1.75;color:oklch(32% 0.02 250);margin:0 0 18px;}
.article-cta{margin-top:36px;padding:22px;border-radius:14px;background:var(--sand);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;}
.article-cta__text{font-weight:700;font-size:15px;}

/* Static pages */
.static-page{max-width:760px;margin:0 auto;}
.static-page--wide{max-width:900px;}
.static-page h1{font-family:var(--font-head);font-weight:800;margin:0 0 18px;}
.static-page__date{font-size:14px;color:var(--ink-soft-3);margin:0 0 26px;}
.static-page p{font-size:15px;line-height:1.75;color:oklch(35% 0.02 250);}
.legal-body{display:flex;flex-direction:column;gap:18px;}

.stats-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-bottom:36px;}
.stat-card{background:var(--sand-2);border-radius:14px;padding:22px;text-align:center;}
.stat-card__num{font-family:var(--font-head);font-size:28px;font-weight:800;color:oklch(38% 0.09 235);}
.stat-card__label{font-size:13px;color:var(--ink-soft-3);margin-top:4px;}
.principles{display:flex;flex-direction:column;gap:10px;}
.principles p{font-size:15px;line-height:1.6;margin:0;}

/* Contact */
.contact-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:36px;}
.contact-card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:26px;margin-bottom:16px;}
.contact-card__title{font-weight:700;font-size:15px;margin-bottom:14px;}
.contact-card__body{font-size:14px;line-height:1.9;color:oklch(38% 0.02 250);}
.contact-legal{background:var(--sand);border-radius:16px;padding:22px;font-size:13px;color:oklch(38% 0.03 235);line-height:1.7;}
.contact-form-card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:26px;}
.form-stack{display:flex;flex-direction:column;gap:14px;}
.form-group label{font-size:13px;font-weight:600;display:block;margin-bottom:6px;}
.form-group input, .form-group textarea{width:100%;padding:11px 14px;border-radius:9px;border:1px solid var(--line-3);font-family:inherit;font-size:14px;}
.form-group textarea{resize:vertical;}
.form-msg{font-size:13px;margin-top:6px;display:none;}
.form-msg.show{display:block;}
.form-msg.ok{color:oklch(45% 0.12 150);}
.form-msg.err{color:var(--danger);}

/* Toast */
.toast{
  position:fixed;bottom:26px;right:26px;background:oklch(28% 0.02 250);color:#fff;padding:14px 20px;
  border-radius:10px;font-size:14px;font-weight:600;z-index:60;box-shadow:0 8px 24px oklch(20% 0.02 250 / 0.3);
  animation:zk-fade 0.2s ease;display:none;max-width:min(360px,80vw);
}
.toast.show{display:block;}

/* Cookie banner */
.cookie-banner{
  position:fixed;left:0;right:0;bottom:0;background:#fff;border-top:1px solid var(--line-2);
  box-shadow:0 -6px 20px oklch(20% 0.02 250 / 0.08);padding:18px 24px;z-index:70;
  display:none;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;
}
.cookie-banner.show{display:flex;}
.cookie-banner__text{font-size:13px;color:oklch(38% 0.02 250);max-width:640px;line-height:1.5;}
.cookie-banner__text a{text-decoration:underline;cursor:pointer;}
.cookie-banner__actions{display:flex;gap:10px;}
.cookie-banner__actions button{border:none;padding:10px 18px;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;font-family:inherit;}
.cookie-decline{background:transparent;border:1px solid var(--line-3) !important;}
.cookie-accept{background:var(--brand);color:#fff;font-weight:700;}

/* 404 */
.not-found{max-width:600px;margin:0 auto;padding:90px 20px;text-align:center;}
.not-found h1{font-family:var(--font-head);font-size:72px;font-weight:800;margin:0;color:var(--brand);}
.not-found p{font-size:16px;color:var(--ink-soft);margin:10px 0 26px;}

/* Footer */
.site-footer{background:var(--footer-bg);color:var(--footer-text);margin-top:20px;}
.footer-grid{max-width:1180px;margin:0 auto;padding:52px 20px 26px;display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:30px;}
.footer-brand{font-family:var(--font-head);font-weight:800;font-size:19px;color:#fff;margin-bottom:10px;}
.footer-desc{font-size:13px;line-height:1.7;color:var(--footer-text-2);max-width:280px;margin:0;}
.footer-col-title{font-weight:700;font-size:13px;color:#fff;margin-bottom:14px;text-transform:uppercase;letter-spacing:0.04em;}
.footer-links{display:flex;flex-direction:column;gap:9px;}
.footer-links a, .footer-links span{font-size:13.5px;color:var(--footer-text-2);cursor:pointer;}
.footer-links a:hover{color:#fff;}
.footer-bottom{max-width:1180px;margin:0 auto;padding:20px 20px 30px;border-top:1px solid var(--footer-line);display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:12px;color:var(--footer-text-3);}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr;}
  .hero__img{order:-1;}
  .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .cat-grid, .prod-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .article-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .product-detail{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .stats-grid{grid-template-columns:1fr;}
}
@media (max-width: 600px){
  .trust-grid, .cat-grid, .prod-grid, .article-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .newsletter__inner{grid-template-columns:1fr;}
  .site-header__inner{padding:12px 16px;}
  .not-found h1{font-size:52px;}
}
