/* Klimafix — servis autoklimatizácií — hlavný štýl webu */
@import url('fonts.css');

:root {
  --dark: #12191d;
  --dark2: #16232a;
  --dark3: #1b2529;
  --border-dark: #2b3a41;
  --border-dark2: #3d5158;
  --teal: #0f8ea8;
  --teal-dark: #0b7288;
  --teal-hover: #0b6f83;
  --amber: #e8a33d;
  --amber-hover: #f0b558;
  --cyan: #6fc7dc;
  --bg: #f4f7f8;
  --text: #12191d;
  --text2: #33474e;
  --text3: #5c6b73;
  --text4: #6d8189;
  --text5: #90a6ae;
  --text6: #9bb0b8;
  --border: #dde5e8;
  --border2: #eef2f4;
  --surface2: #eef4f6;
  --surface3: #e4edf0;
  --blue1: #cfe3e9;
  --blue2: #b9cdd4;
  --blue3: #dbe8ec;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-hover); text-decoration: underline; }
img { max-width: 100%; display: block; }
::selection { background: #b8e6f0; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; }

@keyframes kfSlideIn { from { transform: translateX(24px); opacity: 0 } to { transform: translateX(0); opacity: 1 } }
@keyframes kfUp { from { transform: translateY(16px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.kf-anim { animation: kfUp .3s ease; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 76px 24px; }
.section .container, .container.section { padding-top: 76px; padding-bottom: 76px; }

.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.eyebrow.on-dark { color: var(--cyan); }

/* ---------- Top utility bar + promo ---------- */
.promo-bar { background: var(--dark); color: var(--blue1); font-size: 13px; letter-spacing: .04em; padding: 9px 24px; display: flex; justify-content: center; gap: 10px; align-items: center; text-align: center; }
.promo-bar .dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; flex: none; }

.topbar { background: var(--dark3); color: var(--text5); font-size: 13px; padding: 7px 24px; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center; }
.topbar .phone { color: var(--blue3); font-weight: 600; }
.topbar .hours { margin-left: auto; }
.topbar a { color: inherit; }
.topbar a:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: #ffffffee; backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-header .container { padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; cursor: pointer; flex: none; }
.brand-mark { width: 38px; height: 38px; background: var(--teal); display: grid; place-items: center; border-radius: 9px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 21px; letter-spacing: -.02em; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 23px; letter-spacing: .01em; text-transform: uppercase; line-height: 1; }
.brand-sub { font-family: var(--font-mono); font-size: 10px; color: var(--text4); letter-spacing: .14em; text-transform: uppercase; line-height: 1.4; }

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto; }
.main-nav a { padding: 9px 13px; border-radius: 8px; font-weight: 600; font-size: 15px; color: var(--text2); }
.main-nav a:hover { background: var(--surface2); color: var(--teal); text-decoration: none; }
.main-nav a.active { color: var(--teal); background: var(--surface2); }

.header-actions { display: flex; gap: 10px; align-items: center; flex: none; }
.cart-btn { position: relative; padding: 10px 15px; border: 1px solid var(--border); border-radius: 9px; font-weight: 600; font-size: 15px; cursor: pointer; background: #fff; color: var(--text); }
.cart-btn:hover { border-color: var(--teal); color: var(--teal); }
.cart-badge { position: absolute; top: -7px; right: -7px; min-width: 21px; height: 21px; background: var(--amber); color: var(--dark); border-radius: 11px; font-size: 12px; font-weight: 700; display: none; place-items: center; padding: 0 5px; }
.cart-badge.show { display: grid; }

.nav-toggle { display: none; flex: none; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; display: block; width: 18px; height: 2px; background: var(--text); position: relative; transition: .2s; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 15px 26px; border-radius: 10px; font-weight: 700; cursor: pointer; font-size: 17px; border: 1px solid transparent; text-align: center; }
.btn:hover { text-decoration: none; }
.btn-amber { background: var(--amber); color: var(--dark); }
.btn-amber:hover { background: var(--amber-hover); color: var(--dark); }
.btn-outline-light { border-color: var(--border-dark2); color: #fff; }
.btn-outline-light:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--teal); color: #fff; }
.btn-outline-dark { border-color: var(--border); color: var(--text2); background: #fff; }
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal); }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 15px; border-radius: 9px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); color: #fff; padding: 76px 24px 84px; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-family: var(--font-head); font-weight: 700; font-size: 62px; line-height: 1.02; margin: 0 0 22px; letter-spacing: -.01em; }
.hero p.lead { font-size: 19px; line-height: 1.6; color: var(--blue2); margin: 0 0 32px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--border-dark); padding-top: 26px; max-width: 560px; }
.hero-stats .num { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--cyan); line-height: 1; }
.hero-stats .lbl { font-size: 14px; color: var(--text5); margin-top: 6px; }

