/* ============================================
   INVENTARO SHOP v3
   Dark/Light theme · Orange #FF6B00
   Mobile-first · Accessible · Premium feel
   ============================================ */

:root {
  --orange:       #FF6B00;
  --orange-h:     #FF8533;
  --orange-glow:  rgba(255,107,0,0.25);
  --orange-soft:  rgba(255,107,0,0.1);

  /* Dark theme (default) */
  --bg:      #0A0A0A;
  --bg-2:    #141414;
  --bg-3:    #1E1E1E;
  --bg-4:    #282828;
  --border:  rgba(255,255,255,0.07);
  --border-h:rgba(255,107,0,0.35);
  --t1:      #F2F2F2;
  --t2:      #ABABAB;
  --t3:      #666666;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-glow: 0 8px 32px rgba(255,107,0,0.28);

  --r:   8px;
  --r-md:14px;
  --r-lg:22px;

  --ease: cubic-bezier(0.4,0,0.2,1);
  --tf: 0.15s var(--ease);
  --tb: 0.25s var(--ease);
  --ts: 0.4s var(--ease);

  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;

  --hh: 68px;
  --ah: 36px;
}

[data-theme="light"] {
  --bg:      #F4F4F4;
  --bg-2:    #FFFFFF;
  --bg-3:    #EBEBEB;
  --bg-4:    #E0E0E0;
  --border:  rgba(0,0,0,0.09);
  --border-h:rgba(255,107,0,0.4);
  --t1:      #111111;
  --t2:      #555555;
  --t3:      #999999;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 8px 32px rgba(255,107,0,0.18);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--tb), color var(--tb);
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; height:auto; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }

/* ─── CONTAINER ─── */
.container { max-width:1320px; margin:0 auto; padding:0 18px; }
@media(min-width:600px){ .container { padding:0 28px; } }
@media(min-width:1100px){ .container { padding:0 48px; } }

