*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0f0f0f;
  --dark:    #1a1a1a;
  --text:    #212121;
  --text2:   #555;
  --muted:   #999;
  --border:  #ebebeb;
  --border2: #d0d0d0;
  --bg:      #f7f7f7;
  --white:   #ffffff;
  --accent:  #e2001a;
  --accent2: #b8001a;
  --accent-light: #fff5f6;
  --blue:    #0055a4;
  --yellow:  #ffcd00;
  --green:   #1a7a3c;
  --r:       6px;
  --font:    'Outfit', sans-serif;
  --max:     1280px;
  --sh1:     0 1px 4px rgba(0,0,0,.07);
  --sh2:     0 4px 20px rgba(0,0,0,.09);
  --sh3:     0 10px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select { font-family: var(--font); }

/* ── TOPBAR ── */
.topbar { background: var(--dark); color: rgba(255,255,255,.55); font-size: 11.5px; height: 34px; display: flex; align-items: center; }
.topbar-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-pill { background: var(--accent); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 2px 8px; border-radius: 3px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,.5); font-size: 11.5px; transition: color .15s; }
.topbar-right a:hover { color: #fff; }
.topbar-sep { width: 1px; height: 10px; background: rgba(255,255,255,.15); }

/* ── HEADER ── */
header { background: var(--white); border-bottom: 3px solid var(--accent); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 20px; height: 66px; }
.logo-wrap { flex-shrink: 0; display: flex; flex-direction: column; }
.logo-name { font-size: 20px; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1; }
.logo-name span { color: var(--accent); }
.logo-sub { font-size: 9px; font-weight: 600; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 3px; }
.header-search { flex: 1; max-width: 500px; margin: 0 auto; display: flex; height: 40px; border: 2px solid var(--border2); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.header-search:focus-within { border-color: var(--accent); }
.header-search input { flex: 1; padding: 0 14px; font-size: 13.5px; border: none; outline: none; color: var(--text); background: var(--white); }
.header-search input::placeholder { color: var(--muted); }
.search-btn { width: 44px; background: var(--accent); border: none; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .18s; }
.search-btn:hover { background: var(--accent2); }
.search-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.3; }
.header-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-shrink: 0; }
.h-action-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 10px; border-radius: var(--r); color: var(--text2); font-size: 10px; font-weight: 600; letter-spacing: .02em; transition: background .15s; white-space: nowrap; }
.h-action-btn:hover { background: var(--bg); color: var(--text); }
.h-action-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.h-cart-btn { display: flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; padding: 0 16px; height: 38px; border-radius: var(--r); font-size: 13px; font-weight: 700; transition: background .18s; white-space: nowrap; }
.h-cart-btn:hover { background: var(--accent2); }
.h-cart-btn svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.8; }
.cart-qty { background: var(--yellow); color: var(--text); font-size: 10px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; }

/* ── NAVBAR ── */
.navbar { background: var(--white); border-bottom: 1px solid var(--border); }
.navbar-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
.navbar-inner::-webkit-scrollbar { display: none; }
.n-item { padding: 0 15px; height: 40px; display: flex; align-items: center; font-size: 13px; font-weight: 500; color: var(--text2); white-space: nowrap; cursor: pointer; flex-shrink: 0; border-bottom: 3px solid transparent; margin-bottom: -1px; transition: color .18s, border-color .18s; }
.n-item:first-child { padding-left: 0; }
.n-item:hover { color: var(--accent); }
.n-item.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 700; }

