:root{
  --bg:#ffffff;
  --text:#111318;
  --muted:rgba(17,19,24,.68);
  --red:#E1162D;
  --red2:#FF2A3E;
  --card:#ffffff;
  --line:rgba(17,19,24,.10);
  --shadow:0 12px 30px rgba(17,19,24,.12);
  --radius:18px;
  --radius2:26px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff 0%, #fff 40%, #fafafb 100%);
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px, 92vw); margin:0 auto;}
.muted{color:var(--muted)}
.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid var(--line);
}
.header__row{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px; min-width:220px;}
.brand__logo{width:42px; height:42px; border-radius:12px; object-fit:contain}
.brand__name{font-weight:700; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}
.nav{display:flex; gap:12px; flex-wrap:wrap; justify-content:center}
.nav__link{
  padding:10px 12px; border-radius:999px;
  color:rgba(17,19,24,.82);
  border:1px solid transparent;
  font-weight:600; font-size:13px;
}
.nav__link:hover{background:rgba(225,22,45,.06); border-color:rgba(225,22,45,.14)}
.nav__link.is-active{background:rgba(225,22,45,.10); border-color:rgba(225,22,45,.20); color:var(--text)}
.header__cta{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  font-weight:700; font-size:13px;
  border:1px solid rgba(17,19,24,.12);
  background:#fff;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 10px 22px rgba(17,19,24,.12)}
.btn--ghost{background:rgba(17,19,24,.02)}
.btn--wa{border-color:rgba(225,22,45,.25); background:linear-gradient(135deg,var(--red),var(--red2)); color:#fff}
.hero{padding:54px 0 26px}
.hero__grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:stretch}
.hero__card{
  background:linear-gradient(135deg, rgba(225,22,45,.10), rgba(255,177,0,.10));
  border:1px solid rgba(225,22,45,.14);
  border-radius:var(--radius2);
  padding:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero h1{margin:0 0 10px; font-size:34px; line-height:1.12}
.hero__bullets{display:grid; gap:10px; margin-top:14px}
.pill{display:inline-flex; align-items:center; gap:10px; padding:10px 12px; border-radius:14px; background:rgba(255,255,255,.70); border:1px solid rgba(17,19,24,.10)}
.pill__dot{width:10px;height:10px;border-radius:99px;background:var(--red)}
.hero__side{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:#fff;
  padding:18px;
  box-shadow:0 10px 24px rgba(17,19,24,.08);
}
.kpi{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px}
.kpi__item{border:1px solid var(--line); border-radius:16px; padding:12px; background:rgba(17,19,24,.02)}
.kpi__num{font-weight:800; font-size:18px}
.section{padding:18px 0 54px}
.section__head{display:flex; align-items:end; justify-content:space-between; gap:12px; margin:14px 0}
.section__title{font-size:22px; margin:0}
.grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:14px}
@media (max-width: 980px){ .hero__grid{grid-template-columns:1fr} .grid{grid-template-columns:repeat(2, 1fr)} }
@media (max-width: 520px){ .grid{grid-template-columns:1fr} .hero h1{font-size:28px} }
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 10px 22px rgba(17,19,24,.06);
  transition:transform .12s ease, box-shadow .12s ease;
}
.card:hover{transform:translateY(-2px); box-shadow:0 16px 34px rgba(17,19,24,.12)}
.card__img{aspect-ratio:auto; width:100%; object-fit:cover; background:#fff}
.card__body{padding:14px}
.card__title{font-weight:800; margin:0 0 6px; font-size:14px; line-height:1.25}
.card__meta{font-size:12px; color:var(--muted); margin:0 0 10px}
.card__actions{display:flex; gap:10px; flex-wrap:wrap}
.btn--small{padding:9px 12px; font-size:12px}
.badge{display:inline-flex; padding:6px 10px; font-weight:700; font-size:11px; border-radius:999px; background:rgba(17,19,24,.04); border:1px solid rgba(17,19,24,.08)}
.page{padding:22px 0 56px}
.breadcrumbs{display:flex; gap:8px; align-items:center; flex-wrap:wrap; font-size:13px; color:var(--muted); margin:8px 0 18px}
.breadcrumbs a{color:rgba(17,19,24,.75)}
.product{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
@media (max-width: 980px){ .product{grid-template-columns:1fr} }
.product__media{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 12px 26px rgba(17,19,24,.10);
  overflow:hidden;
}
.product__media img{width:100%; aspect-ratio:1/1; object-fit:cover}
.product__panel{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 12px 26px rgba(17,19,24,.10);
  padding:18px;
}
.product h1{margin:0 0 10px; font-size:26px; line-height:1.15}
.table{width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:16px; border:1px solid var(--line)}
.table th, .table td{padding:10px 12px; text-align:left; font-size:13px; border-bottom:1px solid var(--line)}
.table tr:last-child th, .table tr:last-child td{border-bottom:none}
.table th{width:46%; color:rgba(17,19,24,.70); font-weight:700; background:rgba(17,19,24,.02)}
.note{border:1px dashed rgba(225,22,45,.35); background:rgba(225,22,45,.06); padding:12px; border-radius:16px; font-size:13px}
.site-footer{border-top:1px solid var(--line); background:#fff}
.footer__grid{display:grid; grid-template-columns: 1.2fr .9fr .9fr; gap:16px; padding:26px 0}
@media (max-width: 900px){ .footer__grid{grid-template-columns:1fr} }
.footer__title{font-weight:800; margin-bottom:10px}
.footer__links{display:grid; gap:8px}
.footer__links a{color:rgba(17,19,24,.78)}
.footer__links a:hover{color:var(--red)}
.footer__bottom{padding:14px 0 22px; border-top:1px solid var(--line)}

/* --- Enhancements (final) --- */
.nav{gap:14px}
.nav__link{position:relative}
.nav__link::after{content:""; position:absolute; left:10px; right:10px; bottom:-8px; height:2px; background:linear-gradient(90deg,var(--red),var(--red2)); opacity:0; transform:scaleX(.6); transition:all .18s ease; border-radius:3px}
.nav__link:hover::after{opacity:1; transform:scaleX(1)}

/* Top slider */
.top-slider{padding:14px 0 6px}
.top-slider__frame{position:relative; border-radius:var(--radius2); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); background:#000}
.top-slider__slides{position:relative; height:min(420px, 46vw)}
.top-slider__slide{position:absolute; inset:0; opacity:0; transform:scale(1.02); transition:opacity 1.15s ease-in-out, transform 1.35s ease-in-out}
.top-slider__slide.is-active{opacity:1; transform:scale(1)}
.top-slider__slide img{width:100%; height:100%; object-fit:cover; display:block}
.top-slider__nav{position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:999px; border:1px solid rgba(255,255,255,.25); background:rgba(0,0,0,.28); color:#fff; font-size:30px; line-height:42px; cursor:pointer; transition:transform .15s ease, background .15s ease}
.top-slider__nav:hover{background:rgba(0,0,0,.38); transform:translateY(-50%) scale(1.03)}
.top-slider__prev{left:14px}
.top-slider__next{right:14px}
.top-slider__dots{position:absolute; left:0; right:0; bottom:12px; display:flex; gap:8px; justify-content:center}
.top-slider__dot{width:9px; height:9px; border-radius:99px; background:rgba(255,255,255,.45); border:1px solid rgba(255,255,255,.35); cursor:pointer}
.top-slider__dot.is-active{background:#fff}

/* Quick links (hero right) */
.quick-links{margin-top:12px; display:grid; gap:10px}
.quick-link{display:block; padding:12px 12px; border-radius:16px; border:1px solid var(--line); background:linear-gradient(180deg, #fff, #fafafa); text-decoration:none; color:inherit; box-shadow:0 10px 18px rgba(17,19,24,.06); transition:transform .14s ease, box-shadow .14s ease, border-color .14s ease}
.quick-link:hover{transform:translateY(-2px); box-shadow:0 16px 26px rgba(17,19,24,.10); border-color:rgba(225,22,45,.25)}
.quick-link__title{font-weight:700}
.quick-link__sub{font-size:13px; color:var(--muted); margin-top:2px}
.quick-cta{margin-top:12px}

/* Footer map */
.footer__map-wrap{margin-top:18px}
.footer__map-title{font-weight:700; margin:8px 0 10px}
.footer__map{height:360px; border-top:1px solid var(--line); border-bottom:1px solid var(--line)}

/* Burger + drawer */
.burger{display:none; width:44px; height:44px; border-radius:14px; border:1px solid var(--line); background:#fff; cursor:pointer; align-items:center; justify-content:center; padding:10px; gap:5px}
.burger span{display:block; height:2px; width:100%; background:var(--text); border-radius:999px; opacity:.9}
.drawer{position:fixed; inset:0; display:none; z-index:9999}
.drawer.is-open{display:block}
.drawer__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.45)}
.drawer__panel{position:absolute; right:0; top:0; bottom:0; width:min(360px, 92vw); background:#fff; border-left:1px solid var(--line); padding:18px; display:flex; flex-direction:column; gap:14px}
.drawer__top{display:flex; align-items:center; justify-content:space-between}
.drawer__title{font-weight:800; font-size:18px}
.drawer__close{width:42px; height:42px; border-radius:14px; border:1px solid var(--line); background:#fff; font-size:22px; cursor:pointer}
.drawer__nav{display:grid; gap:10px}
.drawer__nav a{padding:10px 12px; border-radius:14px; border:1px solid var(--line); text-decoration:none; color:inherit; background:linear-gradient(180deg,#fff,#fafafa)}
.drawer__contacts{margin-top:auto; display:grid; gap:10px}

@media (max-width: 980px){
  .nav{display:none}
  .header__cta{display:none}
  .burger{display:flex}
}


.section--compact{padding:18px 0 32px}
.category-tiles{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:18px 0 8px}
.category-tile{display:flex;align-items:center;gap:16px;padding:18px;border:1px solid var(--line);background:#fff;border-radius:22px;box-shadow:var(--shadow)}
.category-tile__icon{width:52px;height:52px;border-radius:16px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(225,22,45,.08),rgba(255,42,62,.14));font-size:24px}
.category-tile__title{font-weight:800;font-size:18px;line-height:1.2}
.category-tile__sub{color:var(--muted);margin-top:4px;font-size:14px}
.product-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:12px}
.product-gallery img{width:100%;height:160px;object-fit:cover;border-radius:16px;border:1px solid var(--line);background:#fff;padding:6px}
.db-content{background:#fff;border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow);padding:24px;line-height:1.72}
.db-content img,.db-image{max-width:100%;height:auto!important;display:block;margin:14px auto;border-radius:18px;border:1px solid var(--line);background:#fff;padding:8px}
.db-content p,.db-content div{max-width:100%}
.table-scroll{overflow-x:auto;margin:16px 0}
.db-table{width:100%!important;min-width:560px;border-collapse:collapse;background:#fff}
.db-table td,.db-table th{border:1px solid var(--line);padding:10px 12px;vertical-align:top}
.db-table tr:nth-child(even) td{background:#fafafb}
.quick-link__sub{font-size:13px}
@media (max-width:900px){.category-tiles{grid-template-columns:1fr}.product-gallery{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.product-gallery{grid-template-columns:1fr}.db-content{padding:16px}.db-table{min-width:460px}.category-tile__title{font-size:16px}}

.category-intro{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:start;margin-bottom:18px}.category-intro__box,.category-intro__side{background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);border-radius:24px;padding:22px}.spec-list{display:grid;gap:10px;margin-top:12px}.spec-item{padding:12px 14px;border:1px solid var(--line);border-radius:16px;background:linear-gradient(180deg,#fff,#fafafa)}.spec-item b{display:block;margin-bottom:4px}.hero-about{margin-top:18px}.hero-about .db-content{padding:20px}.product-headline{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-bottom:6px}.product__panel .muted{font-size:14px}.db-content h1,.db-content h2,.db-content h3{line-height:1.2}.db-content ul{padding-left:18px}.db-content .photo-block{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:16px 0}.db-content .photo-block_item img{height:220px!important;object-fit:cover}.db-content iframe{width:100%;min-height:420px;border:0;border-radius:18px}.catalog-cats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.catalog-cats .category-tile{height:100%}@media (max-width:980px){.category-intro{grid-template-columns:1fr}.catalog-cats{grid-template-columns:repeat(2,minmax(0,1fr))}.db-content .photo-block{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:640px){.catalog-cats{grid-template-columns:1fr}.db-content .photo-block{grid-template-columns:1fr}.db-content .photo-block_item img{height:auto!important}}

/* Product detail cleanup */
.product__panel .db-content{
  margin-top:16px;
  padding:0;
  border:none;
  box-shadow:none;
  border-radius:0;
  background:transparent;
  line-height:1.72;
}
.product__details-title{
  margin:20px 0 14px;
  font-size:22px;
  line-height:1.2;
}
.product__panel .db-content > *:first-child{margin-top:0}
.product__panel .db-content .table-scroll{margin:16px 0 0}
.product__panel .db-content .db-table{
  width:100%!important;
  min-width:100%;
  border-radius:18px;
  overflow:hidden;
}
.product__panel .db-content .db-table td,
.product__panel .db-content .db-table th{
  font-size:14px;
}
@media (max-width:640px){
  .product__details-title{font-size:20px}
  .product__panel .db-content .db-table{min-width:460px}
}


/* menu and homepage refinements */
.nav{flex-wrap:wrap;justify-content:center}
.nav__link{white-space:nowrap}
.hero__side .quick-links{display:grid;grid-template-columns:1fr;gap:12px}
.quick-link{padding:18px 20px}
.quick-link__title{font-size:16px;font-weight:700}
.quick-link__sub{display:none!important}
.category-showcase + .category-showcase{padding-top:0}
.menu-strip{border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:flex}
}


/* Final visual refinement */
.site-header{
  background:
    radial-gradient(1200px 180px at top center, rgba(225,22,45,.10), transparent 70%),
    rgba(255,255,255,.92);
}
.header__row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px 18px;
  padding:14px 0 18px;
}
.brand__logo{
  width:52px;
  height:52px;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 10px 24px rgba(17,19,24,.12);
  border:1px solid rgba(225,22,45,.12);
  background:#fff;
  padding:4px;
}
.brand__name{font-size:20px}
.nav{
  grid-column:1/-1;
  order:3;
  width:100%;
  padding:10px 14px;
  border:1px solid rgba(17,19,24,.08);
  background:linear-gradient(180deg,#fff,rgba(250,250,251,.96));
  border-radius:24px;
  box-shadow:0 14px 30px rgba(17,19,24,.06);
}
.nav__link{
  font-size:14px;
  padding:12px 14px;
}
.top-slider__slides{height:min(470px, 52vw)}
.top-slider__frame::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:80px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.20));
  pointer-events:none;
}
.hero__card::before{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(225,22,45,.18), transparent 68%);
}
.pill{
  position:relative;
  padding-left:46px;
}
.pill::before{
  content:"";
  position:absolute;
  left:14px;
  top:50%;
  width:20px;
  height:20px;
  transform:translateY(-50%);
  opacity:.92;
  background-repeat:no-repeat;
  background-position:center;
  background-size:20px 20px;
  filter:drop-shadow(0 2px 4px rgba(17,19,24,.10));
}
.hero__bullets .pill:nth-child(1)::before{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E1162D"><path d="M5 4h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm2 3v3h10V7H7Zm0 5v5h4v-5H7Zm6 0v2h4v-2h-4Zm0 3v2h4v-2h-4Z"/></svg>')}
.hero__bullets .pill:nth-child(2)::before{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E1162D"><path d="M7 4h10l3 3v13H4V7l3-3Zm0 2.5L5.5 8H8V5.5H7Zm9 0h-1V8h2.5L16 6.5ZM8 12a4 4 0 1 0 8 0 4 4 0 0 0-8 0Zm4-2.2A2.2 2.2 0 1 1 9.8 12 2.2 2.2 0 0 1 12 9.8Z"/></svg>')}
.hero__bullets .pill:nth-child(3)::before{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E1162D"><path d="M20 5H4a2 2 0 0 0-2 2v10l4-3h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Zm-8 7H7v-2h5v2Zm5-3H7V7h10v2Z"/></svg>')}
.quick-link{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
}
.quick-link__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 46px;
  background:linear-gradient(135deg, rgba(225,22,45,.12), rgba(255,177,0,.14));
  border:1px solid rgba(225,22,45,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5);
}
.quick-link__icon svg{
  width:23px;
  height:23px;
  fill:#E1162D;
}
.quick-link__title{font-size:15px}
.category-showcase .section__title::before,
#about .section__title::before{
  content:"";
  display:inline-block;
  width:18px;
  height:18px;
  margin-right:10px;
  vertical-align:-3px;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E1162D"><path d="M4 6h16v3H4V6Zm0 5h10v3H4v-3Zm0 5h16v3H4v-3Z"/></svg>');
  background-repeat:no-repeat;
  background-size:18px 18px;
}
.about-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}
.about-card,.about-side{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.about-card{padding:26px}
.about-lead{
  font-size:21px;
  line-height:1.35;
  font-weight:700;
  margin-bottom:14px;
}
.about-card p{
  margin:0 0 14px;
  line-height:1.78;
  color:rgba(17,19,24,.78);
}
.about-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}
.about-side{
  padding:18px;
  display:grid;
  gap:12px;
  align-content:start;
  background:linear-gradient(180deg,#fff,#fafafb);
}
.feature-tile{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:12px;
  align-items:start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(17,19,24,.08);
  background:#fff;
}
.feature-tile__icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(225,22,45,.12), rgba(255,177,0,.16));
}
.feature-tile__icon svg{
  width:24px;
  height:24px;
  stroke:#E1162D;
  stroke-width:2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.feature-tile strong{display:block;margin-bottom:4px}
.feature-tile span{display:block;color:var(--muted);line-height:1.55}
@media (max-width: 980px){
  .header__row{grid-template-columns:auto 1fr auto}
  .nav{
    display:none;
    grid-column:auto;
    order:0;
    width:auto;
    padding:0;
    border:none;
    background:transparent;
    box-shadow:none;
  }
  .burger{display:flex}
  .top-slider__slides{height:min(420px, 58vw)}
  .about-layout{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .brand__logo{width:46px;height:46px;border-radius:16px}
  .top-slider__slides{height:340px}
  .hero__card,.hero__side,.about-card,.about-side{border-radius:20px}
  .about-lead{font-size:18px}
}


/* Mobile slider fix: keep full image without side crop */
.burger{flex-direction:column}
.top-slider__frame{background:#fff}
.top-slider__slides{height:min(462px, 50vw)}
.top-slider__slide img{object-position:center center}

.about-company{position:relative; overflow:hidden}
.about-company::before{
  content:"";
  position:absolute;
  right:-80px; top:-80px;
  width:220px; height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(225,22,45,.10) 0%, rgba(225,22,45,0) 70%);
  pointer-events:none;
}
.about-company__lead{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  align-items:start;
  margin-bottom:18px;
}
.about-company__icon,
.about-item__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--red);
  background:linear-gradient(135deg, rgba(225,22,45,.08), rgba(255,42,62,.14));
  border:1px solid rgba(225,22,45,.14);
  box-shadow:0 8px 18px rgba(17,19,24,.06);
}
.about-company__icon{
  width:72px; height:72px; border-radius:20px;
}
.about-company__icon svg,
.about-item__icon svg{width:30px; height:30px}
.about-company h3{margin:0 0 10px; font-size:24px; line-height:1.15}
.about-company p{margin:0; color:var(--muted)}
.about-company__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.about-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  align-items:start;
  padding:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg,#fff,#fcfcfd);
}
.about-item__icon{
  width:54px; height:54px; border-radius:16px;
}
.about-item b{display:block; margin:2px 0 6px; font-size:16px}
.about-item p{font-size:14px; line-height:1.65}

@media (max-width:980px){
  .top-slider__slides{height:min(430px, 56vw)}
  .about-company__grid{grid-template-columns:1fr}
}

@media (max-width:640px){
  .top-slider{padding:10px 0 4px}
  .top-slider__frame{
    border-radius:22px;
    background:#fff;
  }
  .top-slider__slides{
    height:auto;
    aspect-ratio:1200 / 530;
    background:#fff;
  }
  .top-slider__slide img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center center;
    background:#fff;
  }
  .top-slider__nav{
    width:40px;
    height:40px;
    line-height:38px;
    font-size:26px;
  }
  .about-company__lead{
    grid-template-columns:1fr;
    gap:14px;
  }
  .about-company__icon{
    width:62px; height:62px;
  }
  .about-company h3{
    font-size:22px;
  }
}


/* v2 mobile/media cleanup */
html, body{
  overflow-x:hidden;
}
img{
  max-width:100%;
  height:auto;
}
.product__media,
.product__panel,
.db-content,
.table-scroll,
.card,
.top-slider__frame{
  max-width:100%;
  overflow:hidden;
}
.product__media img,
.card__img,
.db-content img,
.db-image{
  max-width:100%;
  height:auto !important;
}
.product-gallery,
.product-thumbs,
.thumbs,
.gallery-thumbs,
.miniatures{
  display:none !important;
}

@media (max-width: 640px){
  .container{
    width:min(100%, calc(100vw - 24px));
  }
  .top-slider{
    padding:10px 0 4px;
  }
  .top-slider__frame{
    border-radius:20px;
    background:#fff;
  }
  .top-slider__slides{
    height:auto !important;
    aspect-ratio:1200 / 530;
    background:#fff;
  }
  .top-slider__slide img{
    width:100%;
    height:100%;
    object-fit:contain !important;
    object-position:center center;
    background:#fff;
  }
  .product{
    grid-template-columns:1fr !important;
    gap:14px;
  }
  .product__media img{
    width:100%;
    max-width:100%;
    object-fit:contain;
  }
  .db-content,
  .product__panel{
    word-break:break-word;
    overflow-wrap:anywhere;
  }
  .db-content table,
  .table{
    max-width:100%;
  }
}

.pump-copy{display:grid;gap:14px}
.pump-copy-block{padding:14px 16px;border:1px solid var(--line);border-radius:18px;background:linear-gradient(180deg,#fff,#fbfbfc)}
.pump-copy-block h3{margin:0 0 10px;font-size:17px}
.pump-copy-block ul{margin:0;padding-left:18px;display:grid;gap:8px}
.pump-extra-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.pump-extra-card{background:#fff;border:1px solid var(--line);border-radius:20px;overflow:hidden;box-shadow:0 10px 22px rgba(17,19,24,.06)}
.pump-extra-card img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover;background:#fff}
.pump-extra-card__title{padding:12px 14px;font-weight:700}
.quick-link--pump .quick-link__icon{background:linear-gradient(135deg,rgba(17,131,255,.10),rgba(17,131,255,.20))}
@media (max-width:980px){.pump-extra-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:640px){.pump-extra-grid{grid-template-columns:1fr}.pump-extra-card img{aspect-ratio:auto;max-width:100%;height:auto;object-fit:contain}}


/* Thermal oil boiler section */
.feature-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:18px 0}.feature-card{padding:16px 18px;border:1px solid var(--line);border-radius:18px;background:linear-gradient(180deg,#fff,#fafafa);box-shadow:0 10px 18px rgba(17,19,24,.05)}.feature-card h3{margin:0 0 8px;font-size:17px}.feature-card p{margin:0}.info-note{margin-top:18px;padding:16px 18px;border-radius:18px;background:rgba(225,22,45,.04);border:1px solid rgba(225,22,45,.10)}@media (max-width:760px){.feature-grid{grid-template-columns:1fr}}


/* Header split into two elegant menus */
.header__center{display:flex;flex-direction:column;gap:10px;flex:1;min-width:0}
.nav--top{justify-content:flex-start;gap:8px}
.nav--top .nav__link{padding:8px 12px;font-size:12px;background:rgba(17,19,24,.03);border-color:rgba(17,19,24,.06)}
.nav--top .nav__link:hover{background:rgba(225,22,45,.06);border-color:rgba(225,22,45,.14)}
.nav--categories{justify-content:flex-start;gap:10px;padding:10px 12px;border-radius:20px;background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(250,250,251,.95));border:1px solid var(--line);box-shadow:0 10px 24px rgba(17,19,24,.06)}
.nav--categories .nav__link{background:#fff;border-color:rgba(17,19,24,.06)}
.nav--categories .nav__link.is-active{background:linear-gradient(135deg,rgba(225,22,45,.10),rgba(255,42,62,.08));border-color:rgba(225,22,45,.18)}
.header__row{align-items:flex-start}
.drawer__section{display:grid;gap:10px}
.drawer__section-title{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);padding:2px 4px}
@media (max-width: 980px){
  .header__center{display:none}
  .header__row{align-items:center}
}


/* precise header categories strip */
.header__center{display:grid;gap:8px;justify-items:center}
.nav--top{justify-content:center}
.header__menu-strip{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:rgba(255,255,255,.96)}
.header__menu-strip .container{width:min(1320px,100vw);max-width:none;padding:0 18px}
.nav--categories{display:flex;justify-content:center;gap:10px;flex-wrap:nowrap;overflow:auto;padding:12px 0}
.nav--categories::-webkit-scrollbar{height:6px}
.nav--categories::-webkit-scrollbar-thumb{background:rgba(17,19,24,.14);border-radius:999px}
.nav--categories .nav__link{padding:11px 16px;background:rgba(17,19,24,.025);border:1px solid rgba(17,19,24,.07)}
.nav--categories .nav__link:hover,.nav--categories .nav__link.is-active{background:#fff;border-color:rgba(225,22,45,.18);box-shadow:0 8px 20px rgba(17,19,24,.06)}
.site-header{padding-bottom:0}
@media (max-width:980px){
  .header__menu-strip{display:none}
  .header__center{display:none}
}


/* Final touch-ups */
.product__media img{background:#fff;object-fit:contain}
.product-gallery{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.product-gallery img{height:190px;object-fit:contain;background:#fff;padding:10px}
.category-grid-home .card__img{aspect-ratio:4/3;object-fit:contain;padding:18px;background:#fff}
.category-card-home .card__body{display:flex;flex-direction:column;gap:10px}
.category-card-home .card__actions{margin-top:auto}
@media (min-width: 1024px){
  .category-grid-home{grid-template-columns:repeat(3,minmax(0,1fr))}
}


.btn--insta{
  gap:8px;
  border-color:rgba(225,22,45,.18);
  background:linear-gradient(135deg,#833AB4,#E1306C,#F77737);
  color:#fff;
}
.btn--insta svg{width:16px;height:16px;display:block;fill:currentColor}
.contact-socials{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-top:14px}
.footer__links .btn--insta{display:inline-flex;width:max-content;margin-top:6px}