.hero-photo { border: 1px solid var(--border-dark); border-radius: 16px; overflow: hidden; background: var(--dark3); }
.hero-photo img { height: 250px; width: 100%; object-fit: cover; }
.photo-cover { width: 100%; object-fit: cover; display: block; }

/* ---------- Price calculator card ---------- */
.calc { padding: 26px 28px; }
.calc h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.calc-field { display: grid; gap: 6px; font-size: 13px; color: var(--text5); margin-bottom: 12px; }
.calc-field select { padding: 11px 12px; background: var(--dark); border: 1px solid var(--border-dark2); color: #fff; border-radius: 8px; width: 100%; }
.calc-addons { display: grid; gap: 8px; margin-top: 4px; }
.calc-addon { display: flex; align-items: center; gap: 11px; cursor: pointer; font-size: 15px; color: var(--blue3); background: none; border: none; padding: 0; width: 100%; text-align: left; }
.calc-addon .box { width: 20px; height: 20px; border: 1px solid var(--border-dark2); border-radius: 5px; background: transparent; flex: none; }
.calc-addon.active .box { background: var(--amber); }
.calc-addon .price { margin-left: auto; color: var(--text5); font-family: var(--font-mono); font-size: 13px; }
.calc-total { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border-dark); display: flex; align-items: baseline; gap: 10px; }
.calc-total .lbl { font-size: 14px; color: var(--text5); }
.calc-total .val { margin-left: auto; font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--amber); line-height: 1; }
.calc-note { font-size: 12px; color: var(--text4); margin-top: 10px; text-align: center; }