/* ── HERO ── */
.hero-wrap { background: var(--white); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 400px; align-items: stretch; min-height: 360px; }
.hero-content { padding: 44px 36px 44px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-tag { display: inline-block; background: var(--yellow); color: var(--text); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 16px; width: fit-content; }
.hero-content h1 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 900; line-height: 1.08; letter-spacing: -.04em; color: var(--text); margin-bottom: 12px; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 14.5px; color: var(--text2); line-height: 1.7; max-width: 380px; margin-bottom: 24px; }
.hero-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.hero-price .was { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.hero-price .now { font-size: 36px; font-weight: 900; color: var(--text); letter-spacing: -.03em; }
.hero-price .cur { font-size: 15px; color: var(--text2); font-weight: 600; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary { height: 44px; padding: 0 26px; background: var(--accent); color: #fff; border-radius: var(--r); font-size: 13.5px; font-weight: 700; letter-spacing: .02em; transition: background .18s, transform .12s; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-outline { height: 44px; padding: 0 22px; background: transparent; color: var(--text); border: 2px solid var(--border2); border-radius: var(--r); font-size: 13.5px; font-weight: 600; transition: border-color .18s; }
.btn-outline:hover { border-color: var(--text); }
.hero-dots { display: flex; gap: 6px; margin-top: 22px; }
.hdot { width: 7px; height: 7px; border-radius: 50%; background: var(--border2); border: none; cursor: pointer; transition: all .22s; }
.hdot.on { background: var(--accent); width: 20px; border-radius: 4px; }
.hero-img-col { background: var(--bg); border-left: 1px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 28px; }
.hero-img-col img { max-width: 100%; max-height: 260px; object-fit: contain; transition: transform .4s ease; }
.hero-img-col:hover img { transform: scale(1.04); }

/* ── PROMO STRIP ── */
.promo-strip { background: var(--accent); }
.promo-strip-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 48px; gap: 1.5rem; overflow: hidden; }
.promo-strip-item { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 12.5px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.promo-strip-item svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.8); fill: none; stroke-width: 2; }
.promo-strip-sep { width: 1px; height: 18px; background: rgba(255,255,255,.25); flex-shrink: 0; }

/* ── SECTIONS ── */
.section { max-width: var(--max); margin: 0 auto; padding: 36px 24px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.sec-title-group { display: flex; align-items: center; gap: 12px; }
.sec-title-bar { width: 4px; height: 22px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }
.sec-title { font-size: 19px; font-weight: 800; letter-spacing: -.03em; color: var(--text); }
.sec-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.see-all { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: .04em; border: 1.5px solid var(--accent); padding: 6px 14px; border-radius: var(--r); transition: all .18s; white-space: nowrap; text-transform: uppercase; }
.see-all:hover { background: var(--accent); color: #fff; }

/* ── CATEGORY CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: box-shadow .22s, border-color .22s, transform .22s; }
.cat-card:hover { box-shadow: var(--sh2); border-color: var(--accent); transform: translateY(-2px); }
.cat-img { height: 110px; overflow: hidden; background: var(--bg); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.cat-card:hover .cat-img img { transform: scale(1.05); }
.cat-body { padding: 10px 12px 12px; }
.cat-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.cat-sub { font-size: 11px; color: var(--muted); }
.cat-arrow { font-size: 11px; color: var(--accent); font-weight: 700; margin-top: 5px; display: block; }

/* ── FILTER ROW ── */
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.f-tag { height: 30px; padding: 0 14px; border: 1.5px solid var(--border2); border-radius: 99px; font-size: 12.5px; font-weight: 500; color: var(--text2); background: var(--white); cursor: pointer; transition: all .18s; }
.f-tag:hover { border-color: var(--accent); color: var(--accent); }
.f-tag.on { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(218px, 1fr)); gap: 10px; }

/* ── PRODUCT CARD ── */
.product-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: box-shadow .25s, border-color .25s, transform .25s; position: relative; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--sh3); border-color: var(--border2); transform: translateY(-3px); }
.product-badge { position: absolute; top: 10px; left: 10px; z-index: 3; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 3px 7px; border-radius: 3px; }
.badge-new  { background: var(--blue); color: #fff; }
.badge-sale { background: var(--accent); color: #fff; }
.badge-hot  { background: #e67e22; color: #fff; }
.wishlist-btn { position: absolute; top: 8px; right: 8px; z-index: 3; width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; box-shadow: var(--sh1); }
.wishlist-btn svg { width: 12px; height: 12px; stroke: var(--muted); fill: none; stroke-width: 2; }
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn:hover svg { stroke: var(--accent); }
.product-image-wrap { background: #fff; height: 196px; display: flex; align-items: center; justify-content: center; padding: 18px; border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s cubic-bezier(.25,.46,.45,.94); }
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-actions { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(15,15,15,.9); display: flex; transform: translateY(100%); transition: transform .22s; }
.product-card:hover .product-actions { transform: translateY(0); }
.product-action-btn { flex: 1; height: 36px; color: #fff; display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 11.5px; font-weight: 600; border-right: 1px solid rgba(255,255,255,.1); transition: background .15s; }
.product-action-btn:last-child { border-right: none; }
.product-action-btn:hover { background: var(--accent); }
.product-action-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.product-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 4px; }
.brand-Apple  { color: #555; }
.brand-HP     { color: #0f6cbf; }
.brand-Lenovo { color: #e2231a; }
.brand-Dell   { color: #007db8; }
.brand-Asus   { color: #00539b; }
.brand-Unite  { color: var(--green); }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 5px; }
.stars { display: flex; gap: 1px; }
.star { width: 10px; height: 10px; fill: #f59e0b; }
.star.empty { fill: var(--border2); }
.review-count { font-size: 11px; color: var(--muted); }
.product-name { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--text); margin-bottom: 8px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-specs { display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: 10px; }
.spec-tag { font-size: 10px; color: var(--muted); background: var(--bg); border: 1px solid var(--border); border-radius: 3px; padding: 2px 6px; font-weight: 500; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 10px; border-top: 1px solid var(--border); margin-top: auto; }
.price-old { font-size: 11px; color: var(--muted); text-decoration: line-through; display: block; line-height: 1.2; }
.price-new { font-size: 16px; font-weight: 900; color: var(--text); line-height: 1.2; }
.price-new .price-unit { font-size: 10.5px; font-weight: 500; color: var(--muted); }
.add-btn { height: 32px; padding: 0 12px; background: var(--accent); color: #fff; border-radius: var(--r); font-size: 11.5px; font-weight: 700; letter-spacing: .02em; transition: background .18s, transform .1s; white-space: nowrap; }
.add-btn:hover { background: var(--accent2); transform: scale(1.04); }
.add-btn.added { background: var(--green); }

/* ── BRAND STRIP ── */
.brand-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 24px; }
.brand-strip-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.brand-label { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 700; margin-right: 4px; white-space: nowrap; }
.brand-chip { height: 30px; padding: 0 13px; border: 1.5px solid var(--border); border-radius: 3px; font-size: 11.5px; font-weight: 700; color: var(--text2); background: var(--white); cursor: pointer; letter-spacing: .04em; text-transform: uppercase; transition: all .18s; }
.brand-chip:hover { border-color: var(--accent); color: var(--accent); }
.brand-chip.on { background: var(--text); color: #fff; border-color: var(--text); }

/* ── PROMO BANNERS ── */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.promo-card { border-radius: var(--r); overflow: hidden; display: flex; align-items: center; justify-content: space-between; padding: 28px; gap: 16px; cursor: pointer; transition: transform .22s, box-shadow .22s; min-height: 150px; }
.promo-card:hover { transform: translateY(-2px); box-shadow: var(--sh3); }
.promo-1 { background: linear-gradient(135deg, #0d2137, #0055a4); }
.promo-2 { background: linear-gradient(135deg, #0d0d0d, #1c1c1c); }
.promo-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 5px; line-height: 1.2; letter-spacing: -.02em; }
.promo-card p { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 14px; line-height: 1.5; max-width: 175px; }
.promo-discount { font-size: 30px; font-weight: 900; line-height: 1; margin-bottom: 14px; }
.promo-1 .promo-discount { color: var(--yellow); }
.promo-2 .promo-discount { color: #ff6b6b; }
.promo-btn { display: inline-block; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 3px; padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; transition: background .18s; }
.promo-btn:hover { background: rgba(255,255,255,.22); }
.promo-card img { height: 110px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 6px 18px rgba(0,0,0,.3)); transition: transform .3s; }
.promo-card:hover img { transform: scale(1.06) rotate(-1deg); }

/* ── CATALOG PAGE ── */
.page-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 22px 24px; }
.page-hero-in { max-width: var(--max); margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--muted); margin-bottom: 7px; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border2); }
.page-hero h1 { font-size: clamp(18px, 2.8vw, 26px); font-weight: 800; letter-spacing: -.03em; color: var(--text); margin-bottom: 3px; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { font-size: 13px; color: var(--muted); }
.catalog-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 18px; padding: 18px 24px 40px; }
.sidebar { }
.sidebar-section { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); margin-bottom: 8px; overflow: hidden; }
.sidebar-title { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text); padding: 9px 12px; border-bottom: 1px solid var(--border); background: var(--bg); }
.sidebar-options { padding: 4px 0; }
.sidebar-option { display: flex; align-items: center; gap: 8px; padding: 7px 12px; font-size: 12.5px; color: var(--text2); cursor: pointer; transition: background .12s; }
.sidebar-option:hover { background: var(--bg); }
.sidebar-option input[type=checkbox] { accent-color: var(--accent); width: 13px; height: 13px; flex-shrink: 0; }
.sidebar-count { margin-left: auto; font-size: 11px; color: var(--muted); }
.catalog-main { min-width: 0; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; flex-wrap: wrap; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.catalog-results { font-size: 13px; color: var(--muted); }
.catalog-results b { color: var(--text); font-weight: 700; }
.sort-select { height: 30px; padding: 0 10px; border: 1.5px solid var(--border); border-radius: var(--r); font-size: 12.5px; color: var(--text); background: var(--white); cursor: pointer; outline: none; }
.no-results { grid-column:1/-1; text-align:center; padding:48px; color:var(--muted); font-size:13px; }

/* ── CONTACT ── */
.contact-grid { max-width: 860px; margin: 28px auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 24px; }
.contact-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 22px; }
.contact-card h3 { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 16px; }
.contact-btn { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 16px; border-radius: var(--r); font-size: 13px; font-weight: 700; border: none; cursor: pointer; transition: all .18s; text-decoration: none; }
.contact-btn-wa { background: #25d366; color: #fff; }
.contact-btn-wa:hover { background: #1ebe5d; }
.contact-btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.contact-btn-outline:hover { border-color: var(--text); }
.contact-detail { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text2); margin-bottom: 7px; }
.contact-detail svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .25s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 380px; background: var(--white); z-index: 301; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); box-shadow: -4px 0 32px rgba(0,0,0,.14); }
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--border); }
.cart-drawer-title { font-size: 14px; font-weight: 800; }
.drawer-close { width: 28px; height: 28px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 13px; height: 13px; stroke: var(--text2); fill: none; stroke-width: 2; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 12px 18px; }
.cart-empty { text-align: center; padding: 44px 16px; color: var(--muted); }
.cart-empty svg { width: 40px; height: 40px; margin: 0 auto 10px; stroke: var(--border2); fill: none; stroke-width: 1.2; display: block; }
.cart-empty p { font-size: 13px; }
.cart-line { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cart-line:last-child { border-bottom: none; }
.cart-line-img { width: 62px; height: 52px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cart-line-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-line-info { flex: 1; }
.cart-line-name { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.cart-line-price { font-size: 12.5px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.cart-line-qty { display: flex; align-items: center; gap: 5px; }
.qty-btn { width: 22px; height: 22px; background: var(--bg); border: 1px solid var(--border); border-radius: 3px; font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; justify-content: center; transition: background .12s; }
.qty-btn:hover { background: var(--border); }
.cart-line-qty span { font-size: 12.5px; font-weight: 700; min-width: 16px; text-align: center; }
.cart-line-remove { background: none; border: none; padding: 3px; color: var(--muted); align-self: flex-start; }
.cart-line-remove svg { width: 12px; height: 12px; stroke: var(--muted); fill: none; stroke-width: 2; }
.cart-line-remove:hover svg { stroke: var(--accent); }
.cart-drawer-foot { padding: 12px 18px; border-top: 1px solid var(--border); background: var(--bg); }
.cart-drawer-totals { margin-bottom: 12px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text2); margin-bottom: 5px; }
.cart-total-final { font-size: 15px; font-weight: 800; color: var(--text); padding-top: 7px; border-top: 1px solid var(--border); margin-top: 5px; }
.cart-total-final span:last-child { color: var(--accent); }
.free-label { color: var(--green); font-weight: 700; font-size: 12px; }
.checkout-wa { width: 100%; height: 44px; background: #25d366; color: #fff; border: none; border-radius: var(--r); font-size: 13.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 7px; transition: background .18s; margin-bottom: 7px; }
.checkout-wa:hover { background: #1ebe5d; }
.cart-secure-note { text-align: center; font-size: 11px; color: var(--muted); }

/* ── TRUST CAROUSEL ── */
.trust-carousel-wrap { background: var(--dark); overflow: hidden; position: relative; border-top: 1px solid rgba(255,255,255,.05); }
.trust-carousel-wrap::before, .trust-carousel-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none; }
.trust-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.trust-carousel-wrap::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.trust-track { display: flex; width: max-content; animation: trustScroll 30s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
@keyframes trustScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-card { display: flex; align-items: center; gap: 11px; padding: 14px 32px; border-right: 1px solid rgba(255,255,255,.05); white-space: nowrap; flex-shrink: 0; }
.trust-card-icon { width: 32px; height: 32px; background: rgba(255,255,255,.06); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-card-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.7; }
.trust-card-text strong { display: block; font-size: 11.5px; font-weight: 700; color: #fff; margin-bottom: 1px; }
.trust-card-text span { font-size: 10.5px; color: rgba(255,255,255,.38); }

/* ── FOOTER ── */
footer { background: var(--dark); }
.footer-top { max-width: var(--max); margin: 0 auto; padding: 40px 24px 26px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-logo { margin-bottom: 10px; }
.footer-logo-name { font-size: 17px; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.footer-logo-name span { color: var(--accent); }
.footer-logo-sub { font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.28); margin-top: 2px; font-weight: 600; }
.footer-brand-text { font-size: 12px; color: rgba(255,255,255,.36); line-height: 1.75; max-width: 225px; margin-bottom: 14px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 12px; color: rgba(255,255,255,.48); transition: color .15s; display: flex; align-items: center; gap: 5px; }
.footer-contact a:hover { color: #fff; }
.footer-col-title { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.28); font-weight: 700; margin-bottom: 12px; }
.footer-col-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col-list li, .footer-col-list li a { font-size: 12px; color: rgba(255,255,255,.48); cursor: pointer; transition: color .15s; }
.footer-col-list li:hover, .footer-col-list li a:hover { color: #fff; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 13px 24px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.24); }
.footer-badges { display: flex; gap: 5px; }
.footer-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 3px; padding: 3px 8px; font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.38); letter-spacing: .06em; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--text); color: #fff; border-radius: var(--r); padding: 9px 18px; font-size: 12.5px; font-weight: 600; z-index: 400; transition: transform .3s; pointer-events: none; box-shadow: var(--sh3); white-space: nowrap; display: flex; align-items: center; gap: 7px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } .promo-grid { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr 1fr; gap: 22px; } .catalog-wrap { grid-template-columns: 1fr; } .sidebar { display: flex; gap: 8px; flex-wrap: wrap; } .sidebar-section { flex: 1; min-width: 155px; margin-bottom: 0; } .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .topbar-left span:not(:first-child) { display: none; } .topbar-right { display: none; } .header-search { display: none; } .hero-inner { grid-template-columns: 1fr; min-height: auto; } .hero-content { padding: 30px 0 22px; text-align: center; } .hero-btns { justify-content: center; } .hero-dots { justify-content: center; } .hero-img-col { display: none; } .product-grid { grid-template-columns: repeat(2, 1fr); } .footer-top { grid-template-columns: 1fr; gap: 18px; } .promo-card img { display: none; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 7px; } .cart-drawer { width: 100%; } .cat-grid { grid-template-columns: 1fr 1fr; } .section { padding: 22px 14px; } .catalog-wrap { padding: 12px 14px 28px; } .contact-grid { padding: 0 14px; } .promo-strip-item:nth-child(n+4) { display: none; } }