/* ─── ANNOUNCE BAR ─── */
.announce {
  background: var(--orange);
  color:#fff;
  height: var(--ah);
  overflow:hidden;
  position:relative;
}
.announce-track {
  display:flex;
  white-space:nowrap;
  animation: marquee 30s linear infinite;
  height:100%;
  align-items:center;
  font-family: var(--fd);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  gap:64px;
}
.announce-item { flex-shrink:0; display:flex; align-items:center; gap:10px; }
.announce-item::before { content:'◆'; font-size:.55rem; opacity:.7; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media(prefers-reduced-motion:reduce){ .announce-track { animation:none; justify-content:center; } }

/* ─── HEADER ─── */
.header {
  position:sticky;
  top:0;
  z-index:900;
  height: var(--hh);
  background: rgba(10,10,10,0.93);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border-bottom:1px solid var(--border);
  transition: background var(--tb), box-shadow var(--tb);
}
[data-theme="light"] .header { background:rgba(255,255,255,0.95); }
.header.scrolled { box-shadow:0 4px 28px rgba(0,0,0,0.3); }
[data-theme="light"] .header.scrolled { box-shadow:0 4px 28px rgba(0,0,0,0.08); }

.header-inner { height:100%; display:flex; align-items:center; gap:20px; }

.logo { display:flex; align-items:center; flex-shrink:0; }
.logo-img { height:38px; width:auto; }
@media(min-width:600px){ .logo-img { height:44px; } }

/* NAV */
.nav-main { display:none; align-items:center; gap:2px; flex:1; }
@media(min-width:960px){ .nav-main { display:flex; } }

.nav-link {
  padding:0 13px;
  height:44px;
  font-family: var(--fd);
  font-size:1.05rem;
  font-weight:600;
  letter-spacing:.3px;
  color: var(--t2);
  border-radius: var(--r);
  transition: color var(--tf), background var(--tf);
  white-space:nowrap;
  display:flex; align-items:center; gap:5px;
}
.nav-link:hover, .nav-link.active { color:var(--orange); background:var(--orange-soft); }

/* Dropdown */
.nav-drop { position:relative; }
.drop-menu {
  visibility:hidden; opacity:0; pointer-events:none;
  position:absolute; top:calc(100% + 8px); left:0;
  min-width:230px;
  background: var(--bg-2);
  border:1px solid var(--border);
  border-radius: var(--r-md);
  padding:8px;
  box-shadow: var(--shadow-md);
  z-index:800;
  transform:translateY(-6px);
  transition: opacity var(--tf), transform var(--tf), visibility var(--tf);
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu {
  visibility:visible; opacity:1; pointer-events:auto; transform:translateY(0);
}
.drop-menu a {
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: var(--r);
  font-size:.93rem;
  color: var(--t2);
  min-height:44px;
  transition: background var(--tf), color var(--tf);
}
.drop-menu a:hover { background:var(--orange-soft); color:var(--orange); }

/* Header actions */
.header-actions { display:flex; align-items:center; gap:6px; margin-left:auto; }

.icon-btn {
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  background: var(--bg-3);
  border:1px solid var(--border);
  border-radius: var(--r);
  color: var(--t2);
  transition: background var(--tf), color var(--tf), border-color var(--tf);
}
.icon-btn:hover { background:var(--orange-soft); color:var(--orange); border-color:var(--border-h); }

/* Theme toggle icons */
.icon-sun { display:none; }
.icon-moon { display:block; }
[data-theme="light"] .icon-sun { display:block; }
[data-theme="light"] .icon-moon { display:none; }

/* Cart btn */
.cart-btn {
  display:flex; align-items:center; gap:8px;
  padding:0 14px; height:44px;
  background: var(--bg-3);
  border:1px solid var(--border);
  border-radius: var(--r);
  color: var(--t1);
  font-family: var(--fd);
  font-size:1rem;
  font-weight:700;
  transition: background var(--tf), border-color var(--tf), color var(--tf);
}
.cart-btn:hover { background:var(--orange-soft); border-color:var(--border-h); color:var(--orange); }
.cart-badge {
  background:var(--orange); color:#fff;
  font-size:.65rem; font-weight:800;
  width:18px; height:18px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* Hamburger */
.hamburger {
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px;
  background: var(--bg-3);
  border:1px solid var(--border);
  border-radius: var(--r);
  padding:0 11px;
}
@media(min-width:960px){ .hamburger { display:none; } }
.hamburger span {
  display:block; width:100%; height:2px;
  background: var(--t1);
  border-radius:2px;
  transition: transform var(--tb), opacity var(--tf);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display:none;
  position:fixed;
  top:calc(var(--ah) + var(--hh));
  left:0; right:0; bottom:0;
  background: var(--bg-2);
  z-index:890;
  overflow-y:auto;
  padding:8px 18px 40px;
  border-top:1px solid var(--border);
}
.mobile-nav.open { display:block; }
.mobile-nav .nav-link {
  width:100%; height:auto; padding:16px 4px;
  font-size:1.15rem;
  border-radius:0;
  border-bottom:1px solid var(--border);
  color: var(--t1);
}
.mobile-nav .drop-menu {
  visibility:visible; opacity:1; pointer-events:auto;
  position:static; transform:none; box-shadow:none;
  border:none; border-radius:0; background:transparent;
  padding:0 0 0 18px;
}
.mobile-nav .drop-menu a {
  font-size:.93rem; padding:12px 6px;
  border-bottom:1px solid var(--border); border-radius:0;
  min-height:48px;
}

/* Search bar */
.search-bar {
  display:none;
  position:absolute; top:100%; left:0; right:0;
  background: var(--bg-2);
  border-bottom:1px solid var(--border);
  padding:12px 0;
  z-index:850;
  box-shadow: var(--shadow-md);
}
.search-bar.open { display:block; }
.search-bar .container { display:flex; gap:10px; }
.search-input {
  flex:1; height:46px;
  background: var(--bg-3);
  border:1px solid var(--border);
  border-radius: var(--r);
  padding:0 16px;
  color: var(--t1);
  font-size:1rem;
  outline:none;
  transition: border-color var(--tf);
}
.search-input:focus { border-color:var(--orange); }
.search-input::placeholder { color: var(--t3); }

/* ─── BUTTONS ─── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:48px; padding:0 26px;
  font-family: var(--fd);
  font-size:1.05rem; font-weight:700; letter-spacing:.3px;
  border-radius: var(--r);
  transition: background var(--tf), border-color var(--tf), color var(--tf), transform var(--tf), box-shadow var(--tf);
  white-space:nowrap;
  border:2px solid transparent;
  text-decoration:none;
  cursor:pointer;
}
.btn:active { transform:scale(.97); }

.btn-primary { background:var(--orange); color:#fff; border-color:var(--orange); }
.btn-primary:hover { background:var(--orange-h); border-color:var(--orange-h); box-shadow:var(--shadow-glow); transform:translateY(-2px); }

.btn-ghost { background:transparent; color:var(--t1); border-color:var(--border); }
.btn-ghost:hover { border-color:var(--orange); color:var(--orange); background:var(--orange-soft); }

.btn-orange-soft { background:var(--orange-soft); color:var(--orange); border-color:rgba(255,107,0,.2); }
.btn-orange-soft:hover { background:var(--orange); color:#fff; border-color:var(--orange); box-shadow:var(--shadow-glow); }

.btn-sm { height:38px; padding:0 18px; font-size:.9rem; }
.btn-lg { height:56px; padding:0 36px; font-size:1.15rem; }
.btn-block { width:100%; }

/* ─── HERO ─── */
.hero {
  position:relative;
  min-height: clamp(520px, 88vh, 920px);
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center 40%;
  transition:transform 10s ease;
}
.hero:hover .hero-bg { transform:scale(1.03); }
.hero-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.65) 55%, rgba(5,5,5,.15) 100%),
    linear-gradient(0deg, rgba(5,5,5,.7) 0%, rgba(5,5,5,0) 50%);
}
.hero-content {
  position:relative; z-index:1;
  max-width:660px;
  padding:48px 0;
  animation: hero-in .9s var(--ease) both;
}
@keyframes hero-in {
  from{ opacity:0; transform:translateY(24px); }
  to  { opacity:1; transform:translateY(0); }
}

