/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #1a1a2e; background: #f5f5f5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

:root {
  --orange: #ff952b;
  --orange-dark: #e07a10;
  --navy: #1a1a2e;
  --gray-bg: #f5f5f5;
  --gray-mid: #e8e8e8;
  --gray-txt: #666;
  --white: #fff;
  --border: #ddd;
  --red: #e53e3e;
  --green: #38a169;
}

/* ── Top bar ── */
.top-bar { background: var(--navy); color: #fff; font-size: 12.5px; padding: 7px 0; overflow: hidden; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.top-bar-marquee { flex: 1; overflow: hidden; }
.top-bar-marquee span { display: inline-block; animation: marquee 30s linear infinite; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(60vw); } 100% { transform: translateX(-100%); } }
.top-bar-contacts { display: flex; gap: 20px; flex-shrink: 0; margin-left: 20px; }
.top-bar-contacts a { color: #ccc; font-size: 12px; }
.top-bar-contacts a:hover { color: var(--orange); }

/* ── Header ── */
.header { background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 200; }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 5px 20px; display: flex; align-items: center; justify-content: flex-end; gap: 16px; min-height: 38px; border-bottom: 1px solid #f0f0f0; background: #fafafa; }
.logo-band { background: #fff; }
.logo-band-inner { max-width: 1280px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; gap: 20px; }
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-icon { width: 160px; height: 90px; background: transparent; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-weight: 900; font-size: 22px; flex-shrink: 0; overflow: hidden; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.logo-name { font-size: 22px; font-weight: 900; color: var(--navy); line-height: 1.1; }
.logo-sub { font-size: 10px; color: var(--gray-txt); text-transform: uppercase; letter-spacing: 1px; }
.search-bar { flex: 1; display: flex; border: 2px solid var(--orange); border-radius: 8px; overflow: hidden; max-width: 560px; }
.search-bar input { flex: 1; border: none; outline: none; padding: 10px 16px; font-size: 14px; }
.search-bar button { background: var(--orange); border: none; padding: 0 18px; color: #fff; font-size: 16px; transition: background .2s; }
.search-bar button:hover { background: var(--orange-dark); }
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone a { font-size: 15px; font-weight: 700; color: var(--navy); }
.header-phone span { display: block; font-size: 11px; color: var(--gray-txt); }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.cart-btn { position: relative; background: none; border: 2px solid var(--orange); border-radius: 8px; padding: 8px 14px; display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--navy); transition: all .2s; }
.cart-btn:hover { background: var(--orange); color: #fff; }
.cart-count { background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 1px 6px; border-radius: 10px; min-width: 20px; text-align: center; }

/* ── Nav ── */
.header-nav { background: var(--orange); }
.header-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; }
.nav-cat-btn { background: var(--navy); color: #fff; border: none; padding: 12px 20px; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: background .2s; }
.nav-cat-btn:hover { background: #0d0d1f; }
.nav-links { display: flex; }
.nav-links a { color: #fff; padding: 12px 16px; font-size: 14px; font-weight: 600; display: block; transition: background .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(0,0,0,0.18); }
.nav-promo { background: var(--red) !important; }
.nav-promo:hover { background: #c53030 !important; }

/* ── Trust bar ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 13px 10px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 13px; font-weight: 700; }
.trust-text span { font-size: 11px; color: var(--gray-txt); }

/* ── Layout ── */
.main-wrapper { max-width: 1280px; margin: 0 auto; padding: 20px; display: grid; grid-template-columns: 240px 1fr; gap: 20px; }
.main-wrapper > main { min-width: 0; }

/* ── Sidebar ── */
.sidebar-box { background: var(--white); border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); overflow: hidden; margin-bottom: 16px; }
.sidebar-title { background: var(--navy); color: #fff; padding: 11px 16px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.cat-list { list-style: none; }
.cat-item > a { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-bottom: 1px solid #f0f0f0; font-size: 13.5px; color: var(--navy); font-weight: 500; transition: all .15s; }
.cat-item > a:hover, .cat-item > a.active { background: #fff8f0; color: var(--orange); padding-left: 22px; }
.cat-item > a .arrow { color: #ccc; font-size: 11px; }
.contact-box { padding: 14px 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.contact-icon { font-size: 16px; flex-shrink: 0; }
.contact-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.contact-info span { font-size: 12px; color: var(--gray-txt); line-height: 1.5; }

/* ── Full-width Hero Banner ── */
.hero-banner { position: relative; background: linear-gradient(135deg, #1a1a2e 0%, #2d2d50 100%); overflow: hidden; user-select: none; }
.hero-slides { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-slide-inner { max-width: 1280px; margin: 0 auto; padding: 54px 48px; display: flex; align-items: center; gap: 40px; min-height: 380px; }
.hero-text { flex: 1; }
.hero-tag { background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; display: inline-block; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.hero-text h1 { font-size: 38px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.hero-accent { color: var(--orange); }
.hero-text p { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 28px; max-width: 440px; line-height: 1.65; }
.hero-cta { background: var(--orange); color: #fff; padding: 13px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; display: inline-block; transition: background .2s; }
.hero-cta:hover { background: var(--orange-dark); }
.hero-img-wrap { flex-shrink: 0; width: 340px; height: 280px; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)); }
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; z-index: 10; }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-prev:hover, .hero-next:hover { background: var(--orange); }
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: background .2s; padding: 0; }
.hero-dot.active { background: var(--orange); }
@media (max-width: 768px) {
  .hero-slide-inner { flex-direction: column; padding: 32px 20px 48px; min-height: auto; gap: 24px; }
  .hero-text h1 { font-size: 26px; }
  .hero-img-wrap { width: 100%; height: 180px; }
}

/* ── Section header ── */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.section-title { font-size: 18px; font-weight: 800; color: var(--navy); }
.section-title::after { content: ''; display: block; width: 40px; height: 3px; background: var(--orange); border-radius: 2px; margin-top: 4px; }
.section-link { font-size: 13px; color: var(--orange); font-weight: 600; }
.section-link:hover { text-decoration: underline; }

/* ── Category cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 22px; }
.cat-card { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 18px 14px; text-align: center; transition: all .2s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cat-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(255,149,43,.15); transform: translateY(-2px); }
.cat-card-icon { font-size: 32px; }
.cat-card-img { width: 100%; height: 90px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 6px; background: #f8f8f8; margin-bottom: 4px; }
.cat-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cat-card-name { font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.cat-thumb { width: 34px; height: 34px; object-fit: contain; border-radius: 5px; background: #f5f5f5; padding: 2px; flex-shrink: 0; margin-right: 8px; }
.cat-thumb-all { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; font-size: 16px; border-radius: 5px; background: #f5f5f5; margin-right: 8px; flex-shrink: 0; }

/* ── Products ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.product-card { background: var(--white); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; position: relative; transition: all .2s; }
.product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.product-badge { position: absolute; top: 10px; left: 10px; z-index: 1; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 5px; }
.delivery-badge { position: absolute; top: 10px; right: 10px; z-index: 1; background: #16a34a; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 5px; white-space: nowrap; }
.product-unit-note { font-size: 10.5px; color: #9ca3af; margin: 2px 0 4px; }
.img-modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,.75); z-index:9999; align-items:center; justify-content:center; }
.img-modal.show { display:flex; }
.img-modal-box { background:#fff; border-radius:12px; padding:16px; max-width:90vw; max-height:90vh; position:relative; display:flex; flex-direction:column; align-items:center; gap:12px; }
.img-modal-box img { max-width:80vw; max-height:75vh; object-fit:contain; border-radius:8px; }
.img-modal-box div { font-size:13px; font-weight:700; color:#1a1a2e; text-align:center; }
.img-modal-close { position:absolute; top:10px; right:12px; background:none; border:none; font-size:20px; cursor:pointer; color:#666; line-height:1; }
.product-img { width: 100%; height: 160px; background: #f8f8f8; display: flex; align-items: center; justify-content: center; font-size: 52px; border-bottom: 1px solid #f0f0f0; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.product-body { padding: 12px 14px; }
.product-brand { font-size: 10px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-name { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 6px; min-height: 36px; }
.product-code { font-size: 11px; color: #bbb; margin-bottom: 8px; }
.product-price { display: flex; align-items: flex-end; gap: 7px; margin-bottom: 10px; }
.price-new { font-size: 20px; font-weight: 900; color: var(--orange); }
.price-old { font-size: 13px; color: #bbb; text-decoration: line-through; }
.price-lv { font-size: 11px; color: #999; }
.btn-buy { width: 100%; background: var(--orange); color: #fff; border: none; padding: 9px; font-size: 13px; font-weight: 700; border-radius: 7px; transition: background .2s; }
.btn-buy:hover { background: var(--orange-dark); }
.btn-buy.in-cart { background: var(--green); }

/* ── Promo banners ── */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.promo-card { border-radius: 10px; overflow: hidden; position: relative; min-height: 130px; display: flex; align-items: center; padding: 22px; background: linear-gradient(135deg, var(--navy), #2d3561); transition: transform .2s; }
.promo-card:hover { transform: scale(1.01); }
.promo-card.green { background: linear-gradient(135deg, #1a5c3a, #2d8c5a); }
.promo-deco { position: absolute; right: 16px; font-size: 60px; opacity: .15; }
.promo-label { font-size: 10px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.promo-title { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 5px; }
.promo-sub { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.promo-btn { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.35); padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 700; display: inline-block; transition: background .2s; }
.promo-btn:hover { background: rgba(255,255,255,.32); }

/* ── Partners ── */
.partners-bar { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 20px; margin-bottom: 22px; }
.partners-title { font-size: 12px; color: var(--gray-txt); text-align: center; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.partners-list { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.partners-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.partners-logos img { height: 44px; width: auto; object-fit: contain; filter: grayscale(60%); opacity: .75; transition: all .2s; }
.partners-logos img:hover { filter: grayscale(0%); opacity: 1; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr !important; } .about-grid > div:last-child { display: none; } }
.partner-chip { background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 8px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: #555; transition: all .2s; }
.partner-chip:hover { border-color: var(--orange); color: var(--orange); }

/* ── Footer ── */
footer { background: var(--navy); color: #fff; margin-top: 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 36px 20px 20px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 12px; }
.footer-logo-icon { background: transparent !important; width: auto !important; height: auto !important; min-width: 0 !important; padding: 0 !important; border-radius: 0 !important; }
.footer-logo-img { height: 60px; width: auto; object-fit: contain; display: block; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 8px; margin-bottom: 8px; }
.footer-contact-item .fi { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 14px 20px; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.3); }
.footer-cert { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: 4px 12px; font-size: 12px; color: rgba(255,255,255,.45); }

/* ── Email popup ── */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1000; align-items: center; justify-content: center; }
.popup-overlay.show { display: flex; }
.popup-box { background: var(--white); border-radius: 14px; overflow: hidden; max-width: 460px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.popup-banner { background: linear-gradient(135deg, var(--navy), #2d2d50); padding: 28px 28px 22px; text-align: center; position: relative; }
.popup-banner .emoji { font-size: 40px; margin-bottom: 10px; }
.popup-banner h2 { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.popup-banner p { font-size: 13px; color: rgba(255,255,255,.65); }
.popup-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: rgba(255,255,255,.5); font-size: 22px; cursor: pointer; }
.popup-close:hover { color: #fff; }
.popup-body { padding: 22px 28px; }
.popup-form { display: flex; gap: 8px; }
.popup-form input { flex: 1; border: 2px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; outline: none; transition: border-color .2s; }
.popup-form input:focus { border-color: var(--orange); }
.popup-form button { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 700; white-space: nowrap; transition: background .2s; }
.popup-form button:hover { background: var(--orange-dark); }
.popup-skip { text-align: center; margin-top: 12px; }
.popup-skip a { font-size: 12px; color: var(--gray-txt); cursor: pointer; }
.popup-skip a:hover { color: var(--navy); }

/* ── Toast notification ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; z-index: 9999; transform: translateY(80px); opacity: 0; transition: all .3s; box-shadow: 0 6px 20px rgba(0,0,0,.2); max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--green); }
.toast.error { border-left: 4px solid var(--red); }

/* ── Page header (cart/checkout/track) ── */
.page-header { background: linear-gradient(135deg, var(--navy), #2d2d50); padding: 30px 20px; text-align: center; }
.page-header h1 { font-size: 26px; font-weight: 900; color: #fff; }
.page-header p { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 6px; }

/* ── Loading spinner ── */
.loading { text-align: center; padding: 40px; color: var(--gray-txt); font-size: 14px; }
.spinner { display: inline-block; width: 28px; height: 28px; border: 3px solid #eee; border-top-color: var(--orange); border-radius: 50%; animation: spin .7s linear infinite; margin-bottom: 10px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .main-wrapper { grid-template-columns: 200px 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .main-wrapper { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .hero { padding: 24px 20px; min-height: 180px; }
  .hero h1 { font-size: 22px; }
  .hero-deco { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .header-inner { gap: 10px; }
  .search-bar { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .top-bar-contacts { display: none; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── Fade-in animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Partners slider ── */
.partners-slider-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 4px 0;
}
.partners-slider-wrap::before,
.partners-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.partners-slider-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.partners-slider-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.partners-slider {
  display: flex;
  gap: 32px;
  align-items: center;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}
.partners-slider:hover { animation-play-state: paused; }
.partners-slider img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(60%);
  opacity: .75;
  transition: all .2s;
  flex-shrink: 0;
}
.partners-slider img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Mobile nav ── */
.mobile-cats-btn {
  display: none;
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.mobile-cats-panel {
  display: none;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  padding: 10px 20px;
}
.mobile-cats-panel.open { display: block; }
.mobile-cats-panel a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid #f0f0f0;
}
.mobile-cats-panel a:last-child { border-bottom: none; }

/* ── Nav spacing (thumbnail gap) ── */
.header-nav { border-bottom: 3px solid var(--orange); }
.trust-bar { margin-top: 0; }

/* ── Unit note on product cards ── */
.product-unit-note {
  font-size: 10px;
  color: var(--gray-txt);
  background: #f5f5f5;
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
  margin-bottom: 6px;
}

/* ── Mobile improvements ── */
@media (max-width: 768px) {
  .mobile-cats-btn { display: block; }
  .header-nav .nav-cat-btn { display: none; }
  .nav-links { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { white-space: nowrap; padding: 12px 12px; font-size: 13px; }
  .main-wrapper { padding: 12px; gap: 12px; }
  .hero { padding: 20px 16px; }
  .cat-grid { gap: 8px; }
  .cat-card { padding: 12px 8px; }
  .cat-card-icon { font-size: 26px; }
  .cat-card-name { font-size: 11px; }
  .footer-inner { padding: 24px 16px 16px; }
  .logo-band-inner { padding: 10px 14px; gap: 12px; }
  .logo-icon { width: 80px; height: 56px; }
  .search-bar { max-width: 100%; }
}
@media (max-width: 480px) {
  .header-inner { padding: 5px 14px; }
  .header-phone { display: none !important; }
  .logo-band-inner { flex-wrap: wrap; }
  .search-bar { order: 3; width: 100%; max-width: 100%; }
  .logo { flex: 1; }
  .cart-btn { padding: 6px 10px; font-size: 13px; }
  .logo-icon { width: 72px; height: 50px; font-size: 18px; }
  .logo-name { font-size: 18px; }
}
