/* ===========================================================
   AutoDiag Mistr — shared stylesheet
   Self-contained, no external fonts/CDN. System font stacks
   approximate the original Barlow Condensed / IBM Plex Sans/Mono.
   =========================================================== */

:root{
  --bg:#F6F5F3;
  --text:#14181B;
  --accent:#F2A33C;
  --accent-dark:#B36A00;

  --dark:#101315;
  --dark-2:#14181B;
  --dark-3:#191d21;
  --dark-border:#23282c;
  --dark-border-2:#2C3236;
  --dark-border-3:#3A4046;

  --muted-1:#8A939B;
  --muted-2:#9AA2A9;
  --muted-3:#A9B1B8;
  --muted-4:#B9C0C6;
  --muted-5:#D7DBDF;
  --muted-6:#6E767E;

  --lb-1:#DCD9D4;
  --lb-2:#E3E0DB;
  --lb-3:#EDEAE5;
  --lb-4:#E6E3DE;
  --lb-5:#CFCBC5;

  --tm-1:#5A6268;
  --tm-2:#7C848C;
  --tm-3:#3E464C;
  --tm-4:#2E3438;

  --white:#FFFFFF;
  --success:#2E7D32;
  --danger:#A0430F;

  --font-head:'Arial Narrow', 'Segoe UI Semibold', Arial, sans-serif;
  --font-body:'Segoe UI', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --font-mono:Consolas, 'SFMono-Regular', Menlo, monospace;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family:var(--font-body); -webkit-font-smoothing:antialiased; }