.hero-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--orange-soft);
  border:1px solid rgba(255,107,0,.3);
  color:#FF9A50;
  padding:6px 14px; border-radius:100px;
  font-size:.78rem; font-weight:700;
  letter-spacing:.8px; text-transform:uppercase;
  margin-bottom:22px;
}
.hero-pill::before { content:''; width:6px; height:6px; background:var(--orange); border-radius:50%; }

.hero-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight:900; line-height:.9;
  letter-spacing:-1.5px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:20px;
}
.hero-title .accent { color:var(--orange); }

.hero-desc {
  font-size: clamp(.98rem, 2vw, 1.12rem);
  color:rgba(255,255,255,.7);
  line-height:1.75;
  margin-bottom:34px;
  max-width:500px;
}

.hero-cta { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:48px; }

.hero-stats {
  display:flex; flex-wrap:wrap; gap:24px 40px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.1);
}
.stat-num {
  display:block;
  font-family: var(--fd);
  font-size:2.1rem; font-weight:900;
  color:var(--orange); line-height:1;
}
.stat-label {
  display:block;
  font-size:.78rem;
  color:rgba(255,255,255,.5);
  text-transform:uppercase; letter-spacing:.5px;
  margin-top:4px;
}

/* ─── SECTIONS ─── */
.section { padding: clamp(48px,8vw,96px) 0; }
.section-alt { background: var(--bg-2); }

.section-header {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  margin-bottom: clamp(24px,4vw,44px);
}
.section-eyebrow {
  font-family: var(--fd);
  font-size:.75rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  color:var(--orange);
  margin-bottom:8px;
  display:flex; align-items:center; gap:8px;
}
.section-eyebrow::before { content:''; width:18px; height:2px; background:var(--orange); }
.section-title {
  font-family: var(--fd);
  font-size: clamp(1.9rem,4vw,2.9rem);
  font-weight:900; text-transform:uppercase;
  letter-spacing:-.5px; color: var(--t1); line-height:1;
}
.link-all {
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--fd); font-size:.95rem; font-weight:700;
  color:var(--orange); white-space:nowrap;
  border-bottom:1px solid rgba(255,107,0,.3);
  padding-bottom:2px;
  transition: gap var(--tf), border-color var(--tf);
}
.link-all:hover { gap:10px; border-color:var(--orange); }

