/* ══════════════════════════════════════════
   ElektroGH.wien – Shared Styles
   ══════════════════════════════════════════ */

:root {
  --bg: #f5f4f0;
  --white: #ffffff;
  --surface: #eeece7;
  --border: #dddbd4;
  --border-light: #e8e6e0;
  --yellow: #f0b429;
  --yellow-dark: #c98a00;
  --yellow-light: #fff8e6;
  --black: #16140f;
  --dark: #2a2820;
  --text: #3d3a30;
  --muted: #8a8679;
  --muted-light: #b5b2a9;
  --green: #2d9e5f;
  --green-light: #eaf7f0;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --red: #e53e3e;
  --red-light: #fee;
  --yellow-hover: #f5c020;
  --yellow-border: #ffe08a;
  --warm-bg: #fff8e6;
  --warm-text: #a06000;
  --shadow-sm: 0 1px 3px rgba(22,20,15,0.06), 0 1px 2px rgba(22,20,15,0.04);
  --shadow: 0 4px 16px rgba(22,20,15,0.08), 0 1px 3px rgba(22,20,15,0.05);
  --shadow-lg: 0 12px 40px rgba(22,20,15,0.12), 0 4px 12px rgba(22,20,15,0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --nav-offset: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  button, a, input, select, textarea { touch-action: manipulation; }
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ──────────── LUCIDE ICON SIZING ──────────── */
.lucide { width: 1em; height: 1em; stroke-width: 2; vertical-align: -0.125em; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ──────────── TOPBAR ──────────── */
.topbar {
  background: var(--yellow);
  padding: 10px 0;
  text-align: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item .lucide { width: 15px; height: 15px; }
.topbar-sep { opacity: 0.4; }

/* ──────────── NAV ──────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .bolt {
  width: 30px; height: 30px;
  background: var(--yellow);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--black);
}
.nav-logo .bolt .lucide { width: 18px; height: 18px; }

.nav-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.nav-search input {
  width: 100%;
  height: 42px;
  background: var(--surface);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0 44px 0 16px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
}
.nav-search input::placeholder { color: var(--muted-light); }
.nav-search input:focus {
  background: var(--white);
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.15);
}
.nav-search-icon {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  display: flex;
}
.nav-search-icon .lucide { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); background: var(--surface); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all 0.15s;
  position: relative;
}
.nav-icon-btn .lucide { width: 20px; height: 20px; }
.nav-icon-btn:hover { background: var(--border); }
.nav-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 17px; height: 17px;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.btn-cta {
  height: 40px;
  padding: 0 20px;
  background: var(--black);
  color: var(--white);
  border: none; cursor: pointer;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.btn-cta:hover { background: var(--dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-cta .lucide { width: 16px; height: 16px; }

/* ──────────── HAMBURGER ──────────── */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: none; cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--text);
}
.hamburger .lucide { width: 22px; height: 22px; }

/* ──────────── MOBILE MENU ──────────── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,20,15,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 88vw;
  height: 100dvh;
  background: var(--white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.mobile-menu-close {
  width: 36px; height: 36px;
  border: none; background: var(--surface);
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background 0.15s;
}
.mobile-menu-close:hover { background: var(--border); }
.mobile-menu-close .lucide { width: 20px; height: 20px; }

/* ──── Mobile Menu Search ──── */
.mobile-menu-search {
  margin-bottom: 16px;
  position: relative;
  flex-shrink: 0;
}
.mobile-menu-search input {
  width: 100%;
  height: 44px;
  background: var(--surface);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0 44px 0 16px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
}
.mobile-menu-search input:focus {
  background: var(--white);
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.15);
}
.mobile-menu-search input::placeholder { color: var(--muted-light); }
.mobile-menu-search-icon {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  display: flex;
}
.mobile-menu-search-icon .lucide { width: 18px; height: 18px; }

.mobile-search-results {
  margin-top: 8px;
  max-height: 40vh;
  overflow-y: auto;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--white);
  display: none;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.mobile-search-results.active { display: block; }
.mobile-search-results .search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border-light);
  color: inherit;
  text-decoration: none;
}
.mobile-search-results .search-result-item:last-child { border-bottom: none; }
.mobile-search-results .search-result-item:active { background: var(--surface); }
.mobile-search-results .search-no-results {
  padding: 20px 14px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  flex: 1;
  min-height: 0;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.mobile-menu-links a:hover { background: var(--surface); }
.mobile-menu-links a:active { background: var(--border); }
.mobile-menu-links a .lucide { width: 20px; height: 20px; color: var(--muted); }

.mobile-menu-actions {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.mobile-menu-actions .btn-cta { width: 100%; justify-content: center; height: 44px; }

/* ──────────── CATEGORY NAV ──────────── */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.cat-nav-link:hover { color: var(--black); }
.cat-nav-link.active { color: var(--black); border-bottom-color: var(--yellow); }
.cat-nav-link .lucide { width: 18px; height: 18px; }
.cat-nav-item { position: relative; }
.cat-nav-chevron { width: 14px !important; height: 14px !important; opacity: 0.5; transition: transform 0.2s; }
.cat-nav-item:hover .cat-nav-chevron { transform: rotate(180deg); }
.cat-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 6px 0;
}
.cat-nav-item:hover .cat-nav-dropdown { display: block; }
.cat-nav-drop-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.15s;
}
.cat-nav-drop-link:hover { background: var(--bg-warm); color: var(--black); }
.cat-nav-drop-link.active { color: var(--black); font-weight: 700; }
.cat-nav-drop-count { font-size: 0.72rem; color: var(--muted-light); margin-left: 12px; }

