/* ============================================================
   HITMOUSE ELECTRONICS — Main Stylesheet v2.0
   Dark premium electronics aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg:        #0a0e1a;
  --bg2:       #111827;
  --bg3:       #1a2235;
  --accent:    #00d4ff;
  --accent2:   #7c3aed;
  --orange:    #f97316;
  --green:     #10b981;
  --red:       #ef4444;
  --text:      #e2e8f0;
  --text2:     #94a3b8;
  --border:    rgba(255,255,255,.08);
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,.4);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TOPBAR ── */
.hm-topbar {
  background: linear-gradient(90deg, var(--accent2), #0ea5e9);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3px;
}
.hm-topbar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ── HEADER ── */
.hm-header {
  background: rgba(10,14,26,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 9999;
}
.hm-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
}

/* LOGO */
.hm-logo { flex: 0 0 auto; }
.hm-logo a { display: flex; align-items: center; gap: 10px; }
.hm-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.hm-logo-text { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.hm-logo-text .hit { color: #fff; }
.hm-logo-text .mouse { color: var(--accent); }

/* SEARCH */
.hm-search-wrap { flex: 1; display: flex; justify-content: center; }
.hm-search-form {
  display: flex;
  width: 100%;
  max-width: 600px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.hm-search-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
}
.hm-search-cat {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text2);
  padding: 0 16px;
  font-size: 12px;
  min-width: 140px;
  cursor: pointer;
  outline: none;
  font-family: var(--font-body);
}
.hm-search-cat option { background: var(--bg2); }
.hm-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
}
.hm-search-input::placeholder { color: var(--text2); }
.hm-search-btn {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: opacity .2s;
}
.hm-search-btn:hover { opacity: .85; }
.hm-search-btn svg { width: 16px; height: 16px; }

/* HEADER ACTIONS */
.hm-header-actions { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.hm-act {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 12px; color: var(--text2); font-size: 11px;
  border-radius: var(--radius); transition: color .2s, background .2s;
  position: relative; cursor: pointer;
}
.hm-act:hover { color: var(--accent); background: rgba(0,212,255,.06); }
.hm-act svg { width: 20px; height: 20px; }
.hm-cart-count {
  position: absolute; top: 2px; right: 8px;
  background: var(--orange); color: #fff;
  font-size: 9px; font-weight: 700;
  border-radius: 10px; min-width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.hm-mob-toggle {
  display: none; background: none; border: none; color: var(--text);
  padding: 8px; cursor: pointer;
}
.hm-mob-toggle svg { width: 24px; height: 24px; display: block; }

/* ── MEGA NAV ── */
.hm-nav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 70px; z-index: 9998;
}
.hm-nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.hm-nav-inner::-webkit-scrollbar { display: none; }
.hm-nav-item { position: relative; }
.hm-nav-item > a {
  display: flex; align-items: center; gap: 6px;
  color: var(--text2); padding: 0 16px; height: 46px;
  font-size: 13px; font-weight: 500; white-space: nowrap;
  transition: color .2s, background .2s;
  font-family: var(--font-body);
}
.hm-nav-item > a svg { width: 10px; height: 10px; opacity: .6; }
.hm-nav-item:hover > a,
.hm-nav-item.active > a { color: var(--accent); background: rgba(0,212,255,.06); }
.hm-nav-allcats > a {
  color: #fff; background: rgba(0,212,255,.1);
  border-right: 1px solid var(--border);
  gap: 8px; font-weight: 600;
}
.hm-nav-allcats > a:hover { background: rgba(0,212,255,.18); }
.hm-nav-deals > a { color: var(--orange) !important; font-weight: 700; }

/* Mega dropdown */
.hm-mega {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 10000;
  min-width: 220px;
  padding: 8px 0;
}
.hm-nav-item:hover .hm-mega { display: block; }
.hm-mega a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; font-size: 13px; color: var(--text2);
  transition: color .15s, background .15s, padding-left .15s;
  border-left: 2px solid transparent;
}
.hm-mega a:hover {
  color: var(--accent); background: rgba(0,212,255,.06);
  padding-left: 24px; border-left-color: var(--accent);
}

/* ── PAGE WRAP ── */
.hm-page { min-height: 60vh; }
.hm-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ── HERO ── */
.hm-hero {
  background: linear-gradient(135deg, #060b18 0%, #0f172a 40%, #0d1b3e 70%, #070d1a 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hm-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hm-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: 20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hm-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hm-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.3);
  color: var(--accent);
  padding: 5px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hm-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #fff;
}
.hm-hero h1 em { font-style: normal; color: var(--accent); }
.hm-hero p {
  font-size: 16px; color: var(--text2);
  margin-bottom: 32px; max-width: 460px; line-height: 1.7;
}
.hm-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  transition: all .2s; cursor: pointer; border: none;
  font-family: var(--font-body);
}
.hm-btn-primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #000;
}
.hm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,.3); }
.hm-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.hm-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero visual */
.hm-hero-visual { display: flex; justify-content: center; align-items: center; }
.hm-hero-graphic {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.15), transparent 70%);
  border: 1px solid rgba(0,212,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 130px;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}