/* ─── CATEGORIES ─── */
.cats-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
@media(min-width:480px){ .cats-grid { grid-template-columns:repeat(3,1fr); } }
@media(min-width:960px){ .cats-grid { grid-template-columns:repeat(6,1fr); gap:16px; } }

.cat-card {
  background: var(--bg-2);
  border:1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(16px,3vw,28px) 14px;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px;
  position:relative; overflow:hidden;
  transition: border-color var(--tb), transform var(--tb), box-shadow var(--tb);
}
.cat-card::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,var(--orange-soft),transparent);
  opacity:0; transition:opacity var(--tb);
}
.cat-card:hover { border-color:var(--border-h); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.cat-card:hover::after { opacity:1; }
.cat-card--hero { background:linear-gradient(135deg,rgba(255,107,0,.08),rgba(255,107,0,.02)); border-color:rgba(255,107,0,.2); }

.cat-pill {
  position:absolute; top:10px; right:10px; z-index:1;
  background:var(--orange); color:#fff;
  font-family: var(--fd); font-size:.62rem; font-weight:800;
  letter-spacing:1px; text-transform:uppercase;
  padding:3px 8px; border-radius:100px;
}
.cat-emoji { font-size: clamp(1.9rem,4vw,2.6rem); line-height:1; position:relative; z-index:1; }
.cat-name {
  font-family: var(--fd);
  font-size: clamp(.88rem,2vw,1.1rem);
  font-weight:800; text-transform:uppercase; letter-spacing:.3px;
  color: var(--t1); line-height:1.2; position:relative; z-index:1;
}
.cat-sub { font-size:.75rem; color: var(--t3); position:relative; z-index:1; }

/* ─── PRODUCTS ─── */
.products-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
@media(min-width:480px){ .products-grid { gap:14px; } }
@media(min-width:680px){ .products-grid { grid-template-columns:repeat(3,1fr); } }
@media(min-width:960px){ .products-grid { grid-template-columns:repeat(4,1fr); gap:18px; } }
@media(min-width:1200px){ .products-grid { grid-template-columns:repeat(5,1fr); } }

.product-card {
  background: var(--bg-2);
  border:1px solid var(--border);
  border-radius: var(--r-lg);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition: border-color var(--tb), transform var(--tb), box-shadow var(--tb);
}
.product-card:hover { border-color:var(--border-h); transform:translateY(-4px); box-shadow:var(--shadow-md); }

.product-thumb {
  aspect-ratio:1/1;
  background: var(--bg-3);
  display:flex; align-items:center; justify-content:center;
  font-size: clamp(2.4rem,6vw,3.8rem);
  position:relative; overflow:hidden;
}
.product-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s var(--ease); }
.product-card:hover .product-thumb img { transform:scale(1.06); }