/* ──────────── SECTION ──────────── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
}
.section-sub { font-size: 0.88rem; color: var(--muted); margin-top: 3px; }
.see-all {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}
.see-all:hover { background: var(--surface); color: var(--black); }
.see-all .lucide { width: 16px; height: 16px; }

/* ──────────── PRODUCT CARDS (shared) ──────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.product-img {
  background: var(--surface);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img .lucide { width: 64px; height: 64px; color: var(--muted); }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-img.has-img { background: #fff; }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
}
.badge-new { background: var(--blue); color: var(--white); }
.badge-sale { background: var(--red); color: var(--white); }
.badge-stock { background: var(--green-light); color: var(--green); }
.b2b-badge { display: inline-block; background: var(--yellow); color: var(--black); padding: 1px 6px; border-radius: 4px; font-size: 0.62rem; font-weight: 700; vertical-align: middle; letter-spacing: 0.04em; }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-brand { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.product-name { font-size: 0.88rem; font-weight: 700; color: var(--black); line-height: 1.35; }
.product-meta { font-size: 0.75rem; color: var(--muted); font-family: 'DM Mono', monospace; }
.stock-indicator { font-size: 0.72rem; margin-top: 4px; display: flex; align-items: center; gap: 3px; }
.stock-indicator svg { width: 12px; height: 12px; }
.stock-indicator.in-stock { color: #16a34a; }
.stock-indicator.out-of-stock { color: #dc2626; }
.product-footer {
  padding: 12px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-size: 1.2rem; font-weight: 800; color: var(--black); letter-spacing: -0.02em; }
.product-price sub { font-size: 0.65rem; font-weight: 500; color: var(--muted); }
.product-price .old {
  font-size: 0.75rem; font-weight: 500; color: var(--muted-light);
  text-decoration: line-through; display: block; margin-bottom: 1px;
}
.btn-add {
  width: 36px; height: 36px;
  background: var(--yellow);
  border: none; cursor: pointer;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: var(--black);
}
.btn-add .lucide { width: 18px; height: 18px; }
.btn-add:hover { background: var(--yellow-hover); transform: scale(1.08); }

.product-btns { display: flex; gap: 6px; align-items: center; }
.btn-compare {
  width: 32px; height: 32px; background: var(--surface);
  border: 1.5px solid var(--border-light); cursor: pointer;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--muted);
}
.btn-compare .lucide { width: 16px; height: 16px; }
.btn-compare:hover { border-color: var(--yellow); color: var(--yellow-dark); }
.btn-compare.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* ──────────── BREADCRUMB ──────────── */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a { transition: color 0.15s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb .sep { display: flex; }
.breadcrumb .sep .lucide { width: 14px; height: 14px; }
.breadcrumb .current { color: var(--black); font-weight: 600; }

/* ──────────── FOOTER ──────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 1.1rem; font-weight: 800; color: var(--black);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.footer-bolt {
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.footer-bolt .lucide { width: 16px; height: 16px; }
.footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 0.83rem; color: var(--muted); display: flex; align-items: center; gap: 7px; transition: color 0.15s; }
.footer-contact a:hover { color: var(--black); }
.footer-contact .lucide { width: 16px; height: 16px; flex-shrink: 0; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--black); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: var(--muted-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--muted-light); transition: color 0.15s; }
.footer-legal a:hover { color: var(--black); }

/* ──────────── TOAST ──────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--black);
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  border-left: 4px solid var(--yellow);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .lucide { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; }
.toast.toast-success { border-left-color: var(--green); }
.toast.toast-success .lucide { color: var(--green); }
.toast.toast-error { border-left-color: var(--red); }
.toast.toast-error .lucide { color: var(--red); }
.toast.toast-warning { border-left-color: var(--yellow); }
.toast.toast-warning .lucide { color: var(--yellow); }
.toast.toast-info { border-left-color: var(--blue); }
.toast.toast-info .lucide { color: var(--blue); }
.toast-close {
  background: none; border: none; color: var(--muted-light); cursor: pointer;
  padding: 0; margin-left: 8px; flex-shrink: 0; opacity: 0.6; transition: opacity 0.2s;
}
.toast-close:hover { opacity: 1; }
.toast-close .lucide { width: 16px; height: 16px; color: inherit; }

/* ──────────── CONFIRM DIALOG ──────────── */
.confirm-overlay {
  position: fixed; inset: 0; background: rgba(22,20,15,0.5);
  backdrop-filter: blur(4px); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s ease;
}
.confirm-overlay.show { opacity: 1; }
.confirm-dialog {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); max-width: 400px; width: 90%;
  padding: 28px; text-align: center;
  transform: scale(0.95) translateY(8px);
  transition: transform 0.25s ease;
}
.confirm-overlay.show .confirm-dialog { transform: scale(1) translateY(0); }
.confirm-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.confirm-icon.danger { background: var(--red-light); color: var(--red); }
.confirm-icon.warning { background: var(--yellow-light); color: var(--warm-text); }
.confirm-icon.info { background: var(--blue-light); color: var(--blue); }
.confirm-icon .lucide { width: 24px; height: 24px; }
.confirm-title {
  font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 8px;
}
.confirm-message {
  font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin-bottom: 24px;
}
.confirm-actions { display: flex; gap: 10px; justify-content: center; }
.confirm-btn {
  padding: 10px 24px; border-radius: var(--radius-sm); font-size: 0.88rem;
  font-weight: 600; border: none; cursor: pointer; transition: all 0.15s ease;
  font-family: inherit;
}
.confirm-btn-cancel {
  background: var(--surface); color: var(--text);
}
.confirm-btn-cancel:hover { background: var(--border); }
.confirm-btn-confirm {
  background: var(--red); color: var(--white);
}
.confirm-btn-confirm:hover { background: #c53030; }
.confirm-btn-confirm.primary {
  background: var(--yellow); color: var(--black);
}
.confirm-btn-confirm.primary:hover { background: var(--yellow-hover); }

/* ──────────── BUTTON UTILITIES ──────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 28px;
  background: var(--yellow); color: var(--black);
  border-radius: 12px; font-weight: 700; font-size: 0.9rem;
  border: none; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
  max-width: 100%; text-align: center;
}
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,180,41,0.4); }
.btn-primary .lucide { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 24px;
  background: var(--surface); color: var(--text);
  border-radius: 12px; font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid var(--border); cursor: pointer; font-family: inherit;
  transition: all 0.2s;
  max-width: 100%; text-align: center;
}
.btn-secondary:hover { background: var(--border); }
.btn-secondary .lucide { width: 18px; height: 18px; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 28px;
  background: var(--black); color: var(--white);
  border-radius: 12px; font-weight: 700; font-size: 0.9rem;
  border: none; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
  max-width: 100%; text-align: center;
}
.btn-dark:hover { background: var(--dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark .lucide { width: 18px; height: 18px; }

/* ──────────── FORM UTILITIES ──────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-input {
  height: 44px;
  padding: 0 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.15);
}
.form-input::placeholder { color: var(--muted-light); }
textarea.form-input { height: auto; padding: 12px 14px; resize: vertical; min-height: 100px; }
.form-error { font-size: 0.75rem; color: var(--red); font-weight: 500; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ──────────── FOCUS & ACCESSIBILITY ──────────── */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.nav-icon-btn:focus-visible,
.btn-add:focus-visible,
.btn-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-dark:focus-visible,
.hamburger:focus-visible,
.mobile-menu-close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ──────────── BUTTON ACTIVE/PRESS STATES ──────────── */
.btn-primary:active,
.btn-secondary:active,
.btn-dark:active,
.btn-cta:active,
.btn-add:active,
.nav-icon-btn:active,
.cookie-accept:active,
.cookie-reject:active {
  transform: scale(0.96);
  transition-duration: 0.1s;
}
@media (min-width: 768px) {
  .btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
  .btn-dark:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
  .btn-cta:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
  .btn-add:active { transform: scale(1); }
}

/* ──────────── CART BADGE BOUNCE ──────────── */
@keyframes badgePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.nav-badge.pop {
  animation: badgePop 0.35s ease;
}

/* ──────────── MOBILE MENU STAGGERED ENTRY ──────────── */
.mobile-menu-links li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.active .mobile-menu-links li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-links li:nth-child(7) { transition-delay: 0.35s; }

/* ──────────── SEARCH DROPDOWN FADE ──────────── */
.search-results {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  display: block !important;
  pointer-events: none;
}
.search-results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ──────────── TOAST PROGRESS BAR ──────────── */
@keyframes toastProgress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}
.toast {
  overflow: hidden;
}
.toast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform-origin: left;
  animation: toastProgress 2.5s linear forwards;
}

