/* ============ BASE ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
body.menu-open, body.modal-open { overflow: hidden; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: .015em; text-transform: uppercase; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ============ HEADER ============ */
.hdr { background: linear-gradient(180deg,#0e0e0e,#141414); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.hdr-top { background: #0a0a0a; border-bottom: 1px solid var(--line-soft); font-size: 12px; color: var(--text-dim); }
.hdr-top-inner { max-width: var(--container); margin: 0 auto; padding: 8px 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.back-main { color: var(--accent-2); font-weight: 600; }
.back-main:hover { text-decoration: underline; }
.hdr-top-right { display: flex; gap: 18px; align-items: center; }
.hdr-phone { color: var(--text); font-weight: 600; }
.hdr-phone:hover { color: var(--accent-2); }
.hdr-main { max-width: var(--container); margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: .08em; }
.brand-tag { font-size: 10px; color: var(--text-mute); letter-spacing: .18em; margin-top: 4px; text-transform: uppercase; }
.nav { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav > a { color: var(--text-dim); padding: 10px 13px; font-size: 13px; letter-spacing: .04em; font-weight: 500; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; text-transform: uppercase; white-space: nowrap; }
.nav > a:hover { color: var(--text); }
.nav > a.active { color: var(--accent-2); border-bottom-color: var(--accent); }
.nav-tg { color: var(--accent-2) !important; }
.hdr-cta { background: var(--accent); color: #1a1a1a; padding: 10px 18px; font-weight: 700; border-radius: var(--radius); margin-left: 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; transition: background .15s; }
.hdr-cta:hover { background: var(--accent-2); }
.burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; margin-left: auto; }
.burger span, .burger span::before, .burger span::after { width: 22px; height: 2px; background: var(--text); position: relative; transition: all .2s; display: block; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: #1a1a1a; padding: 13px 22px; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border-radius: var(--radius); transition: all .15s; white-space: nowrap; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--text); border: 1px solid var(--line); padding: 13px 22px; font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; border-radius: var(--radius); transition: all .15s; white-space: nowrap; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-2); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent-2); border: 1px solid rgba(245,148,40,.3); padding: 11px 18px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; border-radius: var(--radius); transition: all .15s; margin-top: 8px; }
.btn-ghost:hover { background: var(--accent); color: #1a1a1a; }

/* ============ HERO ============ */
.hero { padding: 64px 24px; border-bottom: 1px solid var(--line); background: var(--bg-image-hero), radial-gradient(ellipse at 80% 20%, rgba(245,148,40,.06) 0%, transparent 50%), var(--bg); background-size: cover; background-position: center; }
.hero-inner { max-width: var(--container); margin: 0 auto; }
.hero-supplier { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.hero-supplier-label { font-size: 11px; color: var(--text-mute); letter-spacing: .18em; text-transform: uppercase; }
.hero-supplier-logo { height: 34px; width: auto; }
.hero h1 { font-size: clamp(36px,5.5vw,64px); line-height: 1.05; max-width: 900px; }
.hero h1 .em { color: var(--accent-2); }
.hero .sub { margin-top: 20px; color: var(--text-dim); font-size: clamp(15px,1.4vw,17px); max-width: 640px; }
.hero-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-meta .item { display: flex; flex-direction: column; }
.hero-meta .num { font-family: var(--font-display); font-size: clamp(24px,3vw,32px); color: var(--accent-2); font-weight: 500; line-height: 1; }
.hero-meta .lbl { color: var(--text-mute); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; margin-top: 4px; }

/* ============ SECTIONS ============ */
.section { padding: 64px 24px; max-width: var(--container); margin: 0 auto; }
.section-head { margin-bottom: 36px; }
.section-head h2 { font-size: clamp(28px,3.5vw,40px); margin-bottom: 8px; }
.section-sub { color: var(--text-dim); font-size: 15px; max-width: 640px; }

/* ============ CATEGORIES ============ */
.cats { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cat-card { background: var(--bg); padding: 36px 28px; transition: background .2s; display: flex; flex-direction: column; min-height: 260px; }
.cat-card:hover { background: var(--surface); }
.cat-card:hover .cat-arrow { transform: translateX(8px); color: var(--accent-2); }
.cat-card:hover .cat-icon { color: var(--accent-2); }
.cat-icon { width: 52px; height: 52px; color: var(--accent); margin-bottom: 20px; transition: color .2s; }
.cat-card h3 { font-size: 22px; margin-bottom: 12px; }
.cat-card p { color: var(--text-dim); font-size: 14px; flex-grow: 1; line-height: 1.6; }
.cat-footer { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; color: var(--text-mute); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.cat-arrow { transition: transform .2s,color .2s; font-size: 16px; }

/* ============ CUSTOM BANNER ============ */
.section-custom { background: linear-gradient(135deg,#1a1612,#181614); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: none; padding-left: 0; padding-right: 0; }
.custom-banner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.kicker { display: inline-block; font-size: 11px; letter-spacing: .2em; color: var(--accent-2); text-transform: uppercase; background: var(--accent-soft); padding: 4px 10px; margin-bottom: 16px; border: 1px solid rgba(245,148,40,.25); }
.custom-banner h2 { font-size: clamp(28px,3.5vw,42px); margin-bottom: 16px; }
.custom-banner-text > p { color: var(--text-dim); font-size: 15px; margin-bottom: 16px; }
.custom-list { list-style: none; margin: 16px 0 28px; }
.custom-list li { padding: 10px 0; border-bottom: 1px solid var(--line-soft); color: var(--text-dim); font-size: 14px; }
.custom-list li:last-child { border-bottom: none; }
.custom-list li strong { color: var(--text); }
.custom-list li::before { content: '✓ '; color: var(--accent); margin-right: 10px; font-weight: 700; }
.custom-banner-vis { display: flex; justify-content: center; }
.custom-svg { width: 240px; height: auto; }

/* ============ PAGE HEAD ============ */
.page-head { padding: 48px 24px 24px; max-width: var(--container); margin: 0 auto; border-bottom: 1px solid var(--line); }
.page-head.compact { padding-bottom: 16px; border-bottom: none; }
.breadcrumb { color: var(--text-mute); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.breadcrumb a { color: var(--accent-2); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; color: var(--text-mute); }
.page-head h1 { font-size: clamp(32px,4.5vw,52px); line-height: 1; }
.page-head-desc { color: var(--text-dim); font-size: 14px; margin-top: 16px; max-width: 720px; }

/* ============ PRODUCTS GRID ============ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: var(--container); margin: 0 auto; }
.product-card { background: var(--bg); display: flex; flex-direction: column; transition: background .15s; }
.product-card:hover { background: var(--surface); }
.product-card:hover h3 { color: var(--accent-2); }
.pcard-thumb { height: 200px; background: repeating-linear-gradient(90deg,transparent 0 39px,rgba(245,148,40,.025) 39px 40px),repeating-linear-gradient(0deg,transparent 0 39px,rgba(245,148,40,.025) 39px 40px),linear-gradient(135deg,#2a231b,#1c1714); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.pcard-thumb.has-photo { background: #0e0e0e; }
.pcard-thumb.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.pcard-thumb svg { width: 80px; height: 100px; color: rgba(245,148,40,.3); }
.badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge { background: var(--accent); color: #1a1a1a; padding: 4px 9px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius); }
.badge.outdoor { background: #4f7ca6; color: #fff; }
.badge.fire { background: var(--hot); color: #fff; }
.pcard-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 19px; margin-bottom: 6px; line-height: 1.2; transition: color .15s; }
.product-card .subt { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.product-card .desc { font-size: 13px; color: var(--text-dim); flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.5; }
.pcard-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-soft); display: flex; align-items: baseline; justify-content: space-between; }
.price { font-family: var(--font-display); font-size: 22px; color: var(--text); font-weight: 500; }
.more-arrow { color: var(--accent); font-size: 12px; }

.cat-bottom-cta { max-width: var(--container); margin: 40px auto; padding: 0 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cat-bottom-cta p { color: var(--text-dim); font-size: 16px; }
.empty { padding: 64px 24px; text-align: center; color: var(--text-mute); }

/* ============ FIRE INFO BLOCK (на странице противопожарных) ============ */
.fire-info { max-width: var(--container); margin: 32px auto 24px; padding: 0 24px; }
.fire-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fire-info-card { background: var(--surface); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; }
.fire-info-card svg { width: 40px; height: 40px; color: var(--accent); }
.fire-info-card h3 { font-size: 16px; color: var(--accent-2); }
.fire-info-card p { color: var(--text-dim); font-size: 13px; line-height: 1.6; }
@media (max-width: 600px) {
  .fire-info { padding: 0 16px; }
  .fire-info-grid { grid-template-columns: 1fr; }
}

/* ============ PRODUCT PAGE ============ */
.product-page { max-width: var(--container); margin: 0 auto; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product-main-photo { background: linear-gradient(135deg,#2a231b,#181613); border: 1px solid var(--line); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-main-photo img { width: 100%; height: 100%; object-fit: contain; }
.product-main-photo.no-photo svg { width: 140px; height: 180px; color: rgba(245,148,40,.3); }
.product-gallery { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.gal-thumb { width: 72px; height: 72px; border: 2px solid transparent; overflow: hidden; background: var(--bg-2); transition: border-color .15s; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb:hover { border-color: var(--accent-2); }
.gal-thumb.active { border-color: var(--accent); }
.product-info h1 { font-size: clamp(26px,3.2vw,38px); margin-bottom: 8px; }
.product-subt { color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-bottom: 24px; }
.product-price-block { margin-bottom: 24px; }
.product-price { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); color: var(--accent-2); font-weight: 500; line-height: 1; }
.product-price-note { color: var(--text-mute); font-size: 12px; margin-top: 8px; }
.product-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.specs { display: grid; grid-template-columns: 180px 1fr; gap: 8px 24px; }
.specs dt { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); padding-top: 4px; }
.specs dd { color: var(--text); border-bottom: 1px solid var(--line-soft); padding-bottom: 10px; font-size: 14px; }
.specs dd:last-of-type { border-bottom: none; }
.product-custom-note { max-width: var(--container); margin: 32px auto 0; padding: 28px 24px; background: var(--accent-soft); border-top: 1px solid rgba(245,148,40,.2); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.product-custom-note p { font-size: 15px; max-width: 720px; }
.product-custom-note strong { color: var(--accent-2); }

/* ============ STATIC PAGES ============ */
.static-page { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.static-page h1 { font-size: clamp(32px,4vw,48px); margin-bottom: 16px; }
.static-page .lead { font-size: clamp(15px,1.4vw,17px); color: var(--text-dim); max-width: 720px; margin-bottom: 40px; }
.error404 { text-align: center; }
.error404 h1 { font-size: clamp(80px,15vw,160px); color: var(--accent); }
.error404 .custom-cta-actions { justify-content: center; }
.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.otkosy-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.otkosy-photo { display: flex; flex-direction: column; gap: 10px; }
.otkosy-photo-frame { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg,#2a231b,#181613); border: 1px solid var(--line); overflow: hidden; display: flex; align-items: center; justify-content: center; color: rgba(245,148,40,.4); }
.otkosy-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.otkosy-photo-fallback { display: none; flex-direction: column; gap: 12px; align-items: center; padding: 24px; text-align: center; color: var(--text-mute); }
.otkosy-photo-fallback svg { width: 100px; height: 130px; }
.otkosy-photo-fallback span { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.otkosy-photo-frame.no-img img { display: none; }
.otkosy-photo-frame.no-img .otkosy-photo-fallback { display: flex; }
.otkosy-photo-label { position: absolute; top: 12px; left: 12px; background: var(--text-mute); color: #1a1a1a; padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; z-index: 2; border-radius: var(--radius); }
.otkosy-photo-label.after { background: var(--accent); }
.otkosy-photo figcaption { color: var(--text-dim); font-size: 13px; line-height: 1.5; }
.extras-card { background: var(--bg); padding: 32px; }
.extras-card.highlight { background: var(--surface); }
.extras-card h3 { font-size: 20px; color: var(--accent-2); margin-bottom: 14px; }
.extras-card ul { list-style: none; }
.extras-card li { padding: 10px 0; border-bottom: 1px solid var(--line-soft); color: var(--text-dim); display: flex; gap: 12px; font-size: 14px; }
.extras-card li::before { content: '—'; color: var(--accent); font-weight: 700; }
.extras-card li:last-child { border-bottom: none; }
.extras-card p { color: var(--text-dim); margin-bottom: 16px; line-height: 1.6; }
.custom-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 40px; }
.custom-card { background: var(--bg); padding: 32px; }
.custom-icon { font-size: 30px; margin-bottom: 16px; width: 56px; height: 56px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(245,148,40,.2); border-radius: var(--radius); }
.custom-svg-icon { width: 56px; height: 56px; padding: 12px; margin-bottom: 16px; background: var(--accent-soft); border: 1px solid rgba(245,148,40,.25); border-radius: var(--radius); color: var(--accent-2); display: block; transition: all .2s; }
.custom-card:hover .custom-svg-icon { background: var(--accent); color: #1a1a1a; transform: translateY(-2px); }
.custom-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--accent-2); }
.custom-card p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.custom-card p strong { color: var(--text); }
.custom-cta-box { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); padding: 36px; }
.custom-cta-box h3 { font-size: 24px; margin-bottom: 20px; }
.custom-cta-box ol { padding-left: 24px; color: var(--text-dim); font-size: 14px; }
.custom-cta-box ol li { margin-bottom: 10px; line-height: 1.6; }
.custom-cta-actions { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ MODAL FORM ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.85); backdrop-filter: blur(4px); z-index: 300; display: none; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 32px 16px; }
.modal-overlay.open { display: flex; }
.modal-form { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); max-width: 460px; width: 100%; position: relative; box-shadow: var(--shadow-lg); margin-bottom: 32px; }
.modal-x { position: absolute; top: 12px; right: 12px; background: var(--surface); border: 1px solid var(--line); color: var(--text); width: 36px; height: 36px; font-size: 16px; border-radius: var(--radius); }
.modal-x:hover { border-color: var(--accent); color: var(--accent); }
.form-head { padding: 28px 28px 0; }
.form-head h2 { font-size: 24px; }
.form-subject { color: var(--accent-2); font-size: 13px; margin-top: 6px; }
.form-tabs { display: flex; gap: 4px; padding: 20px 28px 0; }
.form-tab { flex: 1; padding: 10px; font-size: 13px; font-weight: 600; color: var(--text-dim); border: 1px solid var(--line); border-radius: var(--radius); transition: all .15s; }
.form-tab:hover { color: var(--text); }
.form-tab.active { background: var(--accent); color: #1a1a1a; border-color: var(--accent); }
#requestForm { padding: 16px 28px 28px; }
.form-tab-hint { font-size: 13px; color: var(--text-dim); margin-bottom: 18px; padding: 10px 12px; background: var(--accent-soft); border-radius: var(--radius); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute); }
.field.required span::after { content: ' *'; color: var(--accent); }
.field input { background: var(--bg); color: var(--text); border: 1px solid var(--line); padding: 11px 13px; font-family: inherit; font-size: 14px; border-radius: var(--radius); }
.field input:focus { outline: none; border-color: var(--accent); }
.field-addr { display: none; }
.field-addr.show { display: flex; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0; font-size: 12px; color: var(--text-dim); cursor: pointer; }
.consent input { margin-top: 2px; flex-shrink: 0; }
.consent a { color: var(--accent-2); }
.form-submit { width: 100%; background: var(--accent); color: #1a1a1a; padding: 14px; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: var(--radius); transition: background .15s; }
.form-submit:hover { background: var(--accent-2); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-or { margin-top: 16px; font-size: 13px; color: var(--text-mute); text-align: center; line-height: 1.6; }
.form-or a { color: var(--accent-2); }
.form-result { margin-top: 16px; padding: 14px; border-radius: var(--radius); font-size: 14px; text-align: center; }
.form-result.ok { background: rgba(103,169,111,.15); border: 1px solid var(--ok); color: #a8d6ad; }
.form-result.err { background: rgba(212,83,58,.15); border: 1px solid var(--hot); color: #ffb1a3; }

/* ============ FOOTER ============ */
.footer { margin-top: 64px; background: #0a0a0a; border-top: 1px solid var(--line); padding: 56px 24px 24px; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { font-size: 22px; }
.footer-brand p { margin-top: 12px; max-width: 320px; color: var(--text-dim); font-size: 13px; line-height: 1.8; }
.footer-supplier { margin-top: 20px; padding: 16px; background: rgba(245,148,40,.04); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); }
.footer-supplier-label { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--text-mute); margin-bottom: 10px; display: block; }
.footer-supplier img { height: 32px; }
.footer-col h4 { font-size: 13px; margin-bottom: 16px; color: var(--accent-2); letter-spacing: .15em; }
.footer-col a, .footer-col p { display: block; color: var(--text-dim); font-size: 13px; line-height: 1.9; }
.footer-col a:hover { color: var(--accent-2); }
.copyright { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line-soft); text-align: center; color: var(--text-mute); font-size: 12px; }

/* ============ NEWS ============ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: var(--container); margin: 0 auto; }
.news-card { background: var(--bg); display: flex; flex-direction: column; transition: background .15s; }
.news-card:hover { background: var(--surface); }
.news-card:hover h3 { color: var(--accent-2); }
.news-card-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg,#2a231b,#1c1714); display: flex; align-items: center; justify-content: center; color: rgba(245,148,40,.3); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.news-card-thumb svg { width: 64px; height: 64px; }
.news-card-thumb.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { font-size: 12px; color: var(--accent-2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.news-card h3 { font-size: 19px; line-height: 1.25; margin-bottom: 10px; transition: color .15s; }
.news-card p { color: var(--text-dim); font-size: 14px; line-height: 1.6; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-more { color: var(--accent); font-size: 13px; margin-top: 14px; }

.news-article { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.news-article .breadcrumb { margin-bottom: 20px; }
.news-article > .news-date { display: block; margin-bottom: 8px; }
.news-article h1 { font-size: clamp(28px,4vw,44px); line-height: 1.1; margin-bottom: 28px; }
.news-hero-img { margin: 0 0 32px; border: 1px solid var(--line); overflow: hidden; }
.news-hero-img img { width: 100%; height: auto; display: block; }
.news-body { font-size: 16px; line-height: 1.8; color: var(--text); }
.news-body h2 { font-family: var(--font-display); font-size: 24px; margin: 32px 0 14px; color: var(--accent-2); text-transform: none; letter-spacing: 0; }
.news-body h3 { font-size: 20px; margin: 24px 0 12px; text-transform: none; }
.news-body p { margin-bottom: 18px; color: var(--text-dim); }
.news-body ul, .news-body ol { margin: 0 0 18px 24px; color: var(--text-dim); }
.news-body li { margin-bottom: 8px; }
.news-body a { color: var(--accent-2); text-decoration: underline; }
.news-body img { max-width: 100%; height: auto; margin: 20px 0; border: 1px solid var(--line); }
.news-article-cta { margin-top: 40px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); }
.news-article-cta p { font-size: 16px; margin-bottom: 16px; }

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-article { padding: 32px 16px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .custom-banner { grid-template-columns: 1fr; gap: 32px; }
  .custom-banner-vis { display: none; }
  .product-page { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 900px) {
  .hdr-main { padding: 14px 16px; }
  .nav { display: none; }
  .burger { display: flex; }
  body.menu-open .nav { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; width: 280px; max-width: 80vw; height: 100vh; background: var(--bg-2); border-left: 1px solid var(--line); padding: 80px 0 20px; z-index: 99; gap: 0; overflow-y: auto; }
  body.menu-open .nav > a { width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--line-soft); border-left: 3px solid transparent; font-size: 14px; }
  body.menu-open .nav > a.active { border-left-color: var(--accent); background: var(--surface); }
  body.menu-open .nav .hdr-cta { margin: 16px; width: calc(100% - 32px); }
  body.menu-open::after { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 98; }
  .hero { padding: 48px 16px; }
  .hero-meta { gap: 24px; }
  .section { padding: 48px 16px; }
  .extras-grid { grid-template-columns: 1fr; }
  .static-page { padding: 32px 16px; }
  .page-head { padding: 32px 16px 20px; }
  .specs { grid-template-columns: 1fr; gap: 4px 0; }
  .specs dt { padding-top: 12px; }
  .hdr-top-inner { padding: 6px 16px; }
  .hdr-loc { display: none; }
}
@media (max-width: 600px) {
  .brand-name { font-size: 20px; }
  .hero-supplier { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero h1 { font-size: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; }
  .hero-meta { gap: 16px; }
  .hero-meta .item { min-width: calc(50% - 16px); }
  .cats, .products-grid, .custom-grid { grid-template-columns: 1fr; }
  .otkosy-gallery { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-custom-note { flex-direction: column; align-items: flex-start; }
  .product-cta { flex-direction: column; }
  .product-cta .btn-primary, .product-cta .btn-outline { width: 100%; }
  .form-tabs { flex-wrap: wrap; }
}
