/* ============================================================
   ВЕРДАКСО ЕООД — Catalog Website Stylesheet
   ============================================================ */

:root {
  --primary:       #2B2B2B;
  --primary-dark:  #1A1A1A;
  --accent:        #43A843;
  --accent-hover:  #348734;
  --white:         #FFFFFF;
  --light:         #F5F7FA;
  --light-mid:     #EEF1F6;
  --text:          #2C3E50;
  --muted:         #6B7A8D;
  --border:        #DDE3EC;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.08);
  --shadow:        0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.14);
  --radius:        8px;
  --radius-lg:     14px;
  --nav-h:         80px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 48px;
}
.divider {
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px 0 20px;
}
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 12px rgba(212,119,26,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: var(--primary-dark); }

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 66px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Fallback text when logo image is missing */
.nav-logo .logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .5px;
}
.nav-logo .logo-sub {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  transition: background .18s, color .18s;
}
.nav-links a:hover { background: #f0f0f0; color: var(--primary); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-cta {
  padding: 8px 20px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: .25s;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #3a3a3a 60%, #2b2b2b 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.hero-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-content { position: relative; max-width: 680px; }
.hero-badge {
  display: inline-block;
  background: rgba(212,119,26,.2);
  border: 1px solid rgba(212,119,26,.4);
  color: #F0A050;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  margin: -40px 0 0;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-item .lbl {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Category cards ─────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 22px;
  text-align: center;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.cat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.cat-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}
.cat-card p { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }

/* ── About section ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #3a3a3a 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  padding: 40px;
}
.about-visual .av-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  padding: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.about-visual .av-text { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.about-visual p { font-size: 1.05rem; opacity: .75; font-weight: 500; }
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .fi-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(212,119,26,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}
.feature-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--primary); margin-bottom: 2px; }
.feature-item p { font-size: 0.83rem; color: var(--muted); }

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #277827 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: 1.7rem; font-weight: 700; color: var(--white); }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.8); margin-top: 6px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand p {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact li {
  font-size: 0.88rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.8rem;
}
.vat-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,119,26,.15);
  border: 1px solid rgba(212,119,26,.3);
  color: #F0A050;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   CATALOG PAGE
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), #3a3a3a);
  padding: 56px 0 48px;
  color: var(--white);
}
.page-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.page-hero-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
}
.page-hero h1 { font-size: 2.1rem; font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.65); margin-top: 8px; font-size: 1rem; }

.catalog-toolbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.toolbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
}
.search-wrap svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
#searchInput {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
#searchInput:focus { border-color: var(--accent); }

.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all .18s;
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--accent); color: var(--accent); }
.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 600;
}
.results-count {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

/* Product grid */
.catalog-section { padding: 48px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* Product image placeholder */
.product-thumb {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.product-thumb .thumb-icon { font-size: 3rem; opacity: .6; }
.product-thumb .thumb-art {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: .55;
  font-family: monospace;
}
.product-thumb .photo-label {
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 0.68rem;
  opacity: .4;
  font-style: italic;
}

/* SVG image thumbnail */
.product-thumb-img {
  background: #ffffff;
  padding: 14px;
}
.product-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Category colours */
.thumb-fixatori   { background: linear-gradient(135deg,#E8F0FE,#C7D9FF); }
.thumb-kofrazhni  { background: linear-gradient(135deg,#E8F5E9,#C8E6C9); }
.thumb-schrekmetal{ background: linear-gradient(135deg,#ECEFF1,#CFD8DC); }
.thumb-fazerbeton { background: linear-gradient(135deg,#FBE9E7,#FFCCBC); }
.thumb-metallic   { background: linear-gradient(135deg,#FCE4EC,#F8BBD0); }
.thumb-nevosafe   { background: linear-gradient(135deg,#FFF3E0,#FFE0B2); }
.thumb-nevotube   { background: linear-gradient(135deg,#EDE7F6,#D1C4E9); }
.thumb-strukturni { background: linear-gradient(135deg,#FFFDE7,#FFF9C4); }
.thumb-ankeri     { background: linear-gradient(135deg,#E0F2F1,#B2DFDB); }
.thumb-oborudvane { background: linear-gradient(135deg,#E3F2FD,#BBDEFB); }

/* Product body */
.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.product-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--accent);
}
.product-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.product-art {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: monospace;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
  flex: 1;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.product-price { line-height: 1.2; }
.product-price .price-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}
.product-price .price-unit {
  font-size: 0.72rem;
  color: var(--muted);
}
.product-pack {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
}
.product-pack span { display: block; font-weight: 600; color: var(--text); }

.product-note {
  background: #FFF8EE;
  border: 1px solid #FFD699;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 0.73rem;
  color: #7A5200;
  margin-top: 8px;
  line-height: 1.4;
}

/* No results */
.no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}
.no-results .nr-icon { font-size: 3rem; margin-bottom: 16px; opacity: .4; }
.no-results p { font-size: 1rem; }

/* VAT notice */
.vat-notice {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.vat-notice strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card .sc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.service-card ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 0.83rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}
.why-card .wc-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.why-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.why-card p { font-size: 0.82rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .cc-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}
.contact-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--text); }
.contact-card a { color: var(--accent); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.contact-form h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 260px; flex-direction: row; gap: 20px; }
  .about-visual .av-logo { width: 130px; height: 130px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inner { gap: 32px; }
  .hero-logo-img { width: 170px; height: 170px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #ffffff; border-bottom: 1px solid #e0e0e0; padding: 16px; gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .cta-banner { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .catalog-toolbar { position: static; }
  .hero-inner { flex-direction: column-reverse; gap: 28px; }
  .hero-logo-img { width: 140px; height: 140px; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-hero-logo { height: 60px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 60px; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