/* ──────────── FORM VALIDATION SHAKE ──────────── */
@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
@media (min-width: 768px) {
  @keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
  }
}
.form-input.shake {
  animation: inputShake 0.4s ease;
  border-color: var(--red) !important;
}
.form-error {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}
.form-error.visible {
  max-height: 30px;
  opacity: 1;
}

/* ──────────── PRODUCT CARD ENHANCED HOVER ──────────── */
.product-card .product-img .lucide {
  transition: transform 0.25s ease, color 0.25s ease;
}
.product-card .btn-add {
  opacity: 0.85;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .product-card:hover .product-img .lucide {
    transform: scale(1.08);
    color: var(--yellow-dark);
  }
  .product-card:hover .btn-add {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(240,180,41,0.35);
  }
}

/* ──────────── ANIMATION ──────────── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.show { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: 0.05s; }
.fade-in:nth-child(3) { transition-delay: 0.1s; }
.fade-in:nth-child(4) { transition-delay: 0.15s; }
.fade-in:nth-child(5) { transition-delay: 0.2s; }
.fade-in:nth-child(6) { transition-delay: 0.25s; }

/* ──────────── WORD-BREAK SAFETY ──────────── */
.product-name,
.blog-card-title,
.featured-article-title,
.deal-name,
.job-content h3,
.tier-features li,
.testimonial-name,
.testimonial-role {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-search { display: none; }
  .hamburger { display: flex; }
  .btn-cta.desktop-only { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
  .breadcrumb { padding: 12px 16px; font-size: 0.78rem; }
  .section { padding: 36px 16px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .topbar-inner { flex-wrap: wrap; gap: 8px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
  .benefits-section { padding: 40px 16px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit-card { padding: 24px; }

  /* Back-to-top: reposition for mobile */
  .back-to-top { right: 16px; bottom: 16px; width: 40px; height: 40px; }

  /* Cat-nav scroll indicator */
  .cat-nav { position: relative; }
  .cat-nav::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--white));
    pointer-events: none;
    z-index: 1;
  }
  .cat-nav-inner { padding: 0 16px; }

  /* Cookie banner mobile */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 14px;
  }
  .cookie-actions { width: 100%; justify-content: center; flex-wrap: wrap; }

  /* Toast wider on mobile */
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 0.82rem;
    padding: 12px 16px 12px 14px;
    max-width: none;
  }
  .confirm-dialog { padding: 24px 20px; }

  /* Product card mobile optimization */
  .product-img { height: 140px; }
  .product-info { padding: 12px; gap: 4px; }
  .product-footer { padding: 10px 12px 14px; }
  .product-price { font-size: 1.05rem; }
  .product-name { font-size: 0.82rem; }

  /* Section title mobile */
  .section-title { font-size: 1.25rem; }
}