body{ min-height:100vh; display:flex; flex-direction:column; }
a{ color:var(--accent-dark); text-decoration:none; }
a:hover{ color:var(--text); text-decoration:underline; }
h1,h2,h3,h4{ margin:0; font-family:var(--font-head); text-transform:uppercase; letter-spacing:0.01em; font-weight:700; }
p{ margin:0; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:15px; }
ul{ margin:0; padding:0; list-style:none; }
.container{ max-width:1200px; margin:0 auto; padding:0 28px; }
.visually-hidden{ position:absolute !important; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* honeypot field */
.hp-field{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }

main{ flex:1; }

/* ---------- buttons ---------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; border:none; font-size:16px; font-weight:600; padding:16px 26px; text-decoration:none; text-align:center; }
.btn:hover{ text-decoration:none; }
.btn-primary{ background:var(--accent); color:var(--dark-2); }
.btn-primary:hover{ background:var(--bg); color:var(--dark-2); }
.btn-outline-dark{ background:none; color:var(--white); border:1px solid var(--dark-border-3); }
.btn-outline-dark:hover{ border-color:var(--accent); color:var(--accent); }
.btn-outline-light{ background:none; color:var(--text); border:1px solid var(--text); }
.btn-outline-light:hover{ background:var(--text); color:var(--bg); }
.btn-dark{ background:var(--dark-2); color:var(--bg); border:none; }
.btn-dark:hover{ background:var(--accent); color:var(--dark-2); }
.btn-black{ background:var(--dark-2); color:var(--white); border:none; }
.btn-black:hover{ background:var(--accent); color:var(--dark-2); }
.btn-small{ padding:12px 16px; font-size:13.5px; }
.btn-full{ width:100%; }

/* ---------- promo bar ---------- */
.promo-bar{ background:var(--accent); color:var(--text); font-size:13px; font-weight:600; letter-spacing:0.03em; text-align:center; padding:9px 16px; }

/* ---------- header ---------- */
.site-header{ position:sticky; top:0; z-index:40; background:var(--dark); color:var(--bg); border-bottom:1px solid var(--dark-border); }
.header-inner{ max-width:1200px; margin:0 auto; padding:0 28px; display:flex; align-items:center; gap:24px; height:74px; }
.logo{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.logo-mark{ width:38px; height:38px; border:2px solid var(--accent); display:grid; place-items:center; font-family:var(--font-head); font-size:20px; font-weight:700; color:var(--accent); }
.logo-name{ font-family:var(--font-head); font-size:23px; font-weight:700; text-transform:uppercase; line-height:1; color:var(--bg); }
.logo-sub{ font-family:var(--font-mono); font-size:10px; letter-spacing:0.14em; color:var(--muted-1); text-transform:uppercase; }
.nav-toggle{ display:none; background:none; border:1px solid var(--dark-border-3); color:var(--bg); padding:9px 12px; font-size:14px; margin-left:auto; }
.main-nav{ display:flex; align-items:center; gap:2px; margin-left:auto; flex-wrap:wrap; }
.nav-link{ background:none; border:none; color:#D7DBDF; font-size:14px; font-weight:500; padding:8px 11px; letter-spacing:0.01em; text-decoration:none; }
.nav-link:hover{ color:var(--accent); text-decoration:none; }
.nav-link.is-active{ color:var(--accent); }
.cart-btn{ background:none; border:1px solid var(--dark-border-3); color:var(--bg); font-size:13px; font-weight:600; padding:10px 14px; display:flex; align-items:center; gap:8px; }
.cart-btn:hover{ border-color:var(--accent); color:var(--accent); }
.cart-badge{ background:var(--accent); color:var(--dark-2); min-width:20px; height:20px; display:grid; place-items:center; font-family:var(--font-mono); font-size:11px; padding:0 5px; }
.phone-btn{ background:var(--accent); color:var(--dark-2); font-size:14px; font-weight:600; padding:11px 16px; flex-shrink:0; }
.phone-btn:hover{ background:var(--bg); text-decoration:none; }

/* ---------- hero ---------- */
.hero{ background:var(--dark); color:var(--bg); position:relative; overflow:hidden; }
.hero::before{ content:""; position:absolute; inset:0; background:repeating-linear-gradient(115deg, rgba(242,163,60,0.07) 0 2px, transparent 2px 26px); }
.hero-inner{ max-width:1200px; margin:0 auto; padding:96px 28px 88px; display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center; position:relative; }
.hero-kicker{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.18em; color:var(--accent); text-transform:uppercase; margin-bottom:22px; }
.hero-title{ font-size:60px; line-height:0.98; margin-bottom:24px; }
.hero-desc{ font-size:19px; line-height:1.6; color:var(--muted-4); max-width:560px; margin:0 0 32px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }
.hero-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; border-top:1px solid var(--dark-border); padding-top:26px; max-width:600px; }
.hero-stat-v{ font-family:var(--font-head); font-size:34px; font-weight:700; color:var(--accent); line-height:1; }
.hero-stat-l{ font-size:13px; color:var(--muted-1); line-height:1.4; margin-top:4px; }
.hero-media{ display:grid; gap:0; }
.hero-photo{ aspect-ratio:4/5; overflow:hidden; border:1px solid var(--dark-border-2); }
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-price{ background:var(--accent); color:var(--dark-2); padding:16px 18px; display:flex; gap:12px; align-items:center; }
.hero-price-v{ font-family:var(--font-head); font-size:32px; font-weight:700; line-height:1; white-space:nowrap; }
.hero-price-l{ font-size:13px; font-weight:500; line-height:1.4; }

/* ---------- page head (inner pages) ---------- */
.page-head{ background:var(--dark); color:var(--bg); position:relative; overflow:hidden; }
.page-head::before{ content:""; position:absolute; inset:0; background:repeating-linear-gradient(115deg, rgba(242,163,60,0.07) 0 2px, transparent 2px 26px); }
.page-head-inner{ max-width:1200px; margin:0 auto; padding:64px 28px 58px; position:relative; }
.page-head-kicker{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.16em; color:var(--accent); text-transform:uppercase; margin-bottom:16px; }
.page-head-title{ font-size:46px; line-height:1.05; max-width:900px; }
.page-head-sub{ font-size:18px; color:var(--muted-4); line-height:1.6; max-width:760px; margin:18px 0 0; }

/* ---------- trust bar ---------- */
.trust-section{ background:var(--dark-2); color:var(--bg); border-top:1px solid var(--dark-border); }
.trust-grid{ max-width:1200px; margin:0 auto; padding:34px 28px; display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.trust-item{ display:flex; gap:12px; align-items:flex-start; }
.trust-dot{ width:8px; height:8px; background:var(--accent); margin-top:7px; flex-shrink:0; }
.trust-h{ font-size:15px; font-weight:600; margin-bottom:3px; }
.trust-p{ font-size:13px; color:var(--muted-1); line-height:1.5; }

/* ---------- generic section ---------- */
.section{ padding:88px 0; }
.section-tight{ padding:70px 0; }
.section-cream{ background:var(--bg); }
.section-white{ background:var(--white); }
.section-dark{ background:var(--dark); color:var(--bg); }
.section-dark-2{ background:var(--dark-2); color:var(--bg); }
.section-border-top{ border-top:1px solid var(--lb-2); }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:44px; flex-wrap:wrap; }
.kicker{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.16em; text-transform:uppercase; margin-bottom:12px; color:var(--accent-dark); }
.kicker-light{ color:var(--accent); }
.section-title{ font-size:40px; line-height:1.03; max-width:640px; }
.section-title-md{ font-size:36px; line-height:1.05; }
.section-lead{ font-size:15px; color:var(--tm-1); line-height:1.6; max-width:400px; margin:0; }

/* ---------- services ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--lb-1); border:1px solid var(--lb-1); }
.service-card{ background:var(--white); padding:32px 28px 30px; display:flex; flex-direction:column; gap:14px; transition:background .15s,color .15s; }
.service-card:hover{ background:var(--dark); color:var(--bg); }
.service-no{ font-family:var(--font-mono); font-size:12px; color:var(--accent-dark); }
.service-card:hover .service-no{ color:var(--accent); }
.service-h{ font-size:22px; line-height:1.1; }
.service-p{ font-size:14.5px; line-height:1.65; color:var(--tm-1); margin:0; flex:1; }
.service-card:hover .service-p{ color:var(--muted-4); }
.service-foot{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--lb-4); padding-top:14px; font-size:13px; }
.service-card:hover .service-foot{ border-top-color:var(--dark-border); }
.service-time{ color:var(--muted-1); }
.service-price{ font-family:var(--font-head); font-size:20px; font-weight:700; color:var(--text); }
.service-card:hover .service-price{ color:var(--bg); }

/* ---------- process ---------- */
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.step{ border-top:2px solid var(--accent); padding-top:20px; }
.step-n{ font-family:var(--font-head); font-size:42px; font-weight:700; color:var(--dark-border-2); line-height:1; margin-bottom:10px; }
.step-h{ font-size:20px; margin-bottom:10px; }
.step-p{ font-size:14.5px; line-height:1.65; color:var(--muted-2); margin:0; }
.process-cta{ margin-top:44px; background:var(--dark-3); border-left:3px solid var(--accent); padding:26px 28px; display:grid; grid-template-columns:1fr auto; gap:24px; align-items:center; }
.process-cta p{ margin:0; font-size:16px; line-height:1.6; color:#D7DBDF; }

/* ---------- pricing ---------- */
.pricing-table{ border:1px solid var(--lb-1); }
.price-row{ display:grid; grid-template-columns:1fr 150px 150px; gap:18px; padding:18px 24px; border-bottom:1px solid var(--lb-3); align-items:center; }
.price-row:last-child{ border-bottom:none; }
.price-row:hover{ background:#FAF9F7; }
.price-h{ font-size:16px; font-weight:600; }
.price-p{ font-size:13.5px; color:var(--tm-2); line-height:1.5; margin-top:3px; }
.price-time{ font-family:var(--font-mono); font-size:13px; color:var(--tm-2); }
.price-value{ font-family:var(--font-head); font-size:24px; font-weight:700; text-align:right; }
.price-notes{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.price-note{ background:var(--bg); padding:22px; border-top:2px solid var(--text); }
.price-note-h{ font-size:15px; font-weight:600; margin-bottom:6px; }
.price-note-p{ font-size:13.5px; color:var(--tm-1); line-height:1.6; }

/* ---------- shop ---------- */
.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.product-card{ background:var(--white); border:1px solid var(--lb-1); display:flex; flex-direction:column; }
.product-photo{ aspect-ratio:4/3; overflow:hidden; position:relative; }
.product-photo img{ width:100%; height:100%; object-fit:cover; }
.product-badge{ position:absolute; top:0; left:0; background:var(--dark-2); color:var(--accent); font-size:11px; font-weight:600; letter-spacing:0.08em; padding:6px 10px; text-transform:uppercase; }
.product-body{ padding:22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-cat{ font-family:var(--font-mono); font-size:11px; color:var(--muted-1); }
.product-title{ font-size:19px; line-height:1.15; }
.product-desc{ font-size:13.5px; color:var(--tm-1); line-height:1.6; margin:0; flex:1; }
.product-stock{ font-size:12.5px; color:var(--success); font-weight:600; }
.product-buy-row{ display:flex; justify-content:space-between; align-items:center; gap:12px; border-top:1px solid var(--lb-3); padding-top:14px; }
.product-price{ font-family:var(--font-head); font-size:26px; font-weight:700; }
.shop-perks-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--lb-1); border:1px solid var(--lb-1); margin-top:40px; }
.shop-perk{ background:var(--white); padding:22px; }
.shop-perk-h{ font-size:14.5px; font-weight:600; margin-bottom:5px; }
.shop-perk-p{ font-size:13px; color:var(--tm-1); line-height:1.6; }

/* ---------- about ---------- */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.about-text p{ font-size:16px; line-height:1.75; color:var(--tm-3); margin:0 0 16px; }
.about-facts-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:34px; }
.about-fact{ border-left:2px solid var(--accent); padding-left:14px; }
.about-fact-v{ font-family:var(--font-head); font-size:30px; font-weight:700; line-height:1; }
.about-fact-l{ font-size:13.5px; color:var(--tm-1); line-height:1.5; margin-top:4px; }
.about-photo{ aspect-ratio:3/2; overflow:hidden; }
.about-photo img{ width:100%; height:100%; object-fit:cover; }
.team-box{ background:var(--bg); padding:28px; margin-top:24px; }
.team-member{ display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--lb-2); align-items:center; }
.team-member:last-of-type{ border-bottom:none; }
.team-avatar{ width:46px; height:46px; border-radius:50%; overflow:hidden; flex-shrink:0; background:repeating-linear-gradient(135deg,#E1DED9 0 7px,#D8D5D0 7px 14px); }
.team-avatar img{ width:100%; height:100%; object-fit:cover; }
.team-name{ font-size:15px; font-weight:600; }
.team-role{ font-size:13px; color:var(--tm-1); line-height:1.5; }
.team-note{ font-size:13.5px; color:var(--tm-1); line-height:1.6; margin:16px 0 0; }

/* ---------- reviews ---------- */
.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.review-card{ background:var(--white); border:1px solid var(--lb-1); padding:28px; display:flex; flex-direction:column; gap:14px; }
.review-stars{ color:var(--accent); font-size:15px; letter-spacing:2px; }
.review-text{ font-size:15px; line-height:1.7; color:var(--tm-3); margin:0; flex:1; }
.review-foot{ border-top:1px solid var(--lb-3); padding-top:14px; }
.review-name{ font-size:14px; font-weight:600; }
.review-car{ font-size:12.5px; color:var(--muted-1); }

/* ---------- blog ---------- */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.blog-card{ display:flex; flex-direction:column; gap:14px; color:inherit; }
.blog-card:hover{ opacity:.8; text-decoration:none; }
.blog-photo{ aspect-ratio:16/10; overflow:hidden; }
.blog-photo img{ width:100%; height:100%; object-fit:cover; }
.blog-meta{ display:flex; gap:12px; font-family:var(--font-mono); font-size:11px; color:var(--muted-1); }
.blog-meta .cat{ color:var(--accent-dark); }
.blog-title{ font-size:21px; line-height:1.15; color:var(--text); }
.blog-excerpt{ font-size:14.5px; color:var(--tm-1); line-height:1.65; margin:0; }

/* ---------- article ---------- */
.article-wrap{ max-width:820px; margin:0 auto; padding:70px 28px 84px; }
.article-back{ background:none; border:none; padding:0; color:var(--accent-dark); font-size:14px; font-weight:600; margin-bottom:26px; display:inline-block; }
.article-photo{ aspect-ratio:16/9; overflow:hidden; margin-bottom:34px; }
.article-photo img{ width:100%; height:100%; object-fit:cover; }
.article-body p{ font-size:17px; line-height:1.8; color:var(--tm-4); margin:0 0 20px; }
.article-cta{ background:var(--bg); border-left:3px solid var(--accent); padding:24px 26px; margin-top:34px; }
.article-cta p{ margin:0 0 16px; font-size:16px; line-height:1.7; color:var(--text); }

/* ---------- faq ---------- */
.faq-section{ background:var(--dark); color:var(--bg); }
.faq-wrap{ max-width:1000px; margin:0 auto; padding:84px 28px; }
details.faq-item{ border-bottom:1px solid var(--dark-border); }
details.faq-item summary{ cursor:pointer; width:100%; padding:22px 0; display:flex; justify-content:space-between; gap:20px; align-items:center; font-size:18px; font-weight:600; list-style:none; }
details.faq-item summary::-webkit-details-marker{ display:none; }
details.faq-item summary:hover{ color:var(--accent); }
.faq-sign{ color:var(--accent); font-size:22px; flex-shrink:0; }
details.faq-item[open] .faq-sign-plus{ display:none; }
.faq-sign-minus{ display:none; }
details.faq-item[open] .faq-sign-minus{ display:inline; }
.faq-answer{ margin:0 0 24px; font-size:15.5px; line-height:1.75; color:var(--muted-3); max-width:840px; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.contact-lead{ font-size:15px; color:var(--tm-1); line-height:1.65; margin:0 0 26px; }
.contact-lead button{ background:none; border:none; padding:0; color:var(--accent-dark); font-size:15px; font-weight:600; text-decoration:underline; }
.form-grid{ display:grid; gap:16px; }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field{ display:grid; gap:7px; font-size:13px; font-weight:600; color:var(--tm-3); }
.form-field input, .form-field textarea, .form-field select{ border:1px solid var(--lb-5); padding:13px 14px; font-size:15px; background:var(--white); color:var(--text); }
.form-field textarea{ resize:vertical; }
.form-note{ font-size:12.5px; color:var(--muted-1); line-height:1.6; }
.form-success{ background:var(--dark-2); color:var(--bg); padding:28px; }
.form-success h3{ font-size:22px; color:var(--accent); margin-bottom:10px; }
.form-success p{ margin:0; font-size:15px; line-height:1.7; color:var(--muted-4); }
.form-error{ background:#F4E3DA; border:1px solid var(--danger); color:var(--danger); padding:16px 18px; font-size:14px; font-weight:600; }
.contact-info-box{ background:var(--bg); padding:30px; }
.contact-info-box h3{ font-size:22px; margin-bottom:18px; }
.contact-info-list{ display:grid; gap:12px; font-size:15px; line-height:1.6; color:var(--tm-3); }
.map-box{ aspect-ratio:16/10; background:repeating-linear-gradient(135deg,#E7E4DF 0 9px,#DFDCD7 9px 18px); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:14px; margin-top:24px; border:1px solid var(--lb-1); padding:24px; }
.map-pin{ width:34px; height:34px; }
.map-address{ font-family:var(--font-mono); font-size:12.5px; color:var(--tm-1); line-height:1.7; }
.billing-box{ background:var(--dark); color:var(--bg); padding:26px; margin-top:24px; }
.billing-box h3{ font-size:19px; color:var(--accent); margin-bottom:14px; }
.billing-box div{ font-size:14px; line-height:1.8; color:var(--muted-4); font-family:var(--font-mono); }

/* ---------- cities ---------- */
.cities-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--lb-1); border:1px solid var(--lb-1); }
.city-card{ background:var(--white); padding:20px; }
.city-name{ font-size:16px; font-weight:600; margin-bottom:4px; }
.city-note{ font-size:13px; color:var(--tm-1); line-height:1.55; }

/* ---------- legal ---------- */
.legal-wrap{ max-width:900px; margin:0 auto; padding:70px 28px 90px; }
.legal-meta{ font-family:var(--font-mono); font-size:12px; color:var(--muted-1); margin-bottom:26px; }
.legal-intro{ font-size:17px; line-height:1.8; color:var(--tm-4); margin:0 0 32px; }
.legal-section{ margin-bottom:34px; }
.legal-section h2{ font-size:22px; line-height:1.15; margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--lb-2); }
.legal-section p{ font-size:15.5px; line-height:1.8; color:var(--tm-3); margin:0 0 14px; }
.legal-footer-box{ background:var(--bg); padding:26px; font-size:14.5px; line-height:1.75; color:var(--tm-3); }

/* ---------- cta ---------- */
.cta-section{ background:var(--accent); color:var(--text); }
.cta-inner{ max-width:1200px; margin:0 auto; padding:56px 28px; display:grid; grid-template-columns:1fr auto; gap:32px; align-items:center; }
.cta-inner h2{ font-size:32px; line-height:1.05; margin-bottom:10px; }
.cta-inner p{ margin:0; font-size:16px; line-height:1.6; max-width:700px; }
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.cta-actions a, .cta-actions button{ white-space:nowrap; }

/* ---------- footer ---------- */
.site-footer{ background:var(--dark); color:var(--muted-1); font-size:13.5px; }
.footer-grid{ max-width:1200px; margin:0 auto; padding:64px 28px 34px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; }
.footer-brand{ font-family:var(--font-head); font-size:22px; font-weight:700; color:var(--bg); text-transform:uppercase; margin-bottom:12px; }
.footer-about{ margin:0 0 16px; line-height:1.7; }
.footer-fine{ line-height:1.9; font-family:var(--font-mono); font-size:12.5px; }
.footer-fine a{ color:var(--muted-1); }
.footer-col-h{ color:var(--bg); font-family:var(--font-head); font-size:16px; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:14px; }
.footer-links{ display:flex; flex-direction:column; gap:9px; align-items:flex-start; }
.footer-links a{ color:var(--muted-1); font-size:13.5px; text-align:left; }
.footer-links a:hover{ color:var(--accent); }
.footer-bottom-border{ border-top:1px solid var(--dark-border); }
.footer-bottom{ max-width:1200px; margin:0 auto; padding:20px 28px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:12.5px; }

/* ---------- cart drawer ---------- */
.cart-overlay{ position:fixed; inset:0; z-index:60; display:none; justify-content:flex-end; }
.cart-overlay.is-open{ display:flex; }
.cart-backdrop{ position:absolute; inset:0; background:rgba(16,19,21,0.6); border:none; padding:0; }
.cart-panel{ position:relative; width:440px; max-width:100%; background:var(--white); height:100%; display:flex; flex-direction:column; box-shadow:-20px 0 60px rgba(0,0,0,0.25); }
.cart-panel-head{ padding:22px 26px; border-bottom:1px solid var(--lb-2); display:flex; justify-content:space-between; align-items:center; }
.cart-panel-head h3{ font-size:22px; }
.cart-close{ background:none; border:none; font-size:22px; color:var(--tm-1); padding:0 4px; }
.cart-panel-body{ flex:1; overflow:auto; padding:8px 26px; }
.cart-empty{ padding:50px 0; text-align:center; color:var(--tm-2); }
.cart-empty p{ font-size:15px; line-height:1.7; margin:0 0 20px; }
.cart-line{ display:grid; grid-template-columns:64px 1fr auto; gap:14px; padding:18px 0; border-bottom:1px solid var(--lb-3); align-items:center; }
.cart-line-img{ width:64px; height:64px; overflow:hidden; background:#EFEDE9; }
.cart-line-img img{ width:100%; height:100%; object-fit:cover; }
.cart-line-title{ font-size:14.5px; font-weight:600; line-height:1.3; }
.cart-line-unit{ font-size:12.5px; color:var(--muted-1); margin:4px 0 8px; }
.cart-qty{ display:flex; align-items:center; gap:8px; }
.cart-qty button{ width:26px; height:26px; border:1px solid var(--lb-5); background:var(--white); font-size:14px; line-height:1; }
.cart-qty span{ font-family:var(--font-mono); font-size:14px; min-width:18px; text-align:center; }
.cart-remove{ background:none; border:none; color:var(--danger); font-size:12.5px; margin-left:6px; }
.cart-line-total{ font-family:var(--font-head); font-size:20px; font-weight:700; }
.cart-panel-foot{ border-top:1px solid var(--lb-2); padding:22px 26px; background:var(--bg); }
.cart-summary-row{ display:flex; justify-content:space-between; font-size:14px; color:var(--tm-1); margin-bottom:8px; }
.cart-total-row{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:16px; }
.cart-total-row span:first-child{ font-size:15px; font-weight:600; }
.cart-total-row span:last-child{ font-family:var(--font-head); font-size:28px; font-weight:700; }
.cart-fine{ font-size:12px; color:var(--muted-1); line-height:1.6; margin-top:12px; }

/* ---------- cookie bar ---------- */
.cookie-bar{ position:fixed; bottom:0; left:0; right:0; z-index:50; background:var(--dark-2); color:#D7DBDF; border-top:2px solid var(--accent); display:none; }
.cookie-bar.is-open{ display:block; }
.cookie-inner{ max-width:1200px; margin:0 auto; padding:20px 28px; display:grid; grid-template-columns:1fr auto; gap:26px; align-items:center; }
.cookie-text{ font-size:13.5px; line-height:1.65; }
.cookie-text button{ background:none; border:none; padding:0; color:var(--accent); font-size:13.5px; text-decoration:underline; }
.cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* ---------- kosik / cart page ---------- */
.cart-page-grid{ display:grid; grid-template-columns:1.6fr 1fr; gap:48px; align-items:start; }
.cart-page-lines{ background:var(--white); border:1px solid var(--lb-1); }
.cart-page-summary{ background:var(--bg); padding:26px; }

/* ---------- misc / responsive ---------- */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .cart-page-grid{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .steps-grid{ grid-template-columns:repeat(2,1fr); }
  .shop-grid{ grid-template-columns:repeat(2,1fr); }
  .reviews-grid{ grid-template-columns:1fr; }
  .blog-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .cities-grid{ grid-template-columns:repeat(2,1fr); }
  .shop-perks-grid{ grid-template-columns:repeat(2,1fr); }
  .price-notes{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .hero-title{ font-size:46px; }
}

@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; }
  .main-nav{ display:none; flex-direction:column; align-items:flex-start; width:100%; margin-left:0; order:5; }
  .main-nav.is-open{ display:flex; }
  .header-inner{ flex-wrap:wrap; height:auto; padding-top:14px; padding-bottom:14px; }
  .nav-link{ width:100%; padding:12px 4px; border-bottom:1px solid var(--dark-border); }
}

@media (max-width: 640px){
  .services-grid, .steps-grid, .shop-grid, .blog-grid, .trust-grid, .cities-grid, .shop-perks-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .form-row-2{ grid-template-columns:1fr; }
  .price-row{ grid-template-columns:1fr; gap:6px; }
  .price-value{ text-align:left; }
  .cta-inner{ grid-template-columns:1fr; }
  .hero-title{ font-size:36px; }
  .hero-stats{ grid-template-columns:1fr; }
  .section-title{ font-size:30px; }
  .cart-panel{ width:100%; }
}