/* ---------- Trust bar ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 30px 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; gap: 13px; align-items: flex-start; }
.trust-item .sq { width: 9px; height: 9px; background: var(--teal); border-radius: 2px; margin-top: 7px; flex: none; }
.trust-item .t-title { font-weight: 700; font-size: 16px; }
.trust-item .t-text { font-size: 14px; color: var(--text3); line-height: 1.5; }

/* ---------- Section headers ---------- */
.sec-head { display: flex; align-items: flex-end; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.sec-head h2 { font-family: var(--font-head); font-size: 44px; font-weight: 700; margin: 0; line-height: 1.05; }
.sec-head .sub { margin: 0 0 4px auto; max-width: 420px; color: var(--text3); font-size: 17px; line-height: 1.6; }
.sec-head.split { display: flex; justify-content: space-between; align-items: flex-end; }
h2.h-basic { font-family: var(--font-head); font-size: 42px; font-weight: 700; margin: 0 0 16px; }

/* ---------- Cards grid (services) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; }
a.card, .card.click { cursor: pointer; }
a.card:hover, .card.click:hover { border-color: var(--teal); box-shadow: 0 8px 28px #12191d12; text-decoration: none; }
.svc-card { padding: 28px; display: block; color: inherit; }
.svc-card .num { font-family: var(--font-mono); font-size: 12px; color: var(--text6); margin-bottom: 18px; }
.svc-card h3 { font-family: var(--font-head); font-size: 25px; font-weight: 700; margin: 0 0 10px; color: var(--text); }
.svc-card p { margin: 0 0 18px; color: var(--text3); font-size: 15px; line-height: 1.6; }
.svc-card .foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed var(--border); padding-top: 14px; }
.svc-card .price { font-weight: 700; color: var(--teal); }
.svc-card .time { font-size: 14px; color: var(--text6); }

/* ---------- Symptom checker (dark) ---------- */
.symptoms { background: var(--dark); color: #fff; padding: 72px 24px; }
.symptoms .container { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.symptoms h2 { font-family: var(--font-head); font-size: 42px; font-weight: 700; margin: 0 0 18px; line-height: 1.05; }
.symptoms .lead { color: var(--blue2); font-size: 17px; line-height: 1.6; margin: 0 0 24px; }
.diag-box { background: var(--dark3); border: 1px solid var(--border-dark); border-radius: 14px; padding: 24px; }
.diag-box .lbl { font-size: 13px; color: var(--text5); margin-bottom: 8px; }
.diag-box .val { font-family: var(--font-head); font-size: 27px; font-weight: 700; color: var(--amber); line-height: 1.15; }
.diag-box .note { color: var(--blue2); font-size: 15px; line-height: 1.6; margin-top: 10px; }
.symptom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.symptom-btn { border: 1px solid var(--border-dark); background: var(--dark3); border-radius: 11px; padding: 18px; cursor: pointer; font-size: 16px; font-weight: 500; line-height: 1.4; color: #fff; text-align: left; font-family: inherit; }
.symptom-btn.active { border-color: var(--cyan); background: #17323a; }

/* ---------- Steps ---------- */
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px; position: relative; }
.step-card .num { font-family: var(--font-head); font-size: 44px; font-weight: 700; color: #e2ebee; line-height: .9; margin-bottom: 12px; }
.step-card .t { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.step-card .d { color: var(--text3); font-size: 15px; line-height: 1.6; }

/* ---------- Product cards ---------- */
.product-band { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 24px; }
.product-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; background: #fff; position: relative; }
.product-card .thumb { height: 150px; overflow: hidden; background: var(--surface2); position: relative; }
.product-card.shop .thumb { height: 168px; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge-tag { position: absolute; top: 12px; left: 12px; background: var(--amber); color: var(--dark); font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 5px; letter-spacing: .06em; text-transform: uppercase; }
.product-card .body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card.shop .body { padding: 20px; gap: 9px; }
.product-card .name { font-weight: 600; font-size: 16px; line-height: 1.35; }
.product-card .sku { font-family: var(--font-mono); font-size: 11px; color: var(--text6); }
.product-card .desc { color: var(--text3); font-size: 14px; line-height: 1.55; }
.product-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 10px; }
.product-card .price { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.product-card.shop .price { font-size: 27px; }
.product-card .stock { font-size: 13px; color: var(--text4); }
.add-cart-btn { text-align: center; padding: 11px; background: var(--dark); color: #fff; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; width: 100%; font-family: inherit; font-size: 15px; }
.add-cart-btn:hover { background: var(--teal); }

/* ---------- Reviews ---------- */
.review-card { padding: 28px; }
.review-card .stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { margin: 0 0 18px; font-size: 16px; line-height: 1.65; color: var(--text2); }
.review-card .name { font-weight: 700; }
.review-card .car { font-size: 14px; color: var(--text6); }

/* ---------- FAQ ---------- */
.faq-wrap { background: var(--surface2); padding: 72px 24px; }
.faq-list { display: grid; gap: 10px; }
details.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; }
details.faq-item[open] { padding-bottom: 20px; }
details.faq-item summary { display: flex; gap: 16px; font-weight: 600; font-size: 17px; cursor: pointer; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; margin-left: auto; color: var(--teal); font-size: 20px; line-height: 1; }
details.faq-item[open] summary::after { content: '\2212'; }
details.faq-item .a { margin: 12px 0 0; color: var(--text3); font-size: 16px; line-height: 1.65; }
.faq-page details.faq-item summary { font-size: 18px; }
.faq-page details.faq-item summary::after { font-size: 22px; }

/* ---------- Blog cards ---------- */
.blog-card { overflow: hidden; display: flex; flex-direction: column; color: inherit; }
.blog-card .thumb { height: 140px; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; }
.blog-card.tall .thumb { height: 150px; }
.blog-card.tall .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card .date { font-family: var(--font-mono); font-size: 11px; color: var(--text6); margin-bottom: 10px; }
.blog-card .title { font-family: var(--font-head); font-size: 23px; font-weight: 700; line-height: 1.2; }
.blog-card.tall .title { font-size: 24px; }
.blog-card .lead { color: var(--text3); font-size: 15px; line-height: 1.6; margin-top: 8px; }
.blog-card .more { margin-top: auto; color: var(--teal); font-weight: 600; padding-top: 8px; }

/* ---------- Page hero (dark header on inner pages) ---------- */
.page-hero { background: var(--dark); color: #fff; padding: 56px 24px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero.with-photo { padding: 0; }
.page-hero.with-photo .photo-wrap { position: relative; }
.page-hero.with-photo .photo-wrap img { width: 100%; height: 260px; object-fit: cover; opacity: .45; }
.page-hero.with-photo .photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, #12191dcc 0%, #12191d 100%); }
.page-hero.with-photo .container { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 24px; }
.page-hero h1 { font-family: var(--font-head); font-size: 52px; font-weight: 700; margin: 0 0 14px; }
.page-hero .lead { color: var(--blue2); font-size: 18px; max-width: 720px; line-height: 1.6; margin: 0; }

/* ---------- Services full ---------- */
.svc-full { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 34px; display: grid; grid-template-columns: 200px 1fr 210px; gap: 32px; }
.svc-full .num { font-family: var(--font-mono); font-size: 12px; color: var(--text6); margin-bottom: 10px; }
.svc-full h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin: 0; line-height: 1.15; }
.svc-full .long { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: var(--text2); }
.svc-full .bullets { display: grid; gap: 8px; }
.svc-full .bullets .b { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text3); }
.svc-full .bullets .b .sq { width: 7px; height: 7px; background: var(--teal); border-radius: 2px; margin-top: 7px; flex: none; }
.svc-price-box { background: var(--bg); border-radius: 12px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.svc-price-box .lbl { font-size: 13px; color: var(--text4); }
.svc-price-box .val { font-family: var(--font-head); font-size: 34px; font-weight: 700; line-height: 1; }
.svc-price-box .time { font-size: 14px; color: var(--text4); }
.svc-price-box .btn { margin-top: auto; }

/* ---------- Price table ---------- */
.price-table { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.price-row-head { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 16px; padding: 18px 28px; background: var(--surface2); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text4); }
.price-row { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 16px; padding: 20px 28px; border-top: 1px solid var(--border2); align-items: center; }
.price-row .name { font-weight: 600; font-size: 17px; }
.price-row .note { font-size: 14px; color: var(--text4); margin-top: 3px; }
.price-row .time { color: var(--text3); font-size: 15px; }
.price-row .amount { text-align: right; font-family: var(--font-head); font-size: 25px; font-weight: 700; }
.price-note-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.price-note-card .t { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.price-note-card .d { color: var(--text3); font-size: 15px; line-height: 1.6; }

/* ---------- Shop ---------- */
.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-pill { padding: 10px 18px; border: 1px solid var(--border); background: #fff; color: var(--text2); border-radius: 999px; font-weight: 600; cursor: pointer; font-size: 15px; font-family: inherit; }
.cat-pill.active { border-color: var(--dark); background: var(--dark); color: #fff; }
.shop-info-band { margin-top: 40px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.shop-info-band .t { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.shop-info-band .d { color: var(--text3); font-size: 15px; line-height: 1.6; }

/* ---------- Forms ---------- */
.form-field { padding: 13px 14px; border: 1px solid var(--border); border-radius: 9px; width: 100%; background: #fff; color: var(--text); }
.form-field:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
textarea.form-field { resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-panel { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-panel h1, .form-panel .h { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 18px; }
.check-row { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 15px; color: var(--text2); margin-top: 6px; }
.check-row input { width: 20px; height: 20px; margin-top: 2px; flex: none; }
.form-hint { font-size: 13px; color: var(--text4); }
.field-error { color: #b3261e; font-size: 13px; margin-top: -8px; display: none; }
.ok-panel { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 56px; text-align: center; }
.ok-check { width: 54px; height: 54px; background: var(--teal); border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; color: #fff; font-size: 26px; font-weight: 700; }
.ok-panel h1 { font-family: var(--font-head); font-size: 40px; font-weight: 700; margin: 0 0 12px; }
.ok-panel p { color: var(--text3); font-size: 17px; line-height: 1.6; max-width: 520px; margin: 0 auto 28px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.ship-option { display: flex; align-items: center; gap: 14px; border: 1px solid var(--border); background: #fff; border-radius: 11px; padding: 16px 18px; cursor: pointer; width: 100%; text-align: left; font-family: inherit; }
.ship-option.active { border-color: var(--teal); background: #f0f8fa; }
.ship-option .dot { width: 18px; height: 18px; border-radius: 50%; border: 5px solid var(--border); flex: none; }
.ship-option.active .dot { border-color: var(--teal); }
.ship-option .lbl { font-weight: 600; }
.ship-option .amt { margin-left: auto; font-weight: 700; }
.summary-box { background: var(--dark); color: #fff; border-radius: 16px; padding: 28px; }
.summary-box h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 18px; }
.summary-lines { display: grid; gap: 12px; }
.summary-line { display: flex; gap: 12px; font-size: 15px; color: var(--blue1); }
.summary-line .amt { margin-left: auto; font-weight: 600; color: #fff; }
.summary-totals { border-top: 1px solid var(--border-dark); margin-top: 18px; padding-top: 16px; display: grid; gap: 8px; font-size: 15px; color: var(--blue2); }
.summary-totals .row { display: flex; }
.summary-totals .row .amt { margin-left: auto; }
.summary-totals .grand { display: flex; align-items: baseline; margin-top: 6px; }
.summary-totals .grand .lbl { color: #fff; font-weight: 600; }
.summary-totals .grand .amt { margin-left: auto; font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--amber); }
.empty-cart { text-align: center; padding: 60px 24px; color: var(--text4); }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 90; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-overlay .backdrop { position: absolute; inset: 0; background: #12191d99; border: none; cursor: pointer; padding: 0; }
.cart-drawer { position: relative; width: 420px; max-width: 100%; background: #fff; display: flex; flex-direction: column; animation: kfSlideIn .22s ease; }
.cart-drawer-head { padding: 22px 26px; border-bottom: 1px solid var(--border); display: flex; align-items: center; }
.cart-drawer-head h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.cart-close { margin-left: auto; cursor: pointer; font-size: 22px; color: var(--text4); line-height: 1; background: none; border: none; }
.cart-drawer-body { flex: 1; overflow: auto; padding: 22px 26px; display: grid; gap: 16px; align-content: start; }
.cart-line { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--border2); }
.cart-line .thumb { height: 64px; border-radius: 8px; overflow: hidden; background: var(--surface2); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .nm { font-weight: 600; font-size: 15px; line-height: 1.35; }
.cart-line .pp { font-size: 13px; color: var(--text4); margin: 4px 0 10px; }
.cart-line .qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 7px; display: grid; place-items: center; cursor: pointer; background: #fff; font-family: inherit; }
.cart-line .q { font-weight: 600; min-width: 18px; text-align: center; }
.cart-line .lt { margin-left: auto; font-weight: 700; }
.cart-line .rm { cursor: pointer; color: var(--text6); font-size: 13px; background: none; border: none; font-family: inherit; }
.cart-drawer-foot { border-top: 1px solid var(--border); padding: 22px 26px; display: grid; gap: 12px; }
.cart-drawer-foot .row { display: flex; font-size: 15px; color: var(--text3); }
.cart-drawer-foot .row .amt { margin-left: auto; }
.cart-drawer-foot .grand { display: flex; align-items: baseline; }
.cart-drawer-foot .grand .lbl { font-weight: 700; }
.cart-drawer-foot .grand .amt { margin-left: auto; font-family: var(--font-head); font-size: 30px; font-weight: 700; }

/* ---------- Cookie consent + toast ---------- */
.consent-wrap { position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 95; display: none; justify-content: center; }
.consent-wrap.open { display: flex; }
.consent-box { max-width: 980px; width: 100%; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 18px 50px #12191d33; padding: 24px 26px; display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; }
.consent-box .t { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.consent-box .d { font-size: 15px; line-height: 1.6; color: var(--text3); }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.toast { position: fixed; bottom: 24px; left: 24px; z-index: 99; background: var(--dark); color: #fff; padding: 14px 20px; border-radius: 10px; font-weight: 600; box-shadow: 0 12px 30px #12191d40; display: none; }
.toast.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--text5); padding: 60px 24px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-mark { width: 34px; height: 34px; background: var(--teal); display: grid; place-items: center; border-radius: 8px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 19px; }
.footer-name { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #fff; text-transform: uppercase; }
.footer-grid p { font-size: 15px; line-height: 1.65; margin: 0 0 18px; }
.footer-legal-info { font-family: var(--font-mono); font-size: 12px; line-height: 1.8; color: #7d949c; }
.footer-col-title { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: 16px; }
.footer-links { display: grid; gap: 9px; font-size: 15px; }
.footer-links a { color: inherit; }
.footer-links a:hover { color: var(--cyan); text-decoration: none; }
.footer-contact { display: grid; gap: 9px; font-size: 15px; }
.footer-contact .big { color: #fff; font-weight: 600; font-size: 19px; }
.footer-bottom { border-top: 1px solid var(--border-dark); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 13px; color: var(--text4); align-items: center; }
.footer-bottom button.link-btn { background: none; border: none; color: var(--text4); font-size: 13px; cursor: pointer; font-family: inherit; padding: 0; }
.footer-bottom button.link-btn:hover { color: var(--cyan); }
.footer-bottom .soi { margin-left: auto; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-copy { display: grid; gap: 18px; font-size: 17px; line-height: 1.75; color: var(--text2); }
.about-photos { display: grid; gap: 16px; }
.about-photos .main-photo { border-radius: 14px; overflow: hidden; height: 220px; }
.about-photos .main-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photos .sub-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-photos .sub-photos div { border-radius: 14px; overflow: hidden; height: 150px; }
.about-photos .sub-photos img { width: 100%; height: 100%; object-fit: cover; }
.team-card { overflow: hidden; }
.team-card .thumb { height: 140px; overflow: hidden; }
.team-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 20px; }
.team-card .name { font-weight: 700; font-size: 17px; }
.team-card .role { color: var(--teal); font-size: 14px; font-weight: 600; margin: 3px 0 8px; }
.team-card .note { color: var(--text3); font-size: 14px; line-height: 1.55; }

/* ---------- Contact page ---------- */
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.contact-info-card h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.contact-rows { display: grid; gap: 12px; font-size: 16px; color: var(--text2); }
.contact-row { display: grid; grid-template-columns: 120px 1fr; gap: 14px; }
.contact-row .k { color: var(--text4); font-size: 14px; }
.contact-row .v { font-weight: 500; }
.map-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.map-card iframe { width: 100%; height: 240px; border: 0; display: block; }
.map-card .note { padding: 22px; color: var(--text3); font-size: 15px; line-height: 1.6; }

/* ---------- Article page ---------- */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.article-back { color: var(--teal); font-weight: 600; margin-bottom: 22px; display: inline-block; }
.article-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text6); margin-bottom: 12px; }
.article-wrap h1 { font-family: var(--font-head); font-size: 46px; font-weight: 700; margin: 0 0 18px; line-height: 1.08; }
.article-wrap .lead { font-size: 20px; line-height: 1.6; color: var(--text2); margin: 0 0 30px; }
.article-photo { border-radius: 14px; overflow: hidden; margin-bottom: 34px; }
.article-photo img { width: 100%; height: 260px; object-fit: cover; }
.article-body { display: grid; gap: 26px; }
.article-body h2 { font-family: var(--font-head); font-size: 30px; font-weight: 700; margin: 0 0 12px; }
.article-body p { margin: 0; font-size: 17px; line-height: 1.75; color: var(--text2); }
.article-cta { margin-top: 44px; background: var(--dark); color: #fff; border-radius: 16px; padding: 34px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.article-cta .t { font-family: var(--font-head); font-size: 28px; font-weight: 700; }
.article-cta .d { color: var(--blue2); font-size: 16px; }
.article-cta .btn { margin-left: auto; }

/* ---------- Legal page ---------- */
.legal-wrap { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-hero { background: var(--dark); color: #fff; padding: 52px 24px; }
.legal-hero .container { max-width: 900px; }
.legal-hero h1 { font-family: var(--font-head); font-size: 46px; font-weight: 700; margin: 0 0 12px; }
.legal-hero .lead { color: var(--blue2); font-size: 17px; line-height: 1.6; margin: 0; }
.legal-hero .updated { font-family: var(--font-mono); font-size: 12px; color: #7d949c; margin-top: 18px; }
.legal-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 40px; display: grid; gap: 26px; }
.legal-card h2 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin: 0 0 10px; }
.legal-card p { margin: 0; font-size: 16px; line-height: 1.75; color: var(--text2); }
.legal-operator { border-top: 1px solid var(--border2); padding-top: 22px; font-size: 15px; color: var(--text3); line-height: 1.7; }
.legal-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.legal-pill { padding: 10px 16px; border: 1px solid var(--border); background: #fff; color: var(--text2); border-radius: 999px; font-size: 14px; font-weight: 600; }
.legal-pill:hover { text-decoration: none; border-color: var(--teal); color: var(--teal); }
.legal-pill.active { border-color: var(--dark); background: var(--dark); color: #fff; }

/* ---------- Misc ---------- */
.dash-strong { color: var(--text6); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--text); padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 46px; }
  .symptoms .container { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-full { grid-template-columns: 1fr; }
  .price-row-head, .price-row { grid-template-columns: 1.6fr 1fr 1fr; padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; padding: 10px; gap: 2px; box-shadow: 0 12px 20px #12191d1a; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .site-header .container { position: relative; flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
  .hero h1 { font-size: 36px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .sec-head h2, h2.h-basic, .page-hero h1 { font-size: 32px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .price-row-head, .price-row { grid-template-columns: 1fr; gap: 4px; }
  .price-row .amount { text-align: left; }
  .topbar .hours { margin-left: 0; }
  .consent-box { grid-template-columns: 1fr; }
}