/* ──────────── BACK TO TOP ──────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 80px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.back-to-top .lucide { width: 20px; height: 20px; }

/* ──────────── SEARCH OVERLAY ──────────── */
.search-results {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 380px;
  overflow-y: auto;
  z-index: 9000;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  transition: background 0.15s;
  cursor: pointer;
}
.search-result-item:hover, .search-result-item.active { background: var(--surface); }
.search-result-icon {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.search-result-icon .lucide { width: 18px; height: 18px; color: var(--muted); }
.search-result-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }
.search-result-name { font-size: 0.85rem; font-weight: 600; color: var(--black); }
.search-result-meta { font-size: 0.75rem; color: var(--muted); }
.search-result-price { margin-left: auto; font-size: 0.88rem; font-weight: 700; color: var(--black); }
.search-no-results {
  padding: 24px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ──────────── COOKIE BANNER ──────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.85rem; max-width: 600px; line-height: 1.5; }
.cookie-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cookie-accept {
  height: 38px;
  padding: 0 20px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-accept:hover { background: var(--yellow-hover); }
.cookie-reject {
  height: 36px;
  padding: 0 16px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.cookie-reject:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.cookie-more { font-size: 0.82rem; color: var(--muted-light); text-decoration: underline; }
.cookie-more:hover { color: var(--white); }

/* ──────────── NEWSLETTER SECTION ──────────── */
.newsletter-section {
  background: var(--black);
  padding: 64px 0;
  text-align: center;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 32px;
}
.newsletter-icon {
  width: 56px;
  height: 56px;
  background: rgba(240,180,41,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.newsletter-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}
.newsletter-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.newsletter-section p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.newsletter-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}
.newsletter-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.2);
}
.newsletter-btn {
  flex-shrink: 0;
}
.newsletter-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.newsletter-hint .lucide {
  width: 14px;
  height: 14px;
}

