/* Pnevora — shared stylesheet. Self-contained, no external fonts/CDN. */

:root {
  --bg: #f4f2ef;
  --dark: #111315;
  --orange: #f2621b;
  --orange-dark: #d9500d;
  --orange2: #c8410a;
  --beige: #e8e4de;
  --beige2: #ded9d2;
  --green: #1f7a56;
  --line: rgba(17, 19, 21, .12);
  --line-soft: rgba(17, 19, 21, .08);
  --text: #111315;
  --text-soft: rgba(17, 19, 21, .7);
  --text-softer: rgba(17, 19, 21, .55);
  --on-dark: #f4f2ef;
  --on-dark-soft: rgba(244, 242, 239, .72);
  --on-dark-softer: rgba(244, 242, 239, .5);

  --font-display: 'Arial Narrow', 'Segoe UI', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: Consolas, 'Lucida Console', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--orange2); text-decoration: none; }
a:hover { color: var(--orange); }
input, select, textarea, button { font-family: var(--font-body); font-size: 15px; }
::selection { background: var(--orange); color: #fff; }
main { flex: 1; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow.on-light { color: var(--orange2); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: .01em;
}
.h1 { font-size: 58px; line-height: 1; margin: 0 0 16px; }
.h2 { font-size: 46px; line-height: 1.03; margin: 0 0 16px; }
.h3 { font-size: 26px; line-height: 1.1; margin: 0 0 12px; }
p { line-height: 1.65; }
.lead { font-size: 18px; line-height: 1.7; color: var(--text-soft); max-width: 760px; margin: 0; }
.lead.on-dark { color: var(--on-dark-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  background: var(--dark);
  color: #fff;
  padding: 15px 26px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { color: #fff; }
.btn-primary { background: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: var(--dark); }
.btn-dark:hover { background: #2a2d30; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(17, 19, 21, .28);
  color: var(--text);
}
.btn-outline:hover { background: rgba(17, 19, 21, .06); color: var(--text); }
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Layout sections ---------- */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--dark); color: var(--on-dark); }
.section-beige { background: var(--beige); }
.section-orange { background: var(--orange); color: #fff; }
.hairline-top { border-top: 1px solid var(--line-soft); }
.hairline-bottom { border-bottom: 1px solid var(--line-soft); }

/* ---------- Grids ---------- */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-hairline { gap: 1px; background: var(--line); }
.grid-hairline > * { background: var(--bg); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-wide { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split-wide { grid-template-columns: 1fr; }
  .h1 { font-size: 42px; }
  .h2 { font-size: 34px; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .h1 { font-size: 34px; }
  .h2 { font-size: 28px; }
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--orange);
  color: #fff;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
}
.promo-bar .dot { opacity: .65; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--dark);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
  color: var(--on-dark);
}
.brand:hover { color: var(--on-dark); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-dot { width: 9px; height: 9px; background: var(--orange); display: block; border-radius: 50%; }

.site-nav { display: flex; gap: 2px; flex-wrap: wrap; flex: 1; }
.site-nav a {
  padding: 9px 12px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.site-nav a:hover { background: rgba(255, 255, 255, .08); color: var(--on-dark); }
.site-nav a.active { color: var(--orange); background: rgba(242, 98, 26, .12); }

.phone-link {
  color: var(--on-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.phone-link:hover { color: var(--orange); }

.cart-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cart-btn:hover { background: var(--orange-dark); }
.cart-count {
  background: rgba(0, 0, 0, .25);
  border-radius: 20px;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
}

@media (max-width: 700px) {
  .phone-link { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark); margin-top: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 30px;
}
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--on-dark-soft); font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-mono { font-family: var(--font-mono); font-size: 12px; line-height: 1.9; color: var(--on-dark-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--on-dark-softer);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Cards / misc components ---------- */
.card { background: #fff; border: 1px solid var(--line); padding: 28px; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--orange); }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-softer); margin-top: 6px; }
.stat-label.on-dark { color: var(--on-dark-softer); }

.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.trust-item h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .03em; margin: 0 0 4px; }
.trust-item p { font-size: 14px; color: var(--text-softer); margin: 0; line-height: 1.5; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.link-more {
  cursor: pointer;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-box { overflow: hidden; background: var(--beige2); }
.media-box img { width: 100%; height: 100%; object-fit: cover; }
.media-tall { min-height: 380px; }
.media-tall img { min-height: 380px; object-fit: cover; }

/* Service tile */
.tile { background: var(--bg); padding: 32px 28px; min-height: 220px; display: flex; flex-direction: column; }
.tile:hover { background: #fff; }
.tile .no { font-family: var(--font-mono); font-size: 12px; color: var(--orange); letter-spacing: .1em; margin-bottom: 20px; }
.tile p { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin: 0 0 18px; flex: 1; }
.tile .price-tag { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; border-top: 1px solid var(--line); padding-top: 14px; }

/* Product card */
.product-card { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.product-thumb { height: 170px; background: var(--beige2); position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--dark); color: #fff;
  font-family: var(--font-mono); font-size: 10px;
  padding: 4px 7px; letter-spacing: .07em;
}
.product-cat-label {
  position: absolute; bottom: 10px; left: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.15; text-transform: uppercase; margin-bottom: 6px; }
.product-size { font-family: var(--font-mono); font-size: 12px; color: var(--text-softer); margin-bottom: 10px; }
.product-desc { font-size: 14px; line-height: 1.55; color: var(--text-soft); margin: 0 0 14px; flex: 1; }
.product-stock { font-family: var(--font-mono); font-size: 11px; color: var(--green); margin-bottom: 10px; }
.product-price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.product-price { font-family: var(--font-display); font-weight: 700; font-size: 25px; }
.product-unit { font-family: var(--font-mono); font-size: 11px; color: var(--text-softer); }

.pill {
  cursor: pointer;
  padding: 10px 18px;
  border: 1px solid rgba(17, 19, 21, .25);
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pill.active { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Reviews */
.review-stars { color: var(--orange); font-family: var(--font-mono); font-size: 13px; letter-spacing: .3em; margin-bottom: 16px; }
.review-who { font-family: var(--font-mono); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-softer); }

/* Blog */
.blog-card { background: var(--bg); padding: 28px; }
.blog-card:hover { background: #fff; }
.blog-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange2); margin-bottom: 14px; }
.blog-thumb { height: 160px; background: var(--beige2); overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Steps */
.step { border-top: 3px solid var(--orange); padding-top: 20px; }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; color: rgba(17, 19, 21, .16); }
.step h4 { font-family: var(--font-display); font-weight: 700; font-size: 21px; text-transform: uppercase; margin: 8px 0 10px; }
.step p { font-size: 15px; color: var(--text-soft); margin: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: grid; gap: 6px; }
.field-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-softer); }
.field input, .field select, .field textarea {
  padding: 12px; border: 1px solid rgba(17, 19, 21, .2); background: #f9f8f6; width: 100%;
}
.field textarea { resize: vertical; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: var(--text-soft); margin-bottom: 20px; }
.check-row input { margin-top: 4px; }
.radio-card { display: flex; gap: 10px; align-items: center; border: 1px solid rgba(17, 19, 21, .16); padding: 14px; font-size: 15px; cursor: pointer; }
.radio-card + .radio-card { margin-top: 10px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.notice-success { margin-top: 16px; background: #eef7f1; border: 1px solid var(--green); color: #155e41; padding: 14px; font-size: 15px; }
.notice-error { margin-top: 16px; background: #fdecec; border: 1px solid #b3261e; color: #7a1913; padding: 14px; font-size: 15px; }
.hidden { display: none !important; }

/* ---------- Contact rows ---------- */
.contact-row { border-top: 1px solid var(--line); padding-top: 14px; }
.contact-row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange2); margin-bottom: 6px; }
.contact-row .v { font-size: 17px; line-height: 1.6; white-space: pre-line; }

/* ---------- Price list ---------- */
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.price-row .n { font-size: 17px; font-weight: 600; }
.price-row .d { font-size: 14px; color: var(--text-softer); }
.price-row .p { font-family: var(--font-display); font-weight: 700; font-size: 23px; white-space: nowrap; }
.price-group-title { border-top: 2px solid var(--dark); }

/* ---------- Legal ---------- */
.legal-nav { display: grid; gap: 2px; position: sticky; top: 100px; }
.legal-nav a {
  padding: 10px 12px; font-size: 15px; font-weight: 500; border-left: 3px solid transparent; color: var(--text);
}
.legal-nav a:hover { background: rgba(17, 19, 21, .06); color: var(--text); }
.legal-nav a.active { border-left-color: var(--orange); background: rgba(242, 98, 26, .1); color: var(--text); }
.legal-body h2 { font-size: 24px; margin-bottom: 12px; }
.legal-body p, .legal-body li { font-size: 16px; line-height: 1.8; color: rgba(17, 19, 21, .8); }
.legal-body ul { margin: 0 0 12px; padding: 0; list-style: none; }
.legal-body li { display: flex; gap: 12px; margin-bottom: 7px; }
.legal-body li::before { content: '/'; color: var(--orange); }
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .legal-layout { grid-template-columns: 1fr; } .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; } }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item .q { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }
.faq-item .a { font-size: 16px; line-height: 1.75; color: rgba(17, 19, 21, .75); margin: 0; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60; display: none;
}
.cart-overlay.open { display: flex; justify-content: flex-end; }
.cart-overlay .backdrop { position: absolute; inset: 0; background: rgba(17, 19, 21, .55); cursor: pointer; border: none; padding: 0; }
.cart-panel {
  position: relative; width: 440px; max-width: 92vw; background: var(--bg); height: 100%;
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0, 0, 0, .3);
}
.cart-panel-head {
  background: var(--dark); color: var(--on-dark); padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.cart-panel-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: .05em; margin: 0; }
.cart-close { cursor: pointer; font-size: 26px; line-height: 1; opacity: .7; background: none; border: none; color: inherit; }
.cart-panel-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-line { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line-thumb { height: 64px; background: var(--beige2); }
.cart-line-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.15; text-transform: uppercase; }
.cart-line-size { font-family: var(--font-mono); font-size: 11px; color: var(--text-softer); margin: 4px 0 10px; }
.qty-control { display: flex; align-items: center; gap: 2px; }
.qty-btn {
  cursor: pointer; width: 28px; height: 28px; border: 1px solid rgba(17, 19, 21, .2); background: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.qty-val {
  width: 34px; height: 28px; border-top: 1px solid rgba(17, 19, 21, .2); border-bottom: 1px solid rgba(17, 19, 21, .2);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px;
}
.cart-line-remove { cursor: pointer; margin-left: 10px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-softer); background: none; border: none; }
.cart-panel-foot { border-top: 1px solid var(--line); padding: 20px 24px; background: #fff; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; }
.cart-empty { text-align: center; padding: 60px 0; }

/* ---------- Cookie banner ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--dark); color: var(--on-dark); border-top: 2px solid var(--orange); padding: 20px 24px;
  display: none;
}
.cookie-bar.open { display: block; }
.cookie-bar .container { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; }
.cookie-bar h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; margin: 0 0 6px; }
.cookie-bar p { font-size: 14px; line-height: 1.6; color: var(--on-dark-soft); margin: 0; max-width: 800px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 700px) { .cookie-bar .container { grid-template-columns: 1fr; } }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

/* ---------- Storage calculator ---------- */
.calc-box { background: var(--dark); color: var(--on-dark); padding: 32px; position: sticky; top: 100px; }
.calc-title { font-family: var(--font-display); font-weight: 700; font-size: 28px; text-transform: uppercase; line-height: 1.05; margin-bottom: 22px; }
.calc-stepper { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.calc-stepper .qty-btn { width: 44px; height: 44px; border-color: rgba(255, 255, 255, .3); background: transparent; color: #fff; font-size: 22px; }
.calc-stepper .val { font-family: var(--font-display); font-weight: 700; font-size: 40px; min-width: 54px; text-align: center; }
.calc-lines { display: grid; gap: 10px; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 16px; margin-bottom: 16px; }
.calc-line { display: flex; justify-content: space-between; font-size: 15px; }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 16px; margin-bottom: 20px; }
.calc-total .val { font-family: var(--font-display); font-weight: 700; font-size: 36px; color: var(--orange); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-soft); }
.small { font-size: 13px; line-height: 1.6; color: var(--text-softer); }
.small.on-dark { color: var(--on-dark-softer); }
