:root{
  --primary:#0b4a9e;
  --primary-dark:#082f63;
  --accent:#0ea5a4;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#f3f6fb;
  --surface:#ffffff;
  --border:#dbe3ef;
}
*{box-sizing:border-box}
body{margin:0;font-family:Segoe UI,Arial,sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden;font-size:clamp(14px,.82vw + 11px,17px);line-height:1.45}
a{text-decoration:none;color:inherit}
.container{width:100%;max-width:none;margin:0 auto;padding-inline:clamp(12px,2.2vw,34px)}
.memberbar{background:#f8fafc;border-bottom:1px solid var(--border);font-size:12px;color:#475569}
.memberbar-inner{display:flex;justify-content:space-between;align-items:center;padding:6px 0;gap:12px;flex-wrap:wrap}
.memberbar .sep{margin:0 8px;color:#94a3b8}
.topline{background:var(--primary-dark);color:#dbeafe;font-size:13px}
.topline .container{display:flex;justify-content:space-between;padding:5px 0;gap:10px;flex-wrap:wrap}
.promo-bar{justify-content:center !important;text-align:center;line-height:1.35}
.promo-bar span{max-width:1000px}
header{background:#fff;position:sticky;top:0;z-index:30;border-bottom:1px solid var(--border);box-shadow:0 8px 24px rgba(15,23,42,.08)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:8px 0;gap:16px}
.brand{font-size:30px;font-weight:900;color:var(--primary);line-height:1}
.brand small{display:block;font-size:11px;letter-spacing:1px;color:var(--accent)}
.logo-wrap{display:flex;align-items:center;gap:10px}
.logo-wrap img{
  width:clamp(170px, 32vw, 420px);
  height:auto;
  max-height:clamp(52px, 7.2vw, 96px);
  object-fit:contain;
  object-position:left top;
  display:block;
}
.header-search{
  flex:1 1 620px;
  max-width:min(760px,56vw);
  display:flex;
  align-items:center;
  gap:8px;
}
.header-search input{
  flex:1;
  min-width:260px;
  height:40px;
  padding:0 12px;
  border:1px solid #cbd5e1;
  border-radius:999px;
  outline:none;
}
.header-search input:focus{border-color:#0b4a9e;box-shadow:0 0 0 3px rgba(11,74,158,.12)}
.header-search button{
  height:40px;
  padding:0 14px;
  border-radius:999px;
  border:0;
  background:#0b4a9e;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.header-search input,.header-search button{font-size:clamp(12px,.24vw + 11px,14px)}
.menu{display:flex;gap:18px;align-items:center;position:relative}
.menu a{font-weight:600;font-size:clamp(13px,.34vw + 11px,16px)}
.btn{padding:clamp(8px,.45vw + 6px,11px) clamp(12px,.65vw + 10px,18px);border-radius:999px;background:var(--primary);color:#fff;border:0;cursor:pointer;font-weight:700;font-size:clamp(12px,.28vw + 11px,14px)}
.mobile-btn{display:none;border:1px solid var(--border);background:#fff;border-radius:10px;padding:8px 10px}
.mobile-left-actions,.mobile-right-actions,.mobile-callline{display:none}
.icon-btn{
  width:36px;height:36px;border:1px solid #dbe3ef;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background:#fff;color:#0f172a;font-size:18px;
}

.menu-dropdown{position:static}
.mega-menu{
  position:fixed;
  top:130%;
  left:50%;
  transform:translateX(-50%);
  width:min(760px,calc(100vw - 20px));
  max-width:calc(100vw - 20px);
  display:none;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding:12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 16px 36px rgba(15,23,42,.18)
}
.menu-dropdown:hover .mega-menu{display:grid}
.mega-menu a{padding:10px;background:#f8fafc;border-radius:10px}
.mega-menu strong{display:block}
.mega-menu span{display:block;color:var(--muted);font-size:12px;margin-top:4px}

.hero{margin:14px auto 0;background:#0b7285;border-radius:16px;overflow:hidden;position:relative;box-shadow:0 24px 44px rgba(8,47,73,.24);max-width:100%}
.hero-full{width:100%;max-width:100%;margin:0;border-radius:0;box-shadow:none}
.hero-slide{display:none;position:relative;overflow:hidden}
.hero-slide.active{display:block}
.hero img{width:100%;height:min(560px,58vw);object-fit:cover;object-position:center;display:block}
.hero-slider{touch-action:pan-y;user-select:none}
.hero-overlay{position:absolute;inset:auto 0 0 0;padding:20px;background:linear-gradient(180deg,transparent,rgba(0,0,0,.58));color:#fff}
.hero-overlay h1{margin:0;font-size:clamp(24px,4vw,44px)}
.hero-overlay p{margin:8px 0 0;max-width:620px}
.hero-dots{position:absolute;left:50%;bottom:12px;transform:translateX(-50%);display:flex;gap:8px}
.hero-dots button{width:10px;height:10px;border:0;border-radius:50%;background:rgba(255,255,255,.45)}
.hero-dots button.active{background:#fff}
.hero-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.28);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
  z-index:6;
}
.hero-prev{left:16px}
.hero-next{right:16px}

.section{padding:40px 0}
.section.dark{background:#190952;color:#fff}
.section-divider{
  height:34px;
  background:linear-gradient(180deg,#190952 0%, #2a1767 48%, #f3f6fb 100%);
}
.section-title{text-align:center;margin:0 0 22px;font-size:clamp(26px,1.4vw + 18px,40px)}
.light-title{color:#0f172a;text-align:left;margin-bottom:14px;font-size:clamp(24px,1.1vw + 16px,34px)}
.kpi{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.kpi article{
  position:relative;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid #dbe7f7;
  border-radius:14px;
  padding:18px 18px 16px;
  box-shadow:0 10px 22px rgba(15,23,42,.08);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.kpi article::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(180deg,#0b4a9e,#3b82f6);
}
.kpi article::after{
  content:"";
  position:absolute;
  right:-34px;
  top:-34px;
  width:100px;
  height:100px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(11,74,158,.11) 0%,rgba(11,74,158,0) 68%);
}
.kpi article:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 28px rgba(15,23,42,.12);
  border-color:#bfd5f4;
}
.kpi b{
  display:block;
  font-size:34px;
  line-height:1;
  letter-spacing:.4px;
  color:#0b3c78;
  margin-bottom:6px;
}
.kpi span{
  display:block;
  color:#475569;
  font-size:18px;
  line-height:1.3;
  font-weight:500;
}
.kpi i{
  width:38px;
  height:38px;
  border-radius:10px;
  display:grid;
  place-items:center;
  font-style:normal;
  font-size:18px;
  margin-bottom:10px;
  background:#eaf2ff;
  border:1px solid #c9dbf7;
}

.categories{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.card{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;box-shadow:0 12px 24px rgba(15,23,42,.08)}
.card img{width:100%;height:220px;object-fit:cover;display:block}
.card .p{padding:14px}
.card h3{margin:0 0 8px}
.card p{margin:0;color:#4b5563}
.group-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.group-card{
  background:#fff;
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
  overflow:hidden;
  color:#0f172a;
  box-shadow:0 16px 28px rgba(0,0,0,.2);
}
.group-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
.group-content{padding:16px}
.group-content h3{margin:0 0 8px;font-size:20px}
.group-content p{margin:0 0 12px;color:#475569;line-height:1.5}
.group-content a{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid #cbd5e1;
  color:#0b4a9e;
  font-weight:700;
  font-size:13px;
}

.split{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
.about{font-size:18px;line-height:1.7}

.chips{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:8px;
  margin-bottom:18px;
}
.chips{scrollbar-width:none;-ms-overflow-style:none}
.chips::-webkit-scrollbar{display:none}
.chips a{
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  line-height:1.25;
  font-size:clamp(12px,.22vw + 11px,14px);
}
.chips a.active{border-color:#dc2626;color:#b91c1c}

/* Yeni gelenler kategorilerini tek satır yerine tümünü görünür yap */
.arrivals-module .chips{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:10px;
  overflow:visible;
  padding-bottom:0;
}
.arrivals-module .chips a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  text-align:center;
  font-weight:600;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid #d7e3f6;
  box-shadow:0 6px 14px rgba(15,23,42,.06);
  transition:all .16s ease;
}
.arrivals-module .chips a:hover{
  border-color:#9fb9e8;
  transform:translateY(-1px);
}
.arrivals-module .chips a.active{
  border-color:#0b4a9e;
  color:#fff;
  background:#0b4a9e;
}
.products{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.products .card img{height:170px}
.catalog-hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border-radius:14px;
  background:linear-gradient(120deg,#eaf2ff 0%,#f8fbff 65%,#ffffff 100%);
  border:1px solid #dbe3ef;
  margin-bottom:14px;
}
.catalog-hero h1{margin:0;font-size:34px;color:#0f172a}
.catalog-hero p{margin:8px 0 0;color:#475569;max-width:640px}
.catalog-hero-badge{
  text-align:center;
  background:#0b4a9e;
  color:#fff;
  border-radius:12px;
  padding:12px 18px;
  min-width:130px;
}
.catalog-hero-badge strong{display:block;font-size:28px;line-height:1.1}
.catalog-hero-badge span{display:block;font-size:12px;color:#dbeafe}
.catalog-filters{
  display:grid;
  grid-template-columns:2fr 1fr 1fr auto;
  gap:10px;
  background:#fff;
  border:1px solid #dbe3ef;
  border-radius:12px;
  padding:12px;
  margin-bottom:12px;
}
.catalog-filters label{display:block;font-size:12px;color:#64748b;margin-bottom:5px}
.catalog-filters input{
  width:100%;
  padding:10px 12px;
  border:1px solid #cbd5e1;
  border-radius:8px;
}
.catalog-filter-actions{display:flex;align-items:flex-end;gap:8px}
.btn-light{background:#fff;color:#0b4a9e;border:1px solid #cbd5e1}
.catalog-products{gap:16px}
.catalog-card{
  border-radius:14px;
  transition:transform .18s ease, box-shadow .18s ease;
}
.catalog-card:hover{transform:translateY(-3px);box-shadow:0 16px 28px rgba(15,23,42,.14)}
.catalog-card .p{display:grid;gap:8px}
.catalog-card p{min-height:40px}
.catalog-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.catalog-actions form{margin:0;flex:1 1 170px}
.catalog-actions .catalog-cta{width:100%;text-align:center}
.catalog-cta{
  display:inline-block;
  margin-top:2px;
  padding:9px 14px;
  border-radius:999px;
  background:#0b4a9e;
  color:#fff;
  font-weight:700;
  font-size:13px;
}
.catalog-cta:hover{background:#082f63}
.catalog-cta-light{background:#fff;color:#0b4a9e;border:1px solid #cbd5e1}
.catalog-cta-light:hover{background:#f8fafc}
.catalog-support{display:inline-flex;align-items:center;justify-content:center;gap:7px}
.catalog-support svg{width:16px;height:16px;color:#16a34a;flex:0 0 16px}
.share-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap;padding-top:2px}
.share-row span{font-size:12px;color:#64748b}
.share-row a{
  font-size:12px;
  padding:5px 9px;
  border-radius:999px;
  border:1px solid #dbe3ef;
  color:#334155;
  background:#fff;
}
.share-row a:hover{border-color:#94a3b8}
.catalog-empty{grid-column:1/-1}
.catalog-empty .p{text-align:center;padding:26px}
.quote-cart{margin-top:18px}
.quote-cart-head{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.quote-cart-head h2{margin:0}
.quote-cart-table-wrap{overflow:auto;margin-top:10px}
.quote-cart-table{width:100%;border-collapse:collapse}
.quote-cart-table th,.quote-cart-table td{padding:10px;border-bottom:1px solid #e2e8f0;text-align:left;vertical-align:middle}
.quote-cart-table th{background:#f8fafc}
.quote-cart-table input{width:84px;padding:8px;border:1px solid #cbd5e1;border-radius:8px}
.quote-product{display:flex;align-items:center;gap:10px}
.quote-product img{width:46px;height:46px;object-fit:contain;border:1px solid #e2e8f0;border-radius:8px;background:#fff}
.quote-product strong{display:block;font-size:14px}
.quote-product small{display:block;color:#64748b;font-size:12px}
.quote-cart-actions{margin-top:10px;display:flex;justify-content:space-between;align-items:flex-end;gap:12px;flex-wrap:wrap}
.quote-totals{display:grid;gap:4px}
.quote-totals div{display:flex;gap:8px;align-items:center;color:#475569}
.quote-totals .grand{color:#0f172a}
.quote-actions{display:flex;gap:8px;flex-wrap:wrap}
.quote-form{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #dbe3ef;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.quote-form label{display:block;font-size:12px;color:#64748b;margin-bottom:5px}
.quote-form input,.quote-form textarea{width:100%;padding:10px;border:1px solid #cbd5e1;border-radius:8px}
.quote-form .full{grid-column:1/-1}
.tag{display:inline-block;padding:4px 8px;border-radius:999px;background:#eaf2ff;color:#1d4ed8;font-size:12px;font-weight:700}
.new-badge{display:inline-block;background:#111827;color:#fff;font-size:11px;padding:3px 6px;border-radius:4px;margin-bottom:8px}
.price{font-size:20px;font-weight:800;margin:8px 0}
.arrivals-head{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:14px}
.arrivals-head h2{margin:0;font-size:clamp(24px,1vw + 18px,36px);letter-spacing:.5px}
.arrivals-head span{display:block;width:90px;height:2px;background:#c03346}
.arrivals-wrap{display:flex;align-items:center;gap:10px}
.arrivals-nav{width:40px;height:40px;border-radius:50%;border:1px solid #e5e7eb;background:#fff;color:#6b7280;font-size:28px;line-height:1;cursor:pointer;flex:0 0 40px}
.arrivals-products{
  flex:1;
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding-bottom:8px;
}
.arrivals-products::-webkit-scrollbar{display:none}
.arrivals-products .card{
  border:0;
  border-right:1px solid #d9dee7;
  box-shadow:none;
  background:transparent;
  text-align:center;
  min-width:220px;
  flex:0 0 220px;
  border-radius:0;
  padding-right:10px;
}
.arrivals-products .card:last-child{border-right:0}
.arrivals-products .card img{height:150px;object-fit:contain;background:transparent}
.arrivals-products .card .p{padding-top:6px;min-width:0}
.arrivals-products .new-badge{display:inline-block;background:#111827;color:#fff;font-size:10px;padding:2px 6px;border-radius:2px;margin-bottom:10px}
.arrivals-products .tag{display:none}
.arrivals-products h3{
  font-size:clamp(14px,.3vw + 12px,17px);
  font-weight:500;
  margin:0 0 6px;
  line-height:1.3;
  min-height:2.6em;
  overflow:hidden;
  overflow-wrap:anywhere;
  word-break:break-word;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.arrivals-products .price{font-size:clamp(17px,.75vw + 13px,24px);font-weight:700;margin:0 0 8px}
.arrivals-products .p a{font-size:clamp(12px,.2vw + 11px,14px);color:#111827}

.advantages{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.adv{background:#fff;border:1px solid var(--border);border-radius:12px;padding:20px;text-align:center}
.adv .icon{font-size:28px;line-height:1}
.news{background:#fff;border:1px solid var(--border);border-radius:12px;padding:20px}
.news form{display:flex;gap:10px}
.news input{flex:1;padding:10px;border:1px solid #cbd5e1;border-radius:8px}
.news-note{font-size:12px;color:#64748b;margin:12px 0 0}

footer{background:linear-gradient(180deg,#0a4ea0 0%,#073b7a 100%);color:#fff;padding:42px 0 30px;margin-top:26px}
.footer-grid{display:grid;grid-template-columns:minmax(0,1.25fr) repeat(3,minmax(0,1fr));gap:20px;align-items:stretch}
.footer-grid > div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:16px 14px;
  box-shadow:0 12px 20px rgba(2,6,23,.12);
}
.footer-brand-block{align-self:stretch}
.footer-grid h4{margin:0 0 10px}
.footer-grid p{margin:0 0 7px;color:#dbeafe;line-height:1.5}
.footer-brand-block img{
  width:100%;
  max-width:220px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.25);
  margin-bottom:10px;
  display:block;
}
.footer-social{display:flex;gap:8px;margin-top:8px}
.footer-social a{
  width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.3);
  color:#fff;background:rgba(255,255,255,.08);
}
.footer-social a svg{width:18px;height:18px}
.footer-copy{padding-top:18px;margin-top:14px;border-top:1px solid rgba(255,255,255,.2);color:#bfdbfe;font-size:13px;text-align:center}
.flash{padding:10px 12px;border-radius:8px;margin:10px 0}
.flash.ok{background:#dcfce7;color:#166534}
.flash.err{background:#fee2e2;color:#991b1b}

.dealership-layout{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1.9fr);
  gap:16px;
  align-items:start;
}
.dealership-info{
  background:#fff;
  border:1px solid #dbe3ef;
  border-radius:14px;
  padding:18px;
  box-shadow:0 10px 22px rgba(15,23,42,.08);
}
.dealership-info h2{margin:0 0 8px;font-size:24px}
.dealership-info p{margin:0 0 10px;color:#475569;line-height:1.6}
.dealership-list{margin:0;padding-left:18px;color:#334155;display:grid;gap:6px}
.dealership-form.card{padding:18px}
.dealership-form .quote-form{margin-top:0;padding-top:0;border-top:0}
.dealership-form input,.dealership-form textarea{
  background:#f8fafc;
  border:1px solid #d6e0ee;
}
.dealership-form input:focus,.dealership-form textarea:focus{
  outline:none;
  border-color:#0b4a9e;
  box-shadow:0 0 0 3px rgba(11,74,158,.12);
}
.form-help{margin:0;font-size:12px;color:#64748b}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.4fr);
  gap:16px;
  align-items:start;
}
.contact-stack{display:grid;gap:12px}
.contact-card{
  background:#fff;
  border:1px solid #dbe3ef;
  border-radius:14px;
  padding:16px;
  box-shadow:0 10px 22px rgba(15,23,42,.08);
}
.contact-card h3{margin:0 0 8px;font-size:20px}
.contact-card p{margin:0;color:#475569;line-height:1.6}
.contact-meta{display:grid;gap:8px;margin-top:12px}
.contact-meta a,.contact-meta span{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #dbe3ef;
  background:#f8fafc;
  color:#0f172a;
  font-weight:600;
}
.contact-meta .address-row{
  border-color:#bfdbfe;
  background:#eff6ff;
}
.contact-meta .address-link{
  color:#0b4a9e;
  text-decoration:underline;
  text-underline-offset:2px;
}
.map-card{
  background:#fff;
  border:2px solid #93c5fd;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 14px 26px rgba(11,74,158,.16);
}
.map-card iframe{
  width:100%;
  height:460px;
  border:0;
  display:block;
}
.map-actions{
  padding:12px;
  border-top:1px solid #e2e8f0;
  background:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.map-actions p{margin:0;color:#64748b;font-size:14px}
.map-open-btn{
  padding:10px 18px;
  font-size:14px;
  box-shadow:0 10px 18px rgba(11,74,158,.22);
}

.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:80;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#22c55e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 28px rgba(34,197,94,.38);
  transition:transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 20px 32px rgba(34,197,94,.46);
}
.wa-float svg{width:30px;height:30px;fill:currentColor}

@media (max-width:980px){
  .kpi,.categories,.products{grid-template-columns:repeat(2,minmax(0,1fr))}
  .split{grid-template-columns:1fr}
  .group-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .logo-wrap img{width:clamp(160px, 36vw, 320px);height:auto;max-height:clamp(50px, 8.5vw, 80px)}
  .header-search{flex-basis:420px;max-width:min(540px,52vw)}
  .hero img{height:min(460px,64vw)}
  .hero-overlay{padding:14px}
  .catalog-hero h1{font-size:30px}
  .catalog-filters{grid-template-columns:1fr 1fr}
  .catalog-filter-actions{grid-column:1/-1}
  .quote-form{grid-template-columns:1fr}
  .dealership-layout{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .map-card iframe{height:360px}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  .footer-brand-block{grid-column:1/-1}
  .footer-brand-block img{max-width:260px}
}
@media (max-width:700px){
  .topline{font-size:12px}
  .topline .container{justify-content:center;text-align:center;line-height:1.4}
  .mobile-btn{display:inline-block}
  .menu{display:none;flex-direction:column;align-items:flex-start;width:100%;gap:10px;padding-top:8px}
  .menu.open{display:flex}
  .nav{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:8px;
    padding:10px 0 8px;
  }
  .mobile-left-actions,.mobile-right-actions{display:flex;gap:8px;align-items:center}
  .mobile-left-actions .icon-btn#mobileBtn{
    border:none;background:transparent;font-size:30px;width:30px;height:30px;padding:0;
  }
  .header-search{display:none}
  .logo-wrap{justify-content:center}
  .logo-wrap img{width:clamp(170px,48vw,220px);max-height:58px;object-position:center}
  .mobile-callline{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:4px 10px 10px;
    font-size:12px;
    color:#0b4a9e;
    font-weight:700;
  }
  .mobile-callline strong{font-size:20px;line-height:1;color:#0b4a9e}
  .mega-menu{position:static;left:auto;transform:none;display:grid;width:100%;max-width:100%;grid-template-columns:1fr}
  .menu-dropdown{width:100%}
  .menu a{font-size:15px}
  .btn{padding:9px 13px}
  .logo-wrap{gap:8px}
  .kpi,.categories,.products,.advantages,.footer-grid{grid-template-columns:1fr}
  .group-grid{grid-template-columns:1fr}
  .group-card img{height:170px}
  .group-content h3{font-size:18px}
  .catalog-hero{flex-direction:column;align-items:flex-start;padding:14px}
  .catalog-hero h1{font-size:28px}
  .catalog-hero-badge{padding:10px 14px;min-width:unset}
  .catalog-filters{grid-template-columns:1fr}
  .catalog-filter-actions{grid-column:auto;flex-wrap:wrap}
  .quote-cart-table input{width:72px}
  .catalog-actions{flex-direction:column;align-items:stretch}
  .quote-cart-actions{align-items:flex-start}
  .catalog-card p{min-height:0}
  .hero img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;object-position:center}
  .hero-nav{display:none}
  .hero-dots{bottom:8px}
  .hero-dots button{width:8px;height:8px}
  .section{padding:26px 0}
  .news form{flex-direction:column}
  .news input,.news .btn{width:100%}
  .section-title{font-size:30px}
  .light-title{font-size:26px}
  .arrivals-head h2{font-size:26px}
  .arrivals-head span{width:48px}
  .arrivals-nav{display:none}
  .arrivals-module .chips{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .arrivals-products{gap:10px}
  .arrivals-products .card{min-width:170px;flex-basis:170px}
  .arrivals-products .card{padding-right:8px}
  .arrivals-products .card img{height:130px}
  .arrivals-products .price{font-size:18px}
  .footer-copy{text-align:center;font-size:12px}
}

@media (max-width:480px){
  .nav{padding:6px 0}
  .hero img{aspect-ratio:4/3}
  .section-title{font-size:24px}
  .arrivals-head{gap:10px}
  .arrivals-head h2{font-size:22px}
  .arrivals-head span{width:34px}
  .chips a{font-size:12px;padding:8px 10px}
  .arrivals-module .chips{grid-template-columns:1fr}
  .arrivals-products .card{min-width:150px;flex-basis:150px}
  .arrivals-products h3{font-size:14px}
  .arrivals-products .price{font-size:16px}
  .adv{padding:16px}
  .footer-grid h4{font-size:16px}
}

@media print{
  header,.catalog-hero,.catalog-filters,.chips,.catalog-products,.catalog-hero-badge,.flash,.quote-cart-head .btn{display:none !important}
  body{background:#fff}
  .section{padding:0}
  .quote-cart{margin:0;border:0;box-shadow:none}
  body.print-cart-only .quote-form{display:none !important}
  body.print-cart-only .quote-cart-head{display:flex !important}
}