.product-tag {
  position:absolute; top:10px; left:10px;
  font-family: var(--fd); font-size:.68rem; font-weight:800;
  text-transform:uppercase; letter-spacing:.5px;
  padding:4px 9px; border-radius:6px; line-height:1;
}
.product-tag--new  { background:var(--orange); color:#fff; }
.product-tag--sale { background:#E53E3E; color:#fff; }
.product-tag--hot  { background:linear-gradient(135deg,#FF6B00,#FF3D00); color:#fff; }

.product-wish {
  position:absolute; top:8px; right:8px;
  width:32px; height:32px;
  background: var(--bg-2); border:1px solid var(--border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  opacity:0; font-size:.85rem;
  transition: opacity var(--tf), background var(--tf);
}
.product-card:hover .product-wish { opacity:1; }
.product-wish:hover { background:var(--orange-soft); border-color:var(--border-h); }

.product-body { padding:12px 12px 0; flex:1; display:flex; flex-direction:column; gap:5px; }
.product-cat-lbl {
  font-size:.7rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.5px;
  color:var(--orange);
}
.product-title {
  font-family: var(--fd);
  font-size: clamp(.92rem,2vw,1rem);
  font-weight:700; color: var(--t1); line-height:1.3;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.product-pricing { display:flex; align-items:baseline; gap:7px; margin-top:auto; padding-top:10px; }
.product-price { font-family: var(--fd); font-size:1.25rem; font-weight:900; color:var(--orange); line-height:1; }
.product-price-old { font-size:.8rem; color: var(--t3); text-decoration:line-through; }
.product-tax { font-size:.7rem; color: var(--t3); margin-top:3px; }

.product-cta {
  margin-top:12px; width:100%; height:44px;
  background: var(--bg-3); border:none;
  border-top:1px solid var(--border);
  border-radius:0 0 calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px);
  font-family: var(--fd); font-size:1rem; font-weight:700; letter-spacing:.3px;
  color: var(--t1);
  transition: background var(--tf), color var(--tf);
}
.product-cta:hover { background:var(--orange); color:#fff; }

/* ─── TAXI SECTION ─── */
.taxi-section {
  padding: clamp(48px,8vw,96px) 0;
  position:relative; overflow:hidden;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.taxi-section::before {
  content:''; position:absolute; top:-120px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(255,107,0,.06) 0%,transparent 65%);
  pointer-events:none;
}
.taxi-inner { display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
@media(min-width:768px){ .taxi-inner { grid-template-columns:1fr 1fr; gap:60px; } }

.taxi-pill {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--orange); color:#fff;
  padding:5px 14px; border-radius:100px;
  font-family: var(--fd); font-size:.75rem; font-weight:800;
  letter-spacing:1px; text-transform:uppercase;
  margin-bottom:18px;
}
.taxi-title {
  font-family: var(--fd);
  font-size: clamp(2.1rem,4.5vw,3.4rem);
  font-weight:900; text-transform:uppercase;
  letter-spacing:-.5px; line-height:.95;
  color: var(--t1); margin-bottom:18px;
}
.taxi-title span { color:var(--orange); }
.taxi-desc { color: var(--t2); line-height:1.75; font-size:1rem; margin-bottom:30px; }

.taxi-table {
  background: var(--bg-2); border:1px solid var(--border);
  border-radius: var(--r-lg); overflow:hidden;
}
.taxi-table-head {
  padding:14px 20px;
  background:linear-gradient(135deg,rgba(255,107,0,.1),rgba(255,107,0,.04));
  border-bottom:1px solid var(--border);
  font-family: var(--fd); font-size:.82rem; font-weight:700;
  color:var(--orange); text-transform:uppercase; letter-spacing:.5px;
}
.taxi-row {
  display:flex; align-items:center; gap:12px;
  padding:13px 20px; border-bottom:1px solid var(--border);
  font-size:.9rem; color: var(--t2);
  transition: background var(--tf), color var(--tf);
  min-height:48px;
}
.taxi-row:last-child { border-bottom:none; }
.taxi-row:hover { background:var(--orange-soft); color: var(--t1); }
.taxi-row::before { content:'→'; color:var(--orange); font-weight:700; flex-shrink:0; }
.taxi-row-price { margin-left:auto; font-family: var(--fd); font-weight:800; color:var(--orange); font-size:.97rem; }

/* ─── WHY US ─── */
.why-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:12px;
}
@media(min-width:768px){ .why-grid { grid-template-columns:repeat(4,1fr); gap:18px; } }

.why-card {
  background: var(--bg-2); border:1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(18px,4vw,32px) 18px;
  text-align:center;
  transition: border-color var(--tb), transform var(--tb);
}
.why-card:hover { border-color:var(--border-h); transform:translateY(-3px); }
.why-icon {
  width:56px; height:56px;
  background:var(--orange-soft); border-radius: var(--r-md);
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem; margin:0 auto 14px;
}
.why-title { font-family: var(--fd); font-size:1.1rem; font-weight:800; text-transform:uppercase; color: var(--t1); margin-bottom:7px; }
.why-desc { font-size:.86rem; color: var(--t2); line-height:1.6; }

/* ─── FOOTER ─── */
.footer { background: var(--bg-2); border-top:1px solid var(--border); padding-top: clamp(40px,6vw,72px); }
.footer-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 20px;
  padding-bottom: clamp(32px,5vw,56px);
}
@media(min-width:768px){ .footer-grid { grid-template-columns:2fr 1fr 1fr 1.5fr; gap:44px; } }

.footer-logo { height:36px; width:auto; margin-bottom:12px; }
.footer-tagline { font-size:.86rem; color: var(--t2); line-height:1.7; margin-bottom:18px; }
.footer-socials { display:flex; gap:8px; }
.footer-soc-btn {
  width:36px; height:36px;
  background: var(--bg-3); border:1px solid var(--border); border-radius: var(--r);
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; font-weight:800; color: var(--t2);
  transition: background var(--tf), border-color var(--tf), color var(--tf);
  min-height:36px;
}
.footer-soc-btn:hover { background:var(--orange-soft); border-color:var(--border-h); color:var(--orange); }

.footer-col h4 {
  font-family: var(--fd); font-size:.84rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1px;
  color: var(--t1); margin-bottom:14px;
}
.footer-col a {
  display:block; font-size:.9rem; color: var(--t2);
  padding:6px 0; min-height:36px; line-height:1.5;
  transition: color var(--tf);
}
.footer-col a:hover { color:var(--orange); }
.footer-col p { font-size:.88rem; color: var(--t2); padding:5px 0; line-height:1.5; }

.pay-tags { display:flex; flex-direction:column; gap:7px; margin-top:14px; }
.pay-tag {
  display:inline-flex; align-items:center; gap:7px;
  background: var(--bg-3); border:1px solid var(--border);
  border-radius: var(--r); padding:8px 12px;
  font-size:.83rem; font-family: var(--fd); font-weight:600; color: var(--t2);
}

.footer-bottom { border-top:1px solid var(--border); padding:18px 0; }
.footer-bottom-inner {
  display:flex; flex-direction:column; gap:5px;
  align-items:center; text-align:center;
}
@media(min-width:768px){ .footer-bottom-inner { flex-direction:row; justify-content:space-between; text-align:left; } }
.footer-bottom p { font-size:.8rem; color: var(--t3); line-height:1.5; }
.footer-bottom a { color:var(--orange); }

/* ─── CART DRAWER ─── */
.overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(4px);
  z-index:1800; opacity:0; pointer-events:none;
  transition: opacity var(--tb);
}
.overlay.active { opacity:1; pointer-events:auto; }

.cart-drawer {
  position:fixed; top:0; bottom:0; right:0;
  width:min(440px,100vw);
  background: var(--bg-2); border-left:1px solid var(--border);
  z-index:1900; display:flex; flex-direction:column;
  transform:translateX(100%);
  transition: transform var(--ts);
}
.cart-drawer.active { transform:translateX(0); }

.drawer-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 22px; border-bottom:1px solid var(--border); flex-shrink:0;
}
.drawer-head h3 { font-family: var(--fd); font-size:1.25rem; font-weight:800; text-transform:uppercase; color: var(--t1); }
.drawer-close {
  width:34px; height:34px;
  background: var(--bg-3); border:1px solid var(--border); border-radius: var(--r);
  display:flex; align-items:center; justify-content:center;
  color: var(--t2); font-size:1rem;
  transition: background var(--tf), color var(--tf);
}
.drawer-close:hover { background:rgba(229,62,62,.15); color:#e53e3e; border-color:rgba(229,62,62,.3); }

.drawer-body { flex:1; overflow-y:auto; padding:14px 22px; }
.drawer-empty { text-align:center; padding:56px 20px; color: var(--t3); }
.drawer-empty-ico { font-size:3.5rem; margin-bottom:14px; opacity:.4; }
.drawer-empty p { font-size:.92rem; }

.cart-item { display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--border); }
.cart-item-img {
  width:60px; height:60px;
  background: var(--bg-3); border:1px solid var(--border); border-radius: var(--r);
  display:flex; align-items:center; justify-content:center; font-size:1.9rem; flex-shrink:0;
}
.cart-item-name { font-size:.9rem; font-weight:600; color: var(--t1); line-height:1.3; margin-bottom:4px; }
.cart-item-price { font-family: var(--fd); font-weight:800; color:var(--orange); font-size:.98rem; }
.cart-qty { display:flex; align-items:center; gap:8px; margin-top:9px; }
.qty-btn {
  width:28px; height:28px;
  background: var(--bg-4); border:1px solid var(--border); border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  color: var(--t1); font-size:.95rem;
  transition: background var(--tf), border-color var(--tf);
}
.qty-btn:hover { border-color:var(--orange); background:var(--orange-soft); color:var(--orange); }
.qty-n { font-family: var(--fd); font-weight:700; min-width:20px; text-align:center; color: var(--t1); }
.cart-rm {
  margin-left:auto; width:28px; height:28px;
  background:none; border:none;
  color: var(--t3); border-radius:6px;
  display:flex; align-items:center; justify-content:center; font-size:.95rem;
  transition: color var(--tf), background var(--tf);
}
.cart-rm:hover { color:#e53e3e; background:rgba(229,62,62,.1); }

.drawer-foot { padding:14px 22px 22px; border-top:1px solid var(--border); flex-shrink:0; }
.drawer-total {
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 0;
  font-family: var(--fd); font-size:1rem; color: var(--t2);
}
.drawer-total strong { font-size:1.5rem; font-weight:900; color:var(--orange); }

/* ─── TOAST ─── */
.toast {
  position:fixed; bottom:28px; left:50%;
  transform:translateX(-50%) translateY(16px);
  background: var(--bg-3); border:1px solid var(--border);
  color: var(--t1); padding:11px 22px;
  border-radius:100px;
  font-family: var(--fd); font-size:.93rem; font-weight:700;
  z-index:9999; pointer-events:none; opacity:0;
  transition: opacity var(--tf), transform var(--tf);
  white-space:nowrap; box-shadow: var(--shadow-md);
  display:flex; align-items:center; gap:8px;
}
.toast::before { content:'✓'; color:var(--orange); }
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ─── COOKIE BAR ─── */
.cookie-bar {
  display:none;
  position:fixed; bottom:18px; left:50%; transform:translateX(-50%);
  width:calc(100% - 36px); max-width:580px;
  background: var(--bg-2); border:1px solid var(--border);
  border-radius: var(--r-lg);
  padding:16px 18px; z-index:8900;
  box-shadow: var(--shadow-lg);
  align-items:center; gap:14px; flex-wrap:wrap;
}
.cookie-bar.show { display:flex; }
.cookie-bar p { flex:1; font-size:.86rem; color: var(--t2); min-width:180px; }
.cookie-bar a { color:var(--orange); }
.cookie-btns { display:flex; gap:8px; flex-shrink:0; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background:linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom:1px solid var(--border);
  padding: clamp(28px,5vw,52px) 0;
}
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:.8rem; color: var(--t3);
  margin-bottom:10px; flex-wrap:wrap;
}
.breadcrumb a { color:var(--orange); transition: color var(--tf); }
.breadcrumb a:hover { color:var(--orange-h); }
.page-hero h1 {
  font-family: var(--fd);
  font-size: clamp(2rem,5vw,3.8rem);
  font-weight:900; text-transform:uppercase;
  letter-spacing:-.5px; color: var(--t1); line-height:1;
}

/* ─── SHOP LAYOUT ─── */
.shop-wrap {
  display:grid; grid-template-columns:1fr; gap:20px;
  padding:28px 0 72px;
}
@media(min-width:960px){ .shop-wrap { grid-template-columns:220px 1fr; gap:28px; } }

.shop-sidebar { display:none; }
@media(min-width:960px){
  .shop-sidebar { display:block; position:sticky; top:calc(var(--hh) + 16px); height:fit-content; }
}
.sidebar-box {
  background: var(--bg-2); border:1px solid var(--border);
  border-radius: var(--r-lg); padding:18px; margin-bottom:12px;
}
.sidebar-box h4 {
  font-family: var(--fd); font-size:.82rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1px;
  color: var(--t1); margin-bottom:12px;
}
.filt-row {
  display:flex; align-items:center; gap:10px;
  padding:9px 0; border-bottom:1px solid var(--border);
  font-size:.88rem; color: var(--t2);
  cursor:pointer; min-height:40px;
  transition: color var(--tf);
}
.filt-row:last-child { border-bottom:none; }
.filt-row:hover, .filt-row.active { color:var(--orange); }
.filt-row.active { font-weight:600; }

/* Pills on mobile */
.shop-pills { display:flex; gap:8px; flex-wrap:wrap; overflow-x:auto; scrollbar-width:none; margin-bottom:16px; }
.shop-pills::-webkit-scrollbar { display:none; }
.shop-pill {
  flex-shrink:0; height:36px; padding:0 14px;
  background: var(--bg-3); border:1px solid var(--border); border-radius:100px;
  font-family: var(--fd); font-size:.84rem; font-weight:700;
  color: var(--t2); white-space:nowrap;
  transition: background var(--tf), border-color var(--tf), color var(--tf);
}
.shop-pill:hover { border-color:var(--border-h); color:var(--orange); }
.shop-pill.active { background:var(--orange); border-color:var(--orange); color:#fff; }

.shop-bar {
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-bottom:18px; flex-wrap:wrap;
}
.shop-count { font-size:.84rem; color: var(--t2); }
.shop-sort {
  height:38px; padding:0 12px;
  background: var(--bg-3); border:1px solid var(--border);
  border-radius: var(--r); color: var(--t1);
  font-size:.88rem; outline:none;
  min-width:160px;
}

/* ─── CHECKOUT ─── */
.checkout-wrap {
  display:grid; grid-template-columns:1fr; gap:24px;
  padding:28px 0 72px;
}
@media(min-width:900px){ .checkout-wrap { grid-template-columns:1fr 360px; gap:36px; } }

.checkout-card {
  background: var(--bg-2); border:1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(18px,4vw,32px);
}
.checkout-card h3 {
  font-family: var(--fd); font-size:1.2rem; font-weight:800;
  text-transform:uppercase; margin-bottom:22px;
  padding-bottom:14px; border-bottom:1px solid var(--border);
  color: var(--t1);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:480px){ .form-row { grid-template-columns:1fr; } }
.form-field { display:flex; flex-direction:column; gap:5px; margin-bottom:12px; }
.form-field label { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color: var(--t2); }
.form-field input, .form-field select, .form-field textarea {
  height:46px; background: var(--bg-3); border:1px solid var(--border);
  border-radius: var(--r); padding:0 14px;
  color: var(--t1); font-family: var(--fb); font-size:1rem;
  outline:none; -webkit-appearance:none;
  transition: border-color var(--tf);
}
.form-field textarea { height:auto; padding:12px 14px; resize:vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color:var(--orange); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--t3); }

.pay-methods { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:12px; }
.pay-method {
  background: var(--bg-3); border:2px solid var(--border);
  border-radius: var(--r-md); padding:14px;
  cursor:pointer; text-align:center;
  transition: border-color var(--tf), background var(--tf);
}
.pay-method.active { border-color:var(--orange); background:var(--orange-soft); }
.pay-method h4 { font-family: var(--fd); font-size:.98rem; font-weight:700; color: var(--t1); margin-bottom:4px; }
.pay-method p { font-size:.78rem; color: var(--t2); }

.summary-card {
  background: var(--bg-2); border:1px solid var(--border);
  border-radius: var(--r-lg); padding:22px;
}
@media(min-width:900px){ .summary-card { position:sticky; top:calc(var(--hh) + 16px); } }
.summary-card h3 {
  font-family: var(--fd); font-size:1.15rem; font-weight:800;
  text-transform:uppercase; margin-bottom:18px;
  padding-bottom:12px; border-bottom:1px solid var(--border);
  color: var(--t1);
}
.sum-row {
  display:flex; justify-content:space-between;
  padding:8px 0; font-size:.88rem; color: var(--t2);
  border-bottom:1px solid var(--border);
}
.sum-row.total {
  font-family: var(--fd); font-size:1.15rem; font-weight:800;
  color: var(--t1); border-bottom:none; padding-top:14px;
}
.sum-row.total span:last-child { color:var(--orange); }
.sum-note { font-size:.76rem; color: var(--t3); margin-top:10px; line-height:1.5; }

/* ─── FORMS - contact/legal ─── */
.legal-body { max-width:800px; margin:0 auto; }
.legal-body h2 {
  font-family: var(--fd); font-size:1.35rem; font-weight:800;
  text-transform:uppercase; color:var(--orange); margin:32px 0 10px;
}
.legal-body p, .legal-body li { color: var(--t2); line-height:1.8; margin-bottom:10px; font-size:.93rem; }
.legal-body ul { padding-left:20px; list-style:disc; }

/* ─── UTILS ─── */
.text-orange { color:var(--orange); }
.text-muted { color: var(--t2); }
.text-center { text-align:center; }
.hidden { display:none !important; }