/* ──────────── BENEFITS SECTION ──────────── */
.benefits-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px;
}
.benefits-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.025em;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--yellow-dark);
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ──────────── FOOTER CREDIT ──────────── */
.footer-credit {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}
.footer-credit a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }
.footer-credit .heart-pulse {
  width: 14px;
  height: 14px;
  color: #e53e3e;
  vertical-align: -2px;
  display: inline-block;
  animation: heartbeat 1.4s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.2); }
  28% { transform: scale(1); }
  42% { transform: scale(1.2); }
  56% { transform: scale(1); }
}

/* ──────────── LOADING SPINNER ──────────── */
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 40px auto;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loading-spinner-sm {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
.filter-loading {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 8px 0;
}
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 12px;
  grid-column: 1 / -1;
}
.loading-state p {
  font-size: 0.88rem;
  color: var(--muted);
}
.error-state {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.error-state p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 6px;
}
.error-state .btn-retry {
  margin-top: 16px;
  padding: 8px 20px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

/* ──────────── REDUCED MOTION ──────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
  .product-card:hover { transform: none; }
  .btn-primary:hover, .btn-cta:hover, .btn-dark:hover, .btn-add:hover { transform: none; }
  .mobile-menu-links li { opacity: 1; transform: none; }
  .nav-badge.pop { animation: none; }
  .toast::after { animation: none; }
  .form-input.shake { animation: none; }
}

/* ── Phones ── */
@media (max-width: 640px) {
  .topbar { display: none; }
  .nav-inner { height: 56px; }
  .breadcrumb { padding: 10px 14px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; gap: 8px; height: 52px; }
  .nav-logo { font-size: 0.95rem; }
  .nav-logo .bolt { width: 30px; height: 30px; border-radius: 7px; }
  .nav-logo .bolt .lucide { width: 16px; height: 16px; }
  .nav-icon-btn { width: 36px; height: 36px; }
  .nav-actions { gap: 4px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-img { height: 120px; }
  .product-info { padding: 10px; }
  .product-footer { padding: 8px 10px 12px; }
  .product-price { font-size: 0.95rem; }
  .btn-add { width: 32px; height: 32px; border-radius: 8px; }
  .btn-add .lucide { width: 16px; height: 16px; }
  .section { padding: 28px 12px; }
  .section-title { font-size: 1.1rem; }
  .newsletter-inner { padding: 0 12px; }
  .newsletter-section h2 { font-size: 1.15rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 18px; }
  .footer-inner { padding: 0 12px; }
  .footer-grid { gap: 22px; }
  .footer-brand-name { font-size: 1rem; }
  .footer-tagline { font-size: 0.82rem; }
  .footer-col-title { font-size: 0.78rem; }
  .footer-links li a { font-size: 0.82rem; }
  .footer-bottom { gap: 10px; font-size: 0.75rem; }
  .footer-credit { font-size: 0.75rem; }
}

/* ──────────── COMPARE BAR ──────────── */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--black); border-top: 2px solid var(--yellow);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.compare-bar.active { transform: translateY(0); }
.compare-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.compare-bar-items { display: flex; gap: 10px; flex: 1; overflow-x: auto; }
.compare-bar-item {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); padding: 8px 12px;
  border-radius: 8px; font-size: 0.82rem; color: #fff; white-space: nowrap;
}
.compare-bar-item .lucide { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }
.compare-bar-empty { border: 1.5px dashed rgba(255,255,255,0.2); background: none; color: var(--muted); }
.compare-bar-remove {
  background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer;
  padding: 0; display: flex; margin-left: 4px;
}
.compare-bar-remove:hover { color: #ff6b6b; }
.compare-bar-remove .lucide { width: 14px; height: 14px; color: inherit; }
.compare-bar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.compare-bar-count { color: var(--muted); font-size: 0.8rem; font-weight: 600; }
.btn-compare-go {
  background: var(--yellow); color: var(--black); padding: 8px 18px;
  border-radius: 8px; font-size: 0.82rem; font-weight: 700;
  text-decoration: none; transition: background 0.15s;
}
.btn-compare-go:hover { background: var(--yellow-dark); }
.btn-compare-clear {
  background: none; border: none; color: rgba(255,255,255,0.4);
  cursor: pointer; display: flex; padding: 4px;
}
.btn-compare-clear:hover { color: #ff6b6b; }
.btn-compare-clear .lucide { width: 18px; height: 18px; color: inherit; }

@media (max-width: 768px) {
  .compare-bar-inner { padding: 10px 14px; flex-direction: column; gap: 8px; }
  .compare-bar-items { width: 100%; }
  .compare-bar-item span { max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
}

/* ── Very small phones (SE, older Galaxies) ── */
@media (max-width: 360px) {
  .nav-inner { padding: 0 10px; gap: 6px; }
  .nav-logo { font-size: 0.88rem; gap: 6px; }
  .nav-icon-btn { width: 34px; height: 34px; }
  .hamburger { width: 36px; height: 36px; }
  .products-grid { gap: 6px; }
  .product-img { height: 100px; }
  .product-name { font-size: 0.78rem; }
  .product-price { font-size: 0.88rem; }
  .section { padding: 24px 10px; }
  .section-title { font-size: 1rem; }
}