.hm-hero-graphic::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,.08);
  animation: pulse 3s ease-in-out infinite reverse;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ── SECTION ── */
.hm-section { padding: 60px 0; }
.hm-section-hd {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.hm-section-hd h2 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700; color: #fff;
}
.hm-section-hd h2 span { color: var(--accent); }
.hm-section-hd a {
  font-size: 13px; color: var(--accent);
  font-weight: 600; white-space: nowrap;
}
.hm-section-hd a:hover { text-decoration: underline; }

/* ── CATEGORY GRID ── */
.hm-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hm-cat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
}
.hm-cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,.05), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.hm-cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.hm-cat-card:hover::before { opacity: 1; }
.hm-cat-icon { font-size: 44px; margin-bottom: 12px; display: block; }
.hm-cat-name {
  font-size: 13px; font-weight: 600; color: #fff;
  display: block; line-height: 1.3;
}
.hm-cat-sub { font-size: 11px; color: var(--text2); margin-top: 4px; display: block; }

/* ── PRODUCT GRID ── */
.hm-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

/* ── PRODUCT CARD ── */
.hm-pcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.hm-pcard:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.hm-pcard-img {
  aspect-ratio: 1;
  background: var(--bg3);
  overflow: hidden; position: relative;
}
.hm-pcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.hm-pcard:hover .hm-pcard-img img { transform: scale(1.06); }
.hm-pcard-badges {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.hm-badge {
  display: inline-block; padding: 2px 8px;
  border-radius: 4px; font-size: 10px; font-weight: 700;
}
.hm-badge-sale { background: var(--red); color: #fff; }
.hm-badge-new { background: var(--green); color: #fff; }
.hm-pcard-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.hm-pcard-cat { font-size: 10px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.hm-pcard-title {
  font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hm-pcard-title:hover { color: var(--accent); }
.hm-pcard-stars { color: #f59e0b; font-size: 12px; }
.hm-pcard-price { margin-top: auto; }
.hm-pcard-price .price,
.hm-pcard-price .woocommerce-Price-amount { color: var(--accent) !important; font-weight: 700; font-size: 16px; }
.hm-pcard-price del .woocommerce-Price-amount { color: var(--text2) !important; font-size: 12px; font-weight: 400; }
.hm-pcard-add {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #000; padding: 10px; border-radius: var(--radius);
  font-size: 12px; font-weight: 700; transition: opacity .2s;
  margin-top: 8px; cursor: pointer; border: none; width: 100%;
  font-family: var(--font-body);
}
.hm-pcard-add:hover { opacity: .85; color: #000; }

/* ── WOOCOMMERCE OVERRIDES ── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
  gap: 16px !important; padding: 0 !important; margin: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--bg2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important; overflow: hidden !important;
  transition: transform .2s !important;
  margin: 0 !important; width: auto !important; float: none !important;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px) !important; }
.woocommerce ul.products li.product a img {
  aspect-ratio: 1; object-fit: cover; width: 100%;
  background: var(--bg3);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px !important; color: var(--text) !important;
  padding: 10px 14px 4px !important;
  font-family: var(--font-body) !important;
}
.woocommerce ul.products li.product .price {
  color: var(--accent) !important; font-weight: 700 !important;
  padding: 0 14px 6px !important;
}
.woocommerce ul.products li.product .button {
  display: block !important; margin: 0 14px 14px !important;
  background: linear-gradient(135deg, var(--accent), #0ea5e9) !important;
  color: #000 !important; border-radius: var(--radius) !important;
  text-align: center !important; padding: 9px !important;
  font-size: 12px !important; font-weight: 700 !important;
  transition: opacity .2s !important; border: none !important;
}
.woocommerce ul.products li.product .button:hover { opacity: .85 !important; }

/* Single product */
.woocommerce div.product {
  background: var(--bg2); border-radius: 14px;
  padding: 32px; border: 1px solid var(--border);
}
.woocommerce div.product .price {
  color: var(--accent) !important; font-size: 28px !important; font-weight: 700 !important;
}
.woocommerce div.product button.single_add_to_cart_button {
  background: linear-gradient(135deg, var(--accent), #0ea5e9) !important;
  color: #000 !important; border-radius: 50px !important;
  font-size: 15px !important; font-weight: 700 !important;
  padding: 14px 40px !important; border: none !important;
}
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--accent) !important; }

/* Cart & Checkout */
.woocommerce-page { background: var(--bg) !important; }
.woocommerce table.shop_table {
  background: var(--bg2); border: 1px solid var(--border) !important;
  border-radius: 14px; overflow: hidden;
}
.woocommerce table.shop_table th { background: var(--bg3); color: var(--text2); padding: 14px 16px; }
.woocommerce table.shop_table td { border-color: var(--border) !important; color: var(--text); padding: 14px 16px; }
.woocommerce #payment #place_order {
  background: linear-gradient(135deg, var(--accent), #0ea5e9) !important;
  color: #000 !important; border-radius: 50px !important;
  font-weight: 700 !important; font-size: 15px !important;
}
.woocommerce .cart .button, .woocommerce .checkout_coupon .button {
  background: var(--bg3) !important; color: var(--text) !important;
  border: 1px solid var(--border) !important; border-radius: var(--radius) !important;
}
.woocommerce-message { background: var(--bg2) !important; border-top-color: var(--green) !important; color: var(--text) !important; }
.woocommerce-error { background: var(--bg2) !important; border-top-color: var(--red) !important; color: var(--text) !important; }

/* Forms */
.woocommerce form input, .woocommerce form textarea, .woocommerce form select {
  background: var(--bg3) !important; border: 1px solid var(--border) !important;
  color: var(--text) !important; border-radius: var(--radius) !important;
}
.woocommerce form label { color: var(--text2) !important; }
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--accent) !important; color: #000 !important;
  border-color: var(--accent) !important;
}

/* Breadcrumb */
.hm-breadcrumb { padding: 14px 0; font-size: 13px; color: var(--text2); }
.hm-breadcrumb a { color: var(--accent); }
.hm-breadcrumb span { margin: 0 8px; opacity: .4; }

/* ── TRENDING SECTION ── */
.hm-trending-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.hm-trend-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex; gap: 14px; align-items: center;
  transition: border-color .2s, transform .2s;
}
.hm-trend-card:hover { border-color: rgba(0,212,255,.3); transform: translateY(-2px); }
.hm-trend-img {
  width: 72px; height: 72px; border-radius: 10px;
  background: var(--bg3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 32px;
}
.hm-trend-info { flex: 1; }
.hm-trend-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hm-trend-stars { color: #f59e0b; font-size: 11px; margin-bottom: 4px; }
.hm-verified { font-size: 10px; color: var(--green); font-weight: 600; }
.hm-trend-price { font-size: 15px; font-weight: 700; color: var(--accent); }

/* ── TRUST BADGES ── */
.hm-trust {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.hm-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.hm-trust-item { padding: 0 16px; }
.hm-trust-icon { font-size: 28px; margin-bottom: 8px; }
.hm-trust-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.hm-trust-sub { font-size: 12px; color: var(--text2); }

/* ── NEWSLETTER ── */
.hm-newsletter {
  background: linear-gradient(135deg, rgba(0,212,255,.08), rgba(124,58,237,.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0; text-align: center;
}
.hm-newsletter h3 {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.hm-newsletter p { color: var(--text2); margin-bottom: 28px; font-size: 15px; }
.hm-nl-form { display: flex; justify-content: center; max-width: 460px; margin: 0 auto; }
.hm-nl-form input {
  flex: 1; padding: 13px 20px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50px 0 0 50px; color: var(--text);
  font-size: 14px; outline: none; font-family: var(--font-body);
}
.hm-nl-form button {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #000; padding: 13px 24px;
  border: none; border-radius: 0 50px 50px 0;
  font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: var(--font-body);
}

/* ── FOOTER ── */
.hm-footer { background: #060b18; border-top: 1px solid var(--border); }
.hm-footer-top { padding: 56px 0 44px; }
.hm-footer-grid {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 40px;
}
.hm-footer-brand .hm-logo-text .hit { color: #fff; }
.hm-footer-brand .hm-logo-text .mouse { color: var(--accent); }
.hm-footer-tagline { font-size: 13px; color: var(--text2); margin-top: 12px; line-height: 1.6; }
.hm-footer-col h4 {
  color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
}
.hm-footer-col ul { list-style: none; }
.hm-footer-col ul li { margin-bottom: 9px; }
.hm-footer-col ul li a { font-size: 13px; color: var(--text2); transition: color .2s; }
.hm-footer-col ul li a:hover { color: var(--accent); }
.hm-footer-col ul li a.parent { color: var(--text); font-weight: 600; }
.hm-footer-col ul li a.parent:hover { color: var(--accent); }
.hm-footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.hm-footer-bottom-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; width: 100%;
}
.hm-pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.hm-pay-pill {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text2); padding: 4px 12px;
  border-radius: 6px; font-size: 11px; font-weight: 700;
}
.hm-copyright { font-size: 12px; color: var(--text2); }
.hm-copyright a { color: var(--accent); }

/* ── BACK TO TOP ── */
.hm-backtop {
  position: fixed; bottom: 24px; right: 24px;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #000; width: 44px; height: 44px;
  border-radius: 50%; border: none; font-size: 18px;
  cursor: pointer; display: none; align-items: center;
  justify-content: center; z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,212,255,.3);
  transition: transform .2s;
}
.hm-backtop.show { display: flex; }
.hm-backtop:hover { transform: translateY(-3px); }

/* ── PAGE CONTENT ── */
.hm-page-content {
  max-width: 900px; margin: 0 auto;
  padding: 48px 24px;
}
.hm-page-content h1 {
  font-family: var(--font-head); font-size: 32px;
  font-weight: 700; color: #fff; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.hm-page-content h2 {
  font-family: var(--font-head); font-size: 20px;
  font-weight: 700; color: #fff; margin: 28px 0 12px;
}
.hm-page-content p { color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.hm-page-content a { color: var(--accent); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .hm-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-footer-grid { grid-template-columns: 1fr 1fr; }
  .hm-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hm-header-inner { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 8px; }
  .hm-search-wrap { order: 3; flex: 0 0 100%; padding-bottom: 8px; }
  .hm-search-form { max-width: 100%; }
  .hm-mob-toggle { display: block; }
  .hm-nav { display: none; }
  .hm-nav.open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999; overflow-y: auto; padding: 60px 0 20px; }
  .hm-nav-inner { flex-direction: column; padding: 0; }
  .hm-nav-item > a { height: auto; padding: 14px 20px; border-bottom: 1px solid var(--border); }
  .hm-mega { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.03); display: none; padding: 0; }
  .hm-nav-item.open .hm-mega { display: block; }
  .hm-hero-inner { grid-template-columns: 1fr; }
  .hm-hero-visual { display: none; }
  .hm-footer-grid { grid-template-columns: 1fr; }
  .hm-search-cat { display: none; }
}
@media (max-width: 480px) {
  .hm-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ══ PRODUCT PAGE: Vertical gallery thumbnail strip ══ */
.woocommerce-product-gallery {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: flex-start !important;
}
.woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 88px !important;
    flex-shrink: 0 !important;
    order: -1 !important;
    margin: 0 !important;
    overflow: visible !important;
}
.woocommerce-product-gallery .flex-control-thumbs li {
    width: 80px !important; height: 80px !important;
    float: none !important; margin: 0 !important;
    padding: 0 !important; list-style: none !important;
}
.woocommerce-product-gallery .flex-control-thumbs li img {
    width: 80px !important; height: 80px !important;
    object-fit: contain !important; border-radius: 6px !important;
    border: 2px solid rgba(255,255,255,.08) !important;
    background: #fff !important; padding: 4px !important;
    cursor: pointer !important; transition: border-color .2s !important;
}
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs li img:hover {
    border-color: #00d4ff !important;
}
.woocommerce-product-gallery figure.woocommerce-product-gallery__wrapper { flex: 1 !important; }
@media(max-width:640px){
    .woocommerce-product-gallery { flex-direction: column !important; }
    .woocommerce-product-gallery .flex-control-thumbs {
        flex-direction: row !important; width: 100% !important;
        order: 1 !important; overflow-x: auto !important;
    }
    .woocommerce-product-gallery .flex-control-thumbs li { width: 64px !important; height: 64px !important; flex-shrink: 0 !important; }
    .woocommerce-product-gallery .flex-control-thumbs li img { width: 64px !important; height: 64px !important; }
}

/* ══ HIDE SKU / Category / Tags on product page ══ */
.product_meta,
.woocommerce div.product .product_meta { display: none !important; }
