@font-face {
  font-family: 'Helvetica85Heavy';
  src: url('../files/Helvetica85-Heavy.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: #0e0e0e;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --bg4: #252525;
  --border: #2a2a2a;
  --blue: #00a8e0;
  --blue-dark: #0086b3;
  --white: #f0f0f0;
  --muted: #888;
  --green: #22c55e;
  --red: #ef4444;
  --orange: #f97316;
  --font-display: 'Helvetica85Heavy', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); font-size: 16px; line-height: 1.5; min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
h1, h2, h3, h4 { font-family: var(--font-display); text-transform: uppercase ; }
h1, h2, h3 { text-transform: uppercase; }
h1 {font-size: 48px;}
h2 {font-size: 36px; line-height: 44px;}
h3 {font-size: 24px;}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── PAGES ─── */
.page { display: none; }
.page.active { flex: 1; display: flex; flex-direction: column; max-width: 1240px; width: 100%; margin: 0 auto; }
.page.active > .footer { margin-top: auto; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #0f0f0f;
  border-bottom: 2px solid #1c1c1c;
  display: flex; align-items: center;
  padding: 0 80px; height: 80px;
}
.nav-inner { display: flex; align-items: center; gap: 24px; width: 100%; max-width: 1240px; margin: 0 auto; }
.nav-logo-img { height: 24px; width: auto; cursor: pointer; flex-shrink: 0; }
.nav-categories {
  background: #0ba5ec; color: #fff;
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  padding: 12px 18px; border-radius: 4px; display: flex; align-items: center; gap: 6px;
  white-space: nowrap; flex-shrink: 0;
}
.nav-search {
  flex: 1; position: relative;
  background: #202020; border-radius: 4px;
  display: flex; align-items: center; padding: 12px 16px; gap: 8px; height: 48px;
  box-shadow: inset 0 -2px 0 transparent; transition: box-shadow .15s, border-radius .15s;
}
.nav-search.open { box-shadow: inset 0 -2px 0 #0ba5ec; border-radius: 4px 4px 0 0; }
.nav-search input { background: none; border: none; outline: none; box-shadow: -2px 0px 0px 0px #000; color: #e2e2e2; width: 100%; font-size: 16px; }
.nav-search input::placeholder { color: #868686; }
.nav-search-clear { display: none; align-items: center; justify-content: center; cursor: pointer; color: #868686; flex-shrink: 0; }
.nav-search-clear:hover { color: #c1c1c1; }
.nav-search.has-value .nav-search-clear { display: flex; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-icon-btn { width: 48px; height: 48px; position: relative; color: #a4a4a4; transition: color .2s; cursor: pointer; padding: 14px; display: flex; align-items: center; }
.nav-icon-btn:hover { background: rgba(255,255,255,0.15); color: var(--white) ; border-radius: 4px; }
.badge {
  position: absolute; top: 4px; right: 4px;
  background: #0ba5ec; color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 10px; padding: 1px 5px; line-height: 1.4; min-width: 16px; text-align: center;
}
.nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f5f5f5; color: #717680;
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-quick { color: #e2e2e2; font-size: 16px; font-weight: 500; background: none; border: none; cursor: pointer; white-space: nowrap; font-family: var(--font-body); padding: 12px 4px; }
.nav-quick:hover { color: #fff; }
.nav-divider { width: 2px; height: 32px; background: #1c1c1c; flex-shrink: 0; }
.spin { animation: spin .8s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── ICONS ─── */
.icon { width:20px; height:20px; display:inline-block; flex-shrink:0; vertical-align:middle; fill:none;  color: currentColor; }
.icon-sm { width:16px; height:16px; }
.icon-lg { width:24px; height:24px; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #0a1520 0%, #0e1a28 50%, #0a0e10 100%);
  border-bottom: 3px solid var(--blue);
  display: grid; grid-template-columns: 1fr 280px;
  padding: 32px 24px; gap: 24px; align-items: center;
}

.hero-prod {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 4px;
  padding: 16px; text-align: center;
}


/* ─── BRANDS SECTION ─── */
.section { padding: 40px 24px; }
.section-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.section-sub { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.brands-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2px; border-radius: 4px; overflow: hidden; }
.brand-card {
  background: var(--bg3); padding: 24px; position: relative; overflow: hidden;
  cursor: pointer; transition: background .2s;
  min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end;
}
.brand-card:hover { background: var(--bg4); }
.brand-card.featured { background: linear-gradient(160deg, #0a1520 0%, #0d2035 100%); }
.brand-name { display: flex; flex-direction: column; align-content: flex-start; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; }
.brand-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }
.brand-featured-sub { font-size: 12px; color: var(--muted); margin: 8px 0; line-height: 1.5; max-width: 260px; }
.brand-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff; padding: 12px 24px; border-radius: 3px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 1px;
  margin-top: 12px; text-transform: uppercase; transition: background .2s;
}
.brand-btn:hover { background: var(--blue-dark); }
.brand-icon { font-size: 32px; margin-bottom: 12px; opacity: .7; }

/* ─── PROMOTIONS ─── */
.promo-section { padding: 0 24px 40px; }
.promo-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.view-all { color: var(--blue); font-size: 13px; display: flex; align-items: center; gap: 4px; }
.promo-table { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.promo-row {
  display: grid; grid-template-columns: 48px 1fr auto 60px 60px;
  align-items: center; gap: 16px; padding: 10px 16px;
  border-bottom: 1px solid var(--border); background: var(--bg2);
  transition: background .15s; cursor: pointer;
}
.promo-row:last-child { border-bottom: none; }
.promo-row:hover { background: var(--bg3); }
.promo-img { width: 36px; height: 36px; border-radius: 3px; background: var(--bg4); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.promo-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.sku { font-size: 14px; color: #868686; font-family: monospace; }
.stock-dot { width: 6px; height: 6px; border-radius: 50%; }
.stock-dot.green { background: var(--green); }
.stock-dot.red { background: var(--red); }
.stock-dot.orange { background: var(--orange); }
.stock-count { font-size: 11px; color: var(--muted); }
.promo-name { font-size: 13px; font-weight: 500; }
.promo-orig { font-size: 11px; color: var(--muted); text-decoration: line-through; text-align: right; }
.promo-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-align: right; color: var(--white); }
.icon-btn { width: 28px; height: 28px; border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--muted); border: 1px solid var(--border); background: var(--bg3); transition: all .15s; font-size: 14px; cursor: pointer; }
.icon-btn:hover { border-color: var(--red); color: var(--red); }
.icon-btn--cart { background: #0ba5ec; border-color: #0ba5ec; color: #fff; }
.icon-btn--cart:hover { background: #0984bd; border-color: #0984bd; color: #fff; }
.icon-btn.fav-active { border-color: var(--red); color: var(--red); }

/* ─── NEW PRODUCTS BANNER ─── */
.new-prod-banner {
  margin: 0 24px 40px;
  background: linear-gradient(110deg, var(--blue) 0%, #0055a5 100%);
  border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; padding: 32px;
}
.new-prod-text h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; text-transform: uppercase; }
.new-prod-text p { font-size: 13px; opacity: .85; margin: 8px 0 20px; max-width: 340px; }
.new-prod-btns { display: flex; gap: 10px; }
.btn-white { background: #fff; color: #000; padding: 12px 24px; border-radius: 3px; font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.btn-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 12px 24px; border-radius: 3px; font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.new-prod-visual { font-size: 64px; opacity: .8; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 32px 24px; margin-top: 40px;
  display: block; gap: 24px;
}
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.footer-col a { display: block; color: var(--muted); font-size: 13px; margin-bottom: 6px; transition: color .15s; }
.footer-col a:hover { color: var(--blue); }
.footer-contact { color: var(--muted); font-size: 13px; line-height: 1.8; }
.footer-contact strong { color: var(--white); display: block; }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;  }
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.footer-logo span { color: var(--blue); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; color: var(--muted); }

/* ─── PRODUCT LISTING ─── */
.breadcrumb { padding: 12px 24px; font-size: 14px; color: var(--muted); display: flex; -ms-flex-align: center; gap: 6px; border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--muted); height: 18px; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .bc-active { color: var(--white); font-weight: 500; }
.listing-header { padding: 20px 24px 0; display: flex; align-items: center; gap: 16px; }
.listing-header h1 { font-family: var(--font-display); font-size: 36px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; margin: 0; }
.listing-title { font-family: var(--font-display); font-size: 32px; font-weight: 800; text-transform: uppercase; }
.product-count { font-size: 14px; color: var(--muted); }
.listing-controls { display: flex; align-items: center; gap: 12px; padding: 10px 24px; flex-wrap: wrap; }
#listing-attr-filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
#listing-sort { margin-left: auto; flex-shrink: 0; }
/* ─── ATTR FILTER (subcategory page) ─── */
.attr-filter { position: relative; display: inline-block; }
.attr-filter-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 14px; border-radius: 8px;
  border: 2px solid transparent;
  background: transparent; color: rgba(255,255,255,0.55);
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}
.attr-filter.open .attr-filter-trigger,
.attr-filter.has-selection .attr-filter-trigger { border-color: #2d2d2d; color: #e2e2e2; }
.attr-filter-chevron { transition: transform 0.15s; }
.attr-filter.open .attr-filter-chevron { transform: rotate(180deg); }
.attr-filter-count { color: #e2e2e2; font-weight: 500; }
.attr-filter-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  width: 320px; background: #1c1c1c; border: 2px solid #202020;
  border-radius: 10px; box-shadow: 0 8px 10px rgba(13,13,13,0.15);
  z-index: 300; overflow: hidden;
}
.attr-filter.open .attr-filter-panel { display: block; }
.attr-filter-items { padding: 8px; max-height: 280px; overflow-y: auto; }
.attr-filter-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 6px; cursor: pointer; user-select: none;
}
.attr-filter-item:hover { background: rgba(255,255,255,0.04); }
.attr-filter-cb {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1px solid #d5d7da; background: transparent;
  flex-shrink: 0; position: relative;
  transition: background 0.1s, border-color 0.1s;
}
.attr-filter-cb.checked { background: #0ba5ec; border-color: #0ba5ec; }
.attr-filter-cb.checked::after {
  content: ''; position: absolute;
  top: 2px; left: 4px; width: 5px; height: 8px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.attr-filter-item-label { flex: 1; font-size: 14px; font-weight: 500; color: #e2e2e2; }
.attr-filter-item-count { font-size: 13px; color: #868686; }
.attr-filter-footer {
  display: flex; gap: 8px; padding: 10px;
  border-top: 1px solid #2d2d2d;
}
.attr-filter-cancel {
  flex: 1; padding: 9px 14px; border-radius: 8px;
  border: 2px solid #2d2d2d; background: #202020;
  color: #e2e2e2; font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: opacity 0.15s;
}
.attr-filter-cancel:hover { opacity: 0.8; }
.attr-filter-apply {
  flex: 1; padding: 9px 14px; border-radius: 8px;
  border: none; background: #0ba5ec;
  color: #fff; font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: opacity 0.15s;
}
.attr-filter-apply:hover { opacity: 0.88; }
.toggle-wrap { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; font-size: 14px; font-weight: 500; color: var(--white); }
.toggle { position: relative; width: 36px; height: 16px; background: #2d2d2d; border-radius: 9999px; flex-shrink: 0; transition: background 0.2s; }
.toggle-knob { position: absolute; top: 50%; left: -6px; transform: translateY(-50%); width: 24px; height: 24px; background: #e2e2e2; border-radius: 9999px; transition: left 0.2s; box-shadow: 0 1.6px 4.8px rgba(10,13,18,0.15); }
.toggle.on { background: #0ba5ec; }
.toggle.on .toggle-knob { left: calc(100% - 18px); }
.category-tabs { display: flex; gap: 8px; padding: 16px 24px; overflow-x: auto; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.subcat-tabs { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 24px 14px; }
.subcat-tab { font-size: 13px; font-weight: 500; color: var(--muted); background: var(--bg2); border: 1px solid var(--border); padding: 4px 12px; border-radius: 3px; cursor: pointer; transition: color .15s, border-color .15s, background .15s; white-space: nowrap; }
.subcat-tab:hover { color: var(--white); border-color: #555; }
.subcat-tab.active { color: var(--white); background: var(--bg3); border-color: var(--blue); }
/* Listing category cards */
.category-tabs .cat-tab {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 8px;
  width: 140px; min-width: 140px; height: 172px;
  padding: 12px 8px; background: #1c1c1c; border-bottom: 2px solid transparent;
  cursor: pointer; transition: background .15s, border-color .15s;
  text-align: center; flex-shrink: 0;
}
.category-tabs .cat-tab.active  { background: #2d2d2d; border-bottom-color: #0ba5ec; }
.category-tabs .cat-tab:hover:not(.active) { background: #2d2d2d; border-bottom-color: #0ba5ec; }
.cat-tab-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; color: #a4a4a4; }
.cat-tab-label { font-size: 14px; font-weight: 500; color: #a4a4a4; line-height: 1.4; }
.category-tabs .cat-tab.active  .cat-tab-label,
.category-tabs .cat-tab:hover:not(.active) .cat-tab-label { color: #868686; }
.category-tabs .cat-tab.active  .cat-tab-icon,
.category-tabs .cat-tab:hover:not(.active) .cat-tab-icon { color: #fff; }
.cat-icon { font-size: 22px; display: flex; }
.product-list { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin: 0 24px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 24px; }
.page-btn { min-width: 36px; height: 36px; padding: 0 10px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg2); color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s, border-color .15s; }
.page-btn:hover:not(:disabled):not(.active) { background: var(--bg3); color: var(--white); border-color: #555; }
.page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); cursor: default; }
.page-btn:disabled { opacity: 0.3; cursor: default; }
.page-ellipsis { min-width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; }
.product-row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  height: 88px;
  cursor: pointer;
  transition: filter .15s;
}
.product-row:hover { background: #2D2D2D; filter: brightness(1.12); box-shadow: 0px -2px 0px 0px #0BA5EC inset; }
.product-row.selected { background: var(--bg3); border-left: 3px solid var(--blue); padding-left: 21px; }
.prod-img { width: 56px; height: 56px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; overflow: hidden; }
.prod-sku-line { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.prod-name { font-size: 16px; font-weight: 500; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-name:hover { color: var(--blue); }
.out-badge { font-size: 10px; color: var(--muted); border: 1px solid var(--border); padding: 1px 6px; border-radius: 2px; }
.prod-price-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; white-space: nowrap; }
.prod-orig { font-size: 14px; color: #868686; text-decoration: line-through; }
.prod-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-align: right; white-space: nowrap; }
.prod-sale-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.06em; color: #fff; background: #e53e3e; padding: 1px 5px; border-radius: 2px; align-self: flex-end; }
.show-more {
  margin: 16px 0; border: 1px solid var(--border); border-radius: 3px; width: 100%;
  padding: 12px; color: var(--muted); font-size: 13px; background: var(--bg2);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; transition: all .15s;
}
.show-more:hover { border-color: var(--blue); color: var(--blue); }
.pagination { display: flex; gap: 4px; justify-content: center; padding: 16px 0; }
.page-btn {
  width: 32px; height: 32px; border-radius: 3px; display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border); color: var(--muted); font-size: 13px; cursor: pointer;
}
.page-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.page-btn:hover:not(.active) { border-color: var(--blue); color: var(--white); }

/* ─── PRODUCT DETAIL ─── */
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 24px; }
.gallery-main { background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; aspect-ratio: 1; position: relative; overflow: hidden; }
.gallery-main-view { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 100px; color: #555; transition: opacity .25s ease; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.gallery-thumb { width: 60px; height: 60px; background: var(--bg3); border: 2px solid var(--border); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; transition: border-color .15s; }
.gallery-thumb.active { border-color: var(--blue); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: rgba(0,0,0,.5); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); cursor: pointer; }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.prod-id-line { display: flex; gap: 16px; font-size: 14px; font-weight: 400; color: var(--muted); margin-bottom: 12px; }
.prod-id-line span { display: flex; align-items: center; gap: 6px; }
.prod-id-line span strong {color: var(--white);}
.prod-detail-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.avail { display: flex; align-items: center; gap: 8px; }
.detail-price { font-family: var(--font-display); font-size: 40px; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 16px; }
.add-to-cart-row { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 3px; background: var(--bg3); overflow: hidden; }
.qty-btn { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--white); background: var(--bg4); cursor: pointer; transition: background .15s; }
.qty-btn:hover { background: rgba(255,255,255,0.10); }
.qty-input { width: 48px; height: 40px; border: none; background: none; color: var(--white); text-align: center; font-size: 15px; font-family: var(--font-body); outline: none; -moz-appearance: textfield; appearance: textfield; }
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.btn-atc {
  flex: 1; background: var(--blue); color: #fff; border-radius: 4px; padding: 12px 24px;
  font-family: var(--font-display); font-weight: 500; font-size: 16px; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px; 
  transition: background .2s; cursor: pointer; border: none;
}
.btn-atc:hover { background: var(--blue-dark); }
.btn-atc:disabled { background: var(--bg3); color: var(--muted); cursor: not-allowed; opacity: 0.6; }
.btn-wish { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 3px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--muted); cursor: pointer; transition: all .15s; }
.btn-wish:hover, .btn-wish.active { border-color: var(--red); color: var(--red); }
.size-label { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; margin-top: 24px; }
.size-options { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.size-btn { padding: 6px 12px; border: 1px solid var(--border); font-size: 14px; color: var(--muted); cursor: pointer; background: var(--bg3); transition: all .15s; }
.size-btn:hover {border-color: var(--white); color: var(--Primitives-Gray-Gray-25); background: var(--border); }
.size-btn.active { border-color: var(--white); color: var(--bg); background: var(--white); }
.detail-specs {  border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.spec-row { display: flex; padding: 16px 0px; border-bottom: 1px solid var(--border); font-weight: 400;}
.spec-label { color: var(--muted); min-width: 240px; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5; font-weight: 400; vertical-align: middle;}
.spec-val { color: var(--Primitives-Gray-Gray-25, #E2E2E2); align-content: center;}
.spec-val a {  color: var(--Primitives-Gray-Gray-25, #E2E2E2); font-size: 16px; text-decoration-line: underline; }
.desc-section { margin-top: 24px; }
.desc-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.desc-text { color: var(--muted); font-size: 16px; line-height: 1.5; }

/* ─── FAQ ACCORDION ─── */
.faq-section { padding: 0 24px 40px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-left h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; }
.faq-left p { color: var(--muted); font-size: 13px; margin-top: 8px; }
.faq-left a { color: var(--blue); }

.acc-item { border-bottom: 1px solid var(--border); }
.acc-header { padding: 14px 0px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px !important; transition: background .15s; }
.acc-toggle { font-size: 18px; color: var(--blue); }
.acc-body { padding: 0 16px 14px; color: var(--muted); font-size: 14px; display: none; }
.acc-body.open { display: block; font-size: 14px;}

/* ─── FAQ SECTION (detail page) — matches home FAQ style ─── */
.faq-section .accordion { display: flex; flex-direction: column; gap: 16px;  }
.faq-section .acc-item { background: #202020; border-bottom: none; overflow: hidden; cursor: pointer; padding: 20px; }
.faq-section .acc-item:hover { background: #252525; box-shadow: 0px -2px 0px 0px #0BA5EC inset; }
.faq-section .acc-header { padding: 22px 32px; font-size: 16px; font-weight: 500; color: #fff; letter-spacing: 0.25px; }
.faq-section .acc-header:hover { background: transparent; }
.faq-section .acc-toggle { font-size: 22px; color: #fff; }
.faq-section .acc-body { padding: 0 32px 32px; color: #868686; font-size: 16px; line-height: 1.6; }

/* ─── RELATED PRODUCTS ─── */
.related-section { padding: 96px 0px;  gap: 24px; }
.related-title { margin-bottom: 24px; }

/* ─── CART ─── */
.cart-layout { display: flex; gap: 24px; padding: 40px 0px 96px 0px; align-items: start; }
.cart-left {width: 936px;}
.cart-title { font-family: var(--font-display);}
.cart-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px;}
.clear-btn { color: var(--muted);  display: flex; align-items: center; gap: 4px; cursor: pointer; margin-left: auto; }
.clear-btn:hover { color: var(--red); }
.cart-table { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.cart-row { font-size:14px !important; display: grid; grid-template-columns: 52px 1fr auto 120px auto; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--bg2); }
.cart-row:last-child { border-bottom: none; }
.cart-orig { font-size: 11px; color: var(--muted); text-decoration: line-through; text-align: right; }
.cart-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-align: right; }
.summary-cards { display: flex; flex-direction: column; width: 320px; position: sticky; top: 68px; align-self: flex-start; gap: 8px; padding: 0px 16px; flex-shrink: 0; }
.summary-details {
  background: var(--bg2);
  padding: 24px;
}
.summary-row {  display: flex; justify-content: space-between; padding: 8px 0px; font-size: 14px; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-label { color: var(--muted); text-transform: uppercase; font-size: 14px; letter-spacing: 1.5; }
.summary-val { font-weight: 500; }
.summary-val.discount { color: var(--muted); }
.summary-val.muted { color: var(--muted); font-size: 14px; }
.summary-total { display: flex; justify-content: space-between; padding: 14px 0; margin-top: 4px; }
.total-label { font-family: var(--font-display); font-size: 14px; font-weight: 400; text-transform: uppercase; color: var(--muted); }
.total-val { font-family: var(--font-display); font-size: 14px; font-weight: 800; }
.btn-checkout {
  width: 100%; background: var(--blue); color: #fff; padding: 12px 24px; border-radius: 3px;
  font-family: var(--font-display); font-size: 16px; font-weight: 500; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; border: none; transition: background .2s; margin-top: 12px;
}
.btn-checkout:hover { background: var(--blue-dark); }
.summary-faq { margin-top: 16px; }
/* ─── CHECKOUT LAYOUT ─── */
.co-layout { display: flex; flex-direction: column; min-height: 100vh; }
.co-body { display: flex; gap: 48px; align-items: start; flex: 1; }
.co-left { flex: 1; min-width: 0; padding-bottom: 64px; }

/* ─── SHIPPING OPTIONS ─── */
.ship-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.ship-option {
  border: 2px solid var(--border); border-radius: 3px; padding: 20px 24px;
  cursor: pointer; transition: all .15s; display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 400; color: var(--muted);
}
.ship-option:hover { background: rgba(255,255,255,0.05); }
.ship-option.selected { border-color: var(--blue); background: #00a8e010; color: var(--white); }
.radio-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; position: relative; }
.ship-option.selected .radio-dot { border-color: var(--blue); }
.ship-option.selected .radio-dot::after { content: ''; position: absolute; top: 2px; left: 2px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

/* ─── FORMS ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; margin-top: 24px; }
.form-label { font-size: 14px; color: var(--white); font-weight: 500; }
.form-label span { color: var(--red); }
.form-input, .form-select, .form-textarea {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 3px;
  padding: 24px; color: var(--white); font-size: 14px; outline: none;
  transition: border-color .15s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }

/* ─── ADDRESS CARDS ─── */
.address-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.addr-card { border: 2px solid var(--border); border-radius: 3px; padding: 16px; cursor: pointer; transition: all .15s; font-size: 14px; line-height: 1.6; }
.addr-card:hover { border-color: var(--blue); }
.addr-card.selected { border-color: var(--blue); background: #00a8e010; }
.addr-card-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.addr-card-inner .radio-dot { flex-shrink: 0; margin-top: 2px; }
.addr-card-title { font-weight: 500; color: var(--white); margin-bottom: 4px; }

/* ─── MISC ─── */
.info-icon { width: 18px; height: 18px; border-radius: 50%; color: var(--muted); font-size: 11px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-place {
  width: 100%; background: var(--blue); color: #fff; padding: 14px 24px;
  border-radius: 3px; font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: 0.5px;  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; border: none; transition: background .2s;
  margin-top: 12px;
}
.btn-place:hover { background: var(--blue-dark); }

/* ─── CARRIER DROPDOWN ─── */
.carrier-dd { position: relative; margin-bottom: 16px; }
.carrier-dd-btn { display: flex; align-items: center; justify-content: space-between; background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 24px 24px; color: var(--white); font-size: 14px; cursor: pointer; transition: border-color .15s; width: 100%; text-align: left; }
.carrier-dd-btn:hover, .carrier-dd.open .carrier-dd-btn { border-color: var(--blue); }
.carrier-dd-arrow { transition: transform .15s; color: var(--muted); display: flex; }
.carrier-dd.open .carrier-dd-arrow { transform: rotate(180deg); }
.carrier-dd-panel { display: none; position: absolute; top: calc(100% + 2px); left: 0; right: 0; background: var(--bg2); border: 1px solid var(--blue); border-radius: 3px; z-index: 100; padding: 16px; }
.carrier-dd.open .carrier-dd-panel { display: block; }
.carrier-dd-search { display: flex; align-items: center; gap: 8px; padding: 16px 12px; border-bottom: 1px solid var(--border); background: var(--bg3); }
.carrier-dd-search input { background: none; border: none; outline: none; color: var(--white); font-size: 14px; flex: 1; }
.carrier-dd-search input::placeholder { color: var(--muted); }
.carrier-dd-list { max-height: 220px; overflow-y: auto; }
.carrier-dd-opt { padding: 16px 16px; font-size: 14px; cursor: pointer; color: var(--bg1); }
.carrier-dd-opt:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.carrier-dd-opt.hidden { display: none; }

/* ─── TOAST ─── */
.toast {
  position: fixed; top: calc(80px + 12px); right: 24px; z-index: 9999;
  background: var(--bg2); border: 1px solid var(--blue); border-radius: 4px;
  padding: 12px 20px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; box-shadow: 0 4px 20px rgba(0,168,224,.2);
  transform: translateY(-80px); opacity: 0; transition: all .3s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast-icon { font-size: 18px; }

/* ─── SYNC MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 200;
  display: none; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 6px;
  padding: 28px; width: 480px; max-width: 90vw;
}
.modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.modal-sub { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.modal-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.modal-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.modal-input { background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 12px; color: var(--white); font-size: 16px; outline: none; width: 100%; }
.modal-input:focus { border-color: var(--blue); }
.modal-btns { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.modal-cancel { padding: 8px 20px; border: 1px solid var(--border); border-radius: 3px; color: var(--muted); font-size: 13px; cursor: pointer; background: none; }
.modal-cancel:hover { border-color: var(--white); color: var(--white); }
.modal-confirm { padding: 8px 20px; background: var(--blue); border: none; border-radius: 3px; color: #fff; font-size: 13px; font-weight: 500; cursor: pointer; }
.modal-confirm:hover { background: var(--blue-dark); }
.sync-log { background: var(--bg); border-radius: 3px; padding: 12px; margin-top: 14px; font-size: 11px; font-family: monospace; color: var(--green); max-height: 140px; overflow-y: auto; line-height: 1.8; }

/* ─── TYPOGRAPHY PAGE ─── */
.typo-page { background: #0f0f0f; min-height: 100vh; }

.typo-header {
  background: #202020;
  padding: 32px;
}
.typo-header-inner {
  background: #171717;
  padding: 64px 48px;
  display: flex;
  align-items: center;
}
.typo-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.typo-body {
  background: #0f0f0f;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.typo-row {
  display: grid;
  grid-template-columns: 154px 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
}
.typo-col-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #a4a4a4;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
.typo-col-header {
  padding: 10px;
  color: #a4a4a4;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
.typo-cell {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.typo-sample {
  color: #fff;
}
.typo-spec {
  color: #a4a4a4;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

/* Sample font styles — Roboto (Figma design system) */
.ts-roboto-bold { font-family: 'Roboto', sans-serif; font-weight: 700; }
.ts-roboto-semibold { font-family: 'Roboto', sans-serif; font-weight: 500; }
.ts-roboto-regular { font-family: 'Roboto', sans-serif; font-weight: 400; }
/* legacy aliases kept for compatibility */
.ts-helvetica { font-family: 'Helvetica85Heavy', sans-serif; font-weight: 700; }
.ts-inter-bold { font-family: 'Roboto', sans-serif; font-weight: 700; }
.ts-inter-semibold { font-family: 'Roboto', sans-serif; font-weight: 500; }
.ts-inter-regular { font-family: 'Roboto', sans-serif; font-weight: 400; }

/* H1 */
.ts-h1-desktop { font-size: 48px; line-height: 60px; letter-spacing: -0.02em; font-family: var(--font-display); }
.ts-h1-tablet  { font-size: 40px; line-height: 52px; letter-spacing: -0.02em; }
.ts-h1-mobile  { font-size: 32px; line-height: 40px; letter-spacing: -0.02em; }
/* H2 */
.ts-h2-desktop { font-size: 36px; line-height: 44px; letter-spacing: -0.02em; text-transform: uppercase;}
.ts-h2-tablet  { font-size: 32px; line-height: 40px; letter-spacing: -0.02em; }
.ts-h2-mobile  { font-size: 28px; line-height: 36px; letter-spacing: -0.02em; }
/* H3 */
.ts-h3-desktop { font-size: 24px; line-height: 32px; }
.ts-h3-tablet  { font-size: 22px; line-height: 30px; letter-spacing: -0.02em; }
.ts-h3-mobile  { font-size: 22px; line-height: 30px; letter-spacing: -0.02em; }
/* H4 */
.ts-h4 { font-size: 16px; line-height: 24px; }
/* H5 / Body */
.ts-16-24 { font-size: 16px; line-height: 24px; }
/* Tags */
.ts-14-20 { font-size: 14px; line-height: 20px; }
.ts-12-18 { font-size: 12px; line-height: 18px; }
/* Big button */
.ts-18-28 { font-size: 18px; line-height: 28px; }

/* ═══════════════════════════════════════════
   HOME PAGE SECTIONS
════════════════════════════════════════════ */

/* ─── HOME BANNER ─── */
.home-banner { position: relative; height: 400px; overflow: hidden; }
.home-banner-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease; cursor: pointer; z-index: 0;
}
.home-banner-slide.active { opacity: 1; z-index: 1; }
.home-banner-slide > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(179.57deg, rgba(0,0,0,0) 1.11%, rgba(3,174,237,0.2) 98.49%);
  pointer-events: none;
}
.home-banner-controls {
  position: absolute; bottom: 24px; right: 24px;
  display: flex; align-items: center; gap: 8px; z-index: 3;
}
.home-banner-slider {
  display: flex; align-items: center; gap: 8px; width: 160px; height: 4px; margin-right: 8px;
}
.home-banner-dot {
  flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.3); cursor: pointer; position: relative;
}
@keyframes bannerProgress { from { width: 0; } to { width: 100%; } }
.home-banner-dot.active { background: rgba(255,255,255,0.3); }
.home-banner-dot.active::before {
  content: ''; position: absolute; left: 0; top: 0; height: 4px;
  background: #fff; border-radius: 2px;
  animation: bannerProgress 5s linear forwards;
}
.home-banner-arrow-btn {
  width: 40px; height: 40px; background: #fff; border: 1px solid #d5d7da; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: #111;
  box-shadow: 0 1px 2px rgba(10,13,18,0.05); flex-shrink: 0;
}
.home-banner-arrow-btn:hover { background: #f0f0f0; }

/* ─── HOME SECTION BASE ─── */
.home-section { padding: 96px 0 96px 0; background: #0f0f0f; }
.home-section-alt { padding: 96px max(80px, calc(50% - 620px)); background: #0a0a0a; }
.home-section-heading {
  font-size: 48px; font-weight: 700; text-transform: uppercase;
  color: #fff; letter-spacing: -0.96px; margin-bottom: 8px; line-height: 1.1;
}
.home-section-sub {
  color: #a4a4a4; font-size: 16px; margin-bottom: 48px; line-height: 1.5;
}

/* ─── HOME BRANDS ─── */
.home-brands-grid {
  display: flex; gap: 16px; height: 500px; overflow: hidden;
}
.home-brand-card {
  flex: 1; min-width: 144px;
  position: relative; overflow: hidden; cursor: pointer;
    filter: grayscale(100%);
  transition: flex 0.45s ease;
}
.home-brand-card.active { flex: 4;  filter: grayscale(0%); }
.home-brand-card > img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s;
}
.home-brand-card:hover > img { transform: scale(1.03); }
/* Narrow overlay — flat dark tint */
.brand-overlay-narrow {
  position: absolute; inset: 0; background: rgba(13,14,14,0.4);
  transition: opacity 0.3s;
}
.home-brand-card.active .brand-overlay-narrow { opacity: 0; }
/* Featured overlay — bottom gradient */
.brand-overlay-featured {
  position: absolute; inset: 0;
  background: linear-gradient(185.8deg, rgba(0,0,0,0) 6.6%, rgba(0,0,0,0.88) 88.5%);
  opacity: 0; transition: opacity 0.35s;
}
.home-brand-card.active .brand-overlay-featured { opacity: 1; }
/* Brand name shown in narrow state */
.brand-name {
  position: absolute; bottom: 20px; left: 20px; gap:8px;
  color: #fff; font-weight: 800; font-size: 16px; text-transform: uppercase; white-space: nowrap;
  transform: translateY(0); opacity: 1;
  transition: opacity 0.25s, transform 0.3s; pointer-events: none;
}
.home-brand-card.active .brand-name { opacity: 0; transform: translateY(12px); }
.brand-coming-soon {
  display: inline-block; vertical-align: middle;
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: #969696; background: var(--bg2);
  border-radius: 4px; padding: 4px 8px; 
  white-space: nowrap;
}
/* Featured content — title + desc + button */
.brand-content {
  position: absolute; bottom: 0px;
  width: 100%;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.15s, transform 0.15s; pointer-events: none;
}

.brand-content h3{
  padding-left: 32px;
}

.home-brand-card.active .brand-content {
  opacity: 1; transform: translateY(0); pointer-events: auto;
  transition: opacity 0.35s 0.35s, transform 0.4s 0.3s;
}
.brand-content-title {
  padding-left: 32px;
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  text-transform: uppercase; color: #fff; margin-bottom: 8px;
}
.brand-content-desc {
  padding-left: 32px;
  font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.5;
  margin-bottom: 20px;
}
.brand-content-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;

  background: #0ba5ec; color: #fff; border: none;
  padding: 16px 22px; 
  font-weight: 500; font-size: 18px; cursor: pointer;
  box-shadow: 0 1px 2px rgba(10,13,18,0.05),
              inset 0 0 0 1px rgba(10,13,18,0.18),
              inset 0 -2px 0 rgba(10,13,18,0.05);
}
.brand-content-btn:hover { background: #0993d4; }
.brand-content-btn--soon { background: var(--bg2); color: #969696; cursor: default; }
.brand-content-btn--soon:hover { background: var(--bg2); }

/* ─── HOME PROMOTIONS ─── */
.home-promo-section { padding: 96px 0 96px 0; background: #0f0f0f; }
.home-promo-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px;
}
.home-promo-heading {
  font-size: 36px; font-weight: 700; color: #fff; letter-spacing: -0.72px; text-transform: uppercase;
}
.home-view-all {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  color: #e2e2e2; font-size: 14px; font-weight: 500;
  background: none; font-family: var(--font-body); transition: border-color .15s;
}
.home-view-all:hover { border-color: #0ba5ec; color: var(--white); background-color: #2D2D2D; border-radius: 4px; }
.home-promo-rows { border-radius: 4px; overflow: hidden; }
.home-promo-row {
  display: grid;
  grid-template-columns: 72px 1fr auto 80px;
  align-items: center; gap: 20px; padding: 0 24px; height: 88px;
  cursor: pointer; transition: filter .15s;
}

.home-promo-row:hover           { background: #2D2D2D; filter: brightness(1.12);   box-shadow: 0px -2px 0px 0px #0BA5EC inset}
.home-promo-thumb {
  width: 56px; height: 56px; border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.home-promo-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.home-promo-thumb .emoji { font-size: 28px; }
.home-promo-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.home-promo-meta { display: flex; align-items: center; gap: 8px; }
.home-promo-sku  { color: #868686; font-size: 14px; font-family: monospace; }
.home-promo-stock-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.home-promo-stock-dot.low { background: #f97316; }
.home-promo-name { font-size: 16px; font-weight: 500; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-promo-prices { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.home-promo-orig  { font-size: 14px; color: #868686; text-decoration: line-through; }
.home-promo-price { font-size: 16px; font-weight: 700; color: #fff; }
.home-promo-actions { display: flex; gap: 8px; flex-shrink: 0; }
.home-promo-heart {
  width: 36px; height: 36px; border-radius: 4px; background: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: #a4a4a4; font-size: 18px;
  transition: all .15s; font-family: var(--font-body);
}
.home-promo-heart:hover, .home-promo-heart.fav-active { border-color: #2D2D2D; }
.home-promo-heart:hover {background: gray; color: var(--white);}
.home-promo-cart-wrap { position: relative; display: inline-flex; }
.home-promo-cart {
  width: 36px; height: 36px; border-radius: 4px; border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: #a4a4a4; font-size: 18px;
  transition: background .15s; font-family: var(--font-body);
}
.home-promo-cart:hover { background: #0984bd; color: var(--white); }
.home-promo-cart:disabled { opacity: 0.35; cursor: not-allowed; background: none; color: var(--muted); }
.home-promo-cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: #0ba5ec; color: #fff; font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 100px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
  pointer-events: none;
}

/* ─── HOME NEW PRODUCTS BANNER ─── */
.home-new-products-banner {
  position: relative;
  background: #0984bd;
  width: 100vw;
  max-width: 1240px;
  padding: 96px 80px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 280px;
}

.home-new-products-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
  flex-shrink: 0;
}
.home-new-products-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home-new-products-text { display: flex; flex-direction: column; gap: 8px; }
.home-new-products-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.72px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.home-new-products-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
  margin: 0;
}
.home-new-products-btns { display: flex; gap: 8px; align-items: center; }
.hnp-btn-primary {
  flex: 1;
  background: #fff; color: #000; border: none; border-radius: 4px;
  padding: 10px 16px; font-size: 16px; font-weight: 400;
  font-family: var(--font-body); cursor: pointer;
  transition: background .15s;
}
.hnp-btn-primary:hover { background: #f0f0f0; }
.hnp-btn-secondary {
  flex: 1;
  background: #202020; color: #e2e2e2; border: 2px solid #2d2d2d; border-radius: 4px;
  padding: 10px 16px; font-size: 16px; font-weight: 400;
  font-family: var(--font-body); cursor: pointer;
  transition: background .15s;
}
.hnp-btn-secondary:hover { background: #2a2a2a; }
.home-new-products-img-wrap {
  position: absolute;
  scale:1.2;
  margin-top: 130px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 120%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.home-new-products-img {
  width: auto;
  height: 130%;
  max-height: 560px;
  object-fit: contain;
  transform: rotate(-10.21deg);
  display: block;
  position: relative;
  right: -40px;
}

/* ─── HOME FAQ ─── */
.home-faq-section { padding: 96px 0 96px 0; background: #0f0f0f; }
.home-faq-section .home-section-heading { margin-bottom: 0; }
.home-faq-grid {
  display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start;
}
.home-faq-left { padding-top: 4px; }
.home-faq-heading {
  font-size: 36px; font-weight: 700; text-transform: uppercase;
  color: #fff; letter-spacing: -0.72px; margin-bottom: 20px; line-height: 1.15;
}
.home-faq-sub { color: #868686; font-size: 16px; line-height: 1.6; margin-top: 8px; }
.home-faq-sub a { color: #0ba5ec; }
.home-faq-accordion { display: flex; flex-direction: column; gap: 8px; }
.home-faq-item { background: #161616; overflow: hidden; }
.home-faq-item:hover {background: #252525; box-shadow: 0px -2px 0px 0px #0BA5EC inset }
.home-faq-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 32px; cursor: pointer; font-size: 14px; font-weight: 500; color: #fff; letter-spacing: 0.25px;
  transition: background .15s;
}

/*.home-faq-item.open .home-faq-header { border-bottom: 2px solid #0ba5ec; }*/

.home-faq-toggle { font-size: 22px; color: var(--white); flex-shrink: 0; line-height: 1; }
.home-faq-body {
  display: none; padding: 0 32px 32px  32px; color: #868686; font-size: 16px; line-height: 1.6;
}
.home-faq-item.open .home-faq-body { display: block; }

/* ─── HOME BLOG ─── */
.home-blog-section { padding: 96px 0 96px 0 ; background: #0f0f0f; }
.home-blog-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px;
}
.home-blog-header-left .home-section-sub { margin-bottom: 0; width: 400px; }
.home-section-sub {margin-top: 8px;}
.home-blog-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.home-blog-arrow-btn {
  width: 36px; height: 36px; background: #202020; border-radius: 4px; border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: #e2e2e2; font-size: 16px; font-family: var(--font-body); transition: background .15s;
}
.home-blog-arrow-btn:hover { background: #2d2d2d; }
.home-blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.home-blog-card {
  display: flex; flex-direction: column; border-radius: 4px;
  overflow: hidden; cursor: pointer; transition: transform .2s;
}
.home-blog-card:hover { transform: translateY(-3px); }
.home-blog-card-img { height: 240px; overflow: hidden; background: #2d2d2d; flex-shrink: 0; }
.home-blog-card-img img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .3s; }
.home-blog-card:hover .home-blog-card-img img { transform: scale(1.04); }
.home-blog-card-content { padding: 24px 0px 0px 0px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.home-blog-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.home-blog-card-tag {
  background: #062C41; color: #9DDBF7; font-size: 14px; font-weight: 400;
  padding: 2px 10px; border-radius: 4px; 
}
.home-blog-card-title {
  font-size: 22px; font-weight: 700; text-transform: uppercase;
  color: #fff; line-height: 1.2; transition: color .2s;
}
.home-blog-card:hover .home-blog-card-title { color: #0ba5ec; }
.home-blog-card-body {
  color: #a4a4a4; font-size: 16px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.home-blog-card-cta {
  opacity: 0; visibility: hidden;
  color: #0ba5ec; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  transition: opacity .2s, visibility .2s;
}
.home-blog-card:hover .home-blog-card-cta { opacity: 1; visibility: visible; }

/* ─── HOME FOOTER ─── */
.footer {
  background: #0f0f0f; position: relative; overflow: hidden;
  padding: 80px max(80px, calc(50% - 620px)) 0;
  width: 100vw; margin-left: calc(50% - 50vw);
}
.footer-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .06;
}
.footer-logo{
  height:28px;
}
.footer-bg img { width: 100%; height: 100%; object-fit: cover; }
.footer-columns {
  max-width: 1240px;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 280px; gap: 40px;
  margin: 64px auto; position: relative; z-index: 1;
}
.footer-col h4 {
  font-size: 14px; font-weight: 500; text-transform: uppercase;
  color: #a4a4a4; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: #c1c1c1; font-size: 16px; font-weight: 500; margin-bottom: 12px; cursor: pointer;
}
.footer-col a:hover { color: #0ba5ec; }
.footer-col a.blue { color: #0ba5ec; }
.footer-contact {
  background: #171717; padding: 24px; border-radius: 4px;
}
.footer-contact-email,
.footer-contact-phone { color: #e2e2e2; font-weight: 700; font-size: 16px; margin-bottom: 6px; display: block; }
.footer-contact-address { color: #868686; font-size: 14px; line-height: 1.5; margin-top: 8px; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  border-top: 2px solid #202020; padding: 32px 0 48px;
  display: flex; align-items: flex-end; justify-content: space-between;
  position: relative; z-index: 1;
}
.footer-logo-text { font-size: 20px; font-weight: 800; color: #e2e2e2; letter-spacing: 1px; }
.footer-logo-text span { color: #0ba5ec; }
.footer-bottom-links { display: flex; gap: 24px; align-items: center; }
.footer-bottom-links a, .footer-bottom-links span { color: #a4a4a4; font-size: 14px; cursor: pointer; }
.footer-bottom-links a:hover { color: #c1c1c1; }

/* ─── QUICK ADD ─── */
.quick-add-panel { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 12px; background: var(--bg2); }
.quick-add-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; cursor: pointer; user-select: none; }
.quick-add-header h3 {font-size: 18px;}
.quick-add-title { font-family: var(--font-display); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.quick-add-body { padding: 0 20px 20px; }
.quick-add-row { display: flex; align-items: center; gap: 10px; }
.quick-search-wrap { flex: 1; display: flex; align-items: center; gap: 8px; background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 16px 16px; position: relative; }
.quick-search-wrap input { flex: 1; background: none; border: none; outline: none; color: var(--white); font-size: 16px; }
.quick-search-wrap input::placeholder { color: var(--muted); }
.qa-clear-btn { background: none; border: none; color: var(--muted); cursor: pointer; display: none; align-items: center; justify-content: center; flex-shrink: 0; padding: 0; line-height: 0; }
.qa-clear-btn:hover { color: var(--white); }
.qa-clear-btn.visible { display: flex; }
.qa-dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #1c1c1c; border: 1px solid var(--border); z-index: 200; overflow: hidden; box-shadow: 0 8px 16px rgba(0,0,0,0.4); }
.qa-dropdown.open { display: block; }
.qa-result-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; cursor: pointer; border-bottom: 1px solid var(--border); }
.qa-result-row:hover { background: #2d2d2d; }
.qa-result-row:last-child { border-bottom: none; }
.qa-result-thumb { width: 36px; height: 36px; background: #2d2d2d; border-radius: 3px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.qa-result-thumb img { width: 100%; height: 100%; object-fit: contain; }
.qa-result-name { flex: 1; font-size: 16px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.qa-match { color: var(--white); font-weight: 700; font-style: normal; }
.qa-result-id { font-size: 14px; color: #696969; flex-shrink: 0; }
.btn-add-product { height: 48px; background: var(--blue); color: #fff; border: none; border-radius: 3px; padding: 12px 20px; font-family: var(--font-display); font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap; }
.btn-add-product:hover { background: var(--blue-dark); }
.quick-add-sub-label { font-size: 16px; font-weight: 500; color: var(--white); margin: 16px 0 10px; }
/* ─── ADD CSV ─── */
.csv-section-body { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.csv-drop-zone { border: 1px dashed var(--border); border-radius: 4px; padding: 20px 16px 0; background: var(--bg3); display: flex; flex-direction: column; }
.csv-drop-zone.drag-over { border-color: var(--blue); background: #00a8e010; }
.csv-drop-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding-bottom: 16px; }
.csv-drop-icon { color: var(--blue); margin-bottom: 4px; }
.csv-drop-title { font-family: var(--font-display); font-size: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.csv-drop-sub { font-size: 14px; color: var(--muted); line-height: 1.5; }
.csv-drop-sub a { color: var(--blue); cursor: pointer; text-decoration: none; }
.csv-drop-size { font-size: 14px; color: var(--muted); }
.csv-file-preview { display: none; flex-direction: column; gap: 8px; padding: 12px 0; }
.csv-file-preview.visible { display: flex; }
.csv-file-info { display: flex; align-items: center; gap: 10px; }
.csv-file-badge { width: 36px; height: 36px; background: #22a055; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 9px; font-weight: 800; color: #fff; letter-spacing: 0.5px; flex-shrink: 0; }
.csv-file-name { font-size: 14px; font-weight: 500; }
.csv-file-size { font-size: 14px; color: var(--muted); }
.csv-progress-wrap { display: flex; align-items: center; gap: 8px; }
.csv-progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.csv-progress-fill { height: 100%; background: var(--blue); border-radius: 2px; transition: width .4s ease; }
.csv-progress-pct { font-size: 11px; color: var(--muted); flex-shrink: 0; width: 32px; text-align: right; }
.csv-upload-btn { width: 100%; background: var(--blue); color: #fff; border: none; border-radius: 3px; padding: 11px; font-family: var(--font-display); font-size: 14px; font-weight: 500; cursor: pointer; margin-top: 12px; display: block; }
.csv-upload-btn:hover { background: var(--blue-dark); }
.csv-instructions { display: flex; flex-direction: column; font-size: 13px; }
.csv-step { font-size: 14px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); }
.csv-step:last-of-type { border-bottom: none; }
.csv-links { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.csv-link { font-size: 14px; color: var(--muted); cursor: pointer; text-decoration: underline; display: flex; align-items: flex-start; gap: 5px; line-height: 1.4; }
.csv-link:hover { text-decoration: underline; }

/* ─── CART EMPTY STATE ─── */
.cart-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg2); }
.cart-empty-icon { display: flex; align-items: center; padding: 24px 24px 24px 20px; width: 88px; height: 88px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.icon-xl { width: 40px !important; height: 40px !important; color: var(--white);}
.cart-empty-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; }
.cart-empty-sub { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 40px; max-width: 320px; }
.cart-empty-btns { display: flex; gap: 10px; margin-bottom: 16px; }
.btn-explore { width: 240px; background: var(--blue); color: #fff; border: none; border-radius: 5px; padding: 12px 28px; font-family: var(--font-display); font-size: 14px; font-weight: 500; cursor: pointer; }
.btn-explore:hover { background: var(--blue-dark); }
.btn-csv {width: 140px; background: none; border: 1px solid var(--border); color: var(--white); border-radius: 5px; padding: 12px 28px; font-family: var(--font-display); font-size: 14px; font-weight: 500; cursor: pointer; }
.btn-csv:hover { background: rgba(255,255,255,0.10); }

/* ─── CART HELP TEXT ─── */
.cart-help { margin-top: 16px; text-align: center; font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ─── CLEAR CART MODAL ─── */
.clear-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 300; display: none; align-items: center; justify-content: center; }
.clear-modal-overlay.open { display: flex; }
.clear-modal { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 28px; width: 420px; max-width: 90vw; position: relative; }
.clear-modal-close { position: absolute; top: 14px; right: 14px; cursor: pointer; color: var(--muted); }
.clear-modal-close:hover { color: var(--white); }
.clear-modal-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.clear-modal-body { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.clear-modal-btns { display: flex; gap: 10px; }
.btn-discard { flex: 1; padding: 12px; border: 1px solid var(--border); border-radius: 3px; background: none; color: var(--white); font-size: 14px; font-weight: 500; cursor: pointer; text-align: center; }
.btn-discard:hover { border-color: var(--white); }
.btn-clear-cart { flex: 1; padding: 12px; background: var(--red); border: none; border-radius: 3px; color: #fff; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-clear-cart:hover { opacity: .85; }

/* ─── CHECKOUT MINIMAL NAV ─── */
body.page-checkout-mode nav .nav-categories,
body.page-checkout-mode nav .nav-search,
body.page-checkout-mode nav .nav-actions { display: none; }

/* ─── CHECKOUT BREADCRUMB ─── */
.checkout-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.crumb-active { color: var(--white); font-weight: 500; }
.crumb-link { color: var(--muted); cursor: pointer; }
.crumb-link:hover { color: var(--white); }
.crumb-sep { color: var(--muted); }
.checkout-back { color: var(--muted); cursor: pointer; margin-right: 12px; font-size: 20px; font-weight: 300; vertical-align: middle; }
.checkout-back:hover { color: var(--white); }

/* ─── CHECKOUT SECTION ─── */
.checkout-section { background: var(--bg2); padding: 40px; margin-bottom: 16px; gap: 16px; display: flex; flex-direction: column; }
.checkout-section > h3 { font-family: var(--font-display); text-transform: uppercase; }

/* ─── CHECKOUT PAYMENT ─── */
.co-payment-center { text-align: center; padding: 24px 24px; background: var(--bg3); color: var(--muted);}
.co-payment-method { font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.co-field-helper { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.co-addr-readonly { background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 24px; font-size: 13px; line-height: 1.7; }
.co-addr-readonly strong { display: block; font-weight: 500; font-size: 14px; margin-bottom: 2px; }
.co-addr-readonly span { color: var(--muted); }

/* ─── CHECKOUT REVIEW ─── */
.co-section-hdr { display: flex; align-items: center; justify-content: space-between; }
.co-section-hdr h3 { margin-bottom: 0; }
.co-edit-btn { color: var(--muted); cursor: pointer; display: flex; }
.co-edit-btn:hover { color: var(--blue); }
.co-review-items { margin-top: 16px; }
.co-review-item { display: grid; grid-template-columns: 48px 1fr auto auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.co-review-item:last-child { border-bottom: none; }
.co-review-img { width: 48px; height: 48px; object-fit: contain; }
.co-review-sku { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.co-review-name { font-size: 14px; font-weight: 500; line-height: 1.3; }
.co-review-qty { color: var(--muted); font-size: 14px; text-align: right; }
.co-review-prices { text-align: right; }
.co-review-orig { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.co-review-price { font-size: 14px; font-weight: 700; font-family: var(--font-display); }
.co-method-box { background: var(--bg3); border-radius: 3px; padding: 24px; font-size: 14px; font-weight: 500; text-align: center; margin-top: 8px; margin-bottom: 8px; }
.co-back-to { font-size: 14px; color: var(--muted); margin-top: 12px; }
.co-back-to a { color: var(--blue); cursor: pointer; }
.co-review-invoice { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; padding: 24px; background: var(--bg3); color: var(--mute); }
.co-po-display { padding: 24px; background: var(--bg3); font-size: 14px; color: var(--muted); margin-bottom: 12px; }

/* ─── CHECKOUT SIDEBAR FAQ ─── */
.summary-faq .home-faq-item:hover { background: rgba(255,255,255,0.03); }
.summary-faq .home-faq-header { padding: 12px 0; font-size: 14px; }
.summary-faq .home-faq-toggle { font-size: 18px; }
.summary-faq .home-faq-body { padding: 0 0 12px; font-size: 14px; }

/* ─── CHECKOUT FOOTER ─── */
.checkout-minimal-footer { display: flex; justify-content: space-between; align-items: center; padding: 16px 80px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.checkout-minimal-footer a { color: var(--muted); cursor: pointer; }
.checkout-minimal-footer a:hover { color: var(--white); }

/* ─── PASSWORD GATE ─── */
#password-gate {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s;
}
#password-gate.unlocked { opacity: 0; pointer-events: none; }
.gate-card {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  width: 360px; padding: 48px 40px; background: var(--bg2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}
.gate-logo { height: 40px; width: auto; }
.gate-subtitle { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-top: -8px; }
.gate-field { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.gate-input-wrap { position: relative; width: 100%; }
.gate-input {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 3px;
  padding: 14px 46px 14px 16px; color: var(--white); font-size: 15px; outline: none;
  width: 100%; transition: border-color .15s;
}
.gate-eye {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center;
}
.gate-input:focus { border-color: var(--blue); }
.gate-input.gate-error { border-color: var(--red); animation: gate-shake 0.3s ease; }
.gate-error-msg { font-size: 12px; color: var(--red); min-height: 16px; }
.gate-btn {
  width: 100%; background: var(--blue); color: #fff; padding: 14px;
  border-radius: 3px; font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer; border: none; transition: background .2s; margin-top: 4px;
}
.gate-btn:hover { background: var(--blue-dark); }
@keyframes gate-shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

/* ─── THANK YOU PAGE ─── */
.thankyou-page { min-height: calc(100vh - 60px); display: flex; flex-direction: column; align-items: center; padding: 60px 24px; }
.thankyou-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(11,165,236,0.20); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: #fff; }
.thankyou-title { font-family: var(--font-display); font-size: 30px; font-weight: 800; text-transform: uppercase; text-align: center; line-height: 1.2; margin-bottom: 12px; }
.thankyou-sub { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 28px; }
.thankyou-btns { display: flex; gap: 12px; margin-bottom: 14px; }
.thankyou-btn-primary { width: 240px; background: var(--blue); color: #fff; border: none; border-radius: 3px; padding: 12px 32px; font-family: var(--font-display); font-size: 15px; font-weight: 500; cursor: pointer; }
.thankyou-btn-primary:hover { background: var(--blue-dark); }
.thankyou-btn-outline { background: none; border: 1px solid var(--border); color: var(--white); border-radius: 3px; padding: 12px 32px; font-family: var(--font-display); font-size: 15px; font-weight: 500; cursor: pointer; }
.thankyou-btn-outline:hover { background: rgba(255,255,255,0.10); }
.thankyou-help { font-size: 14px; color: var(--muted); margin-bottom: 40px; }
.thankyou-help a { color: var(--blue); cursor: pointer; }
.order-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; width: 100%; padding: 64px; }
.order-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.order-id { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.order-pdf-btn { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; cursor: pointer; border: none; background: none; }
.order-pdf-btn:hover { color: var(--white); }
.order-meta { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 13px; margin-bottom: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.order-meta-label { color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: 500; white-space: nowrap; }
.order-list-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.order-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.order-table th { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border); text-align: left; }
.order-table th:last-child, .order-table td:last-child { text-align: right; }
.order-table td { padding: 10px 0; border-bottom: 1px solid var(--border); }
.order-table tr:last-child td { border-bottom: none; }
.order-totals { border-top: 2px solid var(--border); padding-top: 12px; display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.order-total-row { display: flex; justify-content: space-between; font-size: 13px; }
.order-total-row.grand { font-family: var(--font-display); font-size: 16px; font-weight: 800; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 4px; }

/* ─── ACCOUNT SETTINGS ─── */
.acct-breadcrumb { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--muted); padding: 20px 80px 0; }
.acct-breadcrumb-home { cursor: pointer; display: flex; align-items: center; }
.acct-breadcrumb-home:hover { color: var(--white); }
.acct-breadcrumb-sep { color: var(--border); margin: 0 4px; }
.acct-breadcrumb-current { color: var(--white); font-weight: 500; }
.acct-layout { display: flex; gap: 64px; padding: 32px 0px 64px; }
.acct-sidebar { width: 240px; flex-shrink: 0; }
.acct-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 32px; }
.acct-title { font-size: 36px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.72px; line-height: 1.2; font-family: var(--font-display); }

/* Account sidebar nav */
.acct-tab { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 2px solid var(--border); cursor: pointer; font-size: 14px; font-weight: 500; color: var(--muted); transition: color .15s; }
.acct-tab:hover { color: var(--white); }
.acct-tab.active { border-bottom-color: var(--blue); color: var(--white); }
.acct-tab-right { display: flex; align-items: center; gap: 8px; }
.acct-tab-chevron { transition: transform .2s; display: flex; align-items: center; }
.acct-tab.open .acct-tab-chevron { transform: rotate(180deg); }
.acct-tab-badge { background: var(--white); color: var(--bg); font-size: 12px; font-weight: 700; padding: 1px 7px; border-radius: 4px; }
.acct-sublist { display: none; }
.acct-sublist.open { display: block; }
.acct-subtab { display: block; width: 100%; padding: 10px 16px; border-bottom: 2px solid var(--border); font-size: 14px; font-weight: 500; color: var(--muted); cursor: pointer; transition: color .15s; background: none; text-align: left; }
.acct-subtab:hover { color: var(--white); }
.acct-subtab.active { border-bottom-color: var(--blue); color: var(--white); font-weight: 500; }

/* Two-column form section */
.acct-section { display: flex; gap: 32px; align-items: flex-start; }
.acct-section-label { flex: 0 0 404px; }
.acct-section-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.acct-section-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.acct-section-control { flex: 1; display: flex; flex-direction: column; gap: 12px; }

/* Form inputs */
.acct-input { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; padding: 11px 14px; font-size: 14px; color: var(--white); outline: none; }
.acct-input:focus { border-color: var(--blue); }
.acct-input::placeholder { color: var(--muted); }
.acct-select { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; padding: 11px 14px; font-size: 14px; color: var(--white); outline: none; cursor: pointer; }
.acct-select:focus { border-color: var(--blue); }
.acct-textarea { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; padding: 11px 14px; font-size: 14px; color: var(--white); outline: none; resize: vertical; min-height: 120px; font-family: var(--font-body); }
.acct-textarea:focus { border-color: var(--blue); }
.acct-textarea::placeholder { color: var(--muted); }

/* Input with leading icon */
.acct-input-wrap { position: relative; }
.acct-input-wrap .acct-input { padding-left: 40px; }
.acct-input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; display: flex; }

/* Password field with eye button */
.acct-pwd-wrap { position: relative; }
.acct-pwd-wrap .acct-input { padding-right: 44px; }
.acct-eye-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); cursor: pointer; background: none; border: none; padding: 0; display: flex; }
.acct-eye-btn:hover { color: var(--white); }

/* Phone country picker */
.acct-phone-wrap { display: flex; position: relative; }
.acct-phone-picker { display: flex; align-items: center; gap: 6px; background: var(--bg3); border: 2px solid var(--border); border-right: none; border-radius: 4px 0 0 4px; padding: 10px 12px; cursor: pointer; color: var(--white); white-space: nowrap; user-select: none; }
.acct-phone-picker.active { background: #2d2d2d; border-color: var(--blue); }
.acct-phone-picker-flag { font-size: 18px; line-height: 1; }
.acct-phone-picker-code { font-size: 15px; }
.acct-phone-picker-chevron { display: flex; color: var(--muted); }
.acct-phone-num { flex: 1; background: var(--bg3); border: 2px solid var(--border); border-radius: 0 4px 4px 0; padding: 11px 14px; font-size: 14px; color: var(--white); outline: none; }
.acct-phone-num:focus { border-color: var(--blue); }
/* Dropdown panel */
.acct-phone-dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; width: 327px; background: #1c1c1c; border: 2px solid var(--border); border-radius: 4px; box-shadow: 0 8px 10px rgba(13,13,13,0.5); z-index: 200; padding: 8px; flex-direction: column; gap: 4px; }
.acct-phone-dropdown.open { display: flex; }
.acct-phone-search-wrap { display: flex; align-items: center; gap: 8px; background: #202020; padding: 12px 16px; color: var(--muted); }
.acct-phone-search { flex: 1; background: none; border: none; outline: none; font-size: 15px; color: var(--white); }
.acct-phone-search::placeholder { color: var(--muted); }
.acct-phone-country-list { max-height: 210px; overflow-y: auto; display: flex; flex-direction: column; }
.acct-phone-country-item { display: flex; align-items: center; gap: 8px; padding: 8px 20px; cursor: pointer; border-radius: 4px; }
.acct-phone-country-item:hover { background: var(--bg3); }
.acct-phone-country-flag { font-size: 18px; flex-shrink: 0; }
.acct-phone-country-name { flex: 1; font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.acct-phone-country-code { font-size: 13px; color: var(--muted); }

/* Password validation hints */
.acct-pwd-hints { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.acct-pwd-hint { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }

/* Checkboxes */
.acct-checkbox-group { display: flex; flex-direction: column; gap: 14px; }
.acct-checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white); cursor: pointer; }
.acct-checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }

/* Cancel / Update buttons */
.acct-btn-row { display: flex; gap: 12px; margin-top: 24px; }
.acct-btn-row-end { justify-content: flex-end; max-width: 480px; align-self: flex-end; }
.acct-btn-row-end .acct-btn-cancel,
.acct-btn-row-end .acct-btn-update { flex: 1; min-width: 120px; }
.acct-btn-cancel { flex: 1; background: var(--bg2); border: 1px solid var(--border); color: #E2E2E2; border-radius: 4px; padding: 12px; font-size: 14px; font-weight: 500; cursor: pointer; }
.acct-btn-cancel:hover { background: var(--bg3); color: white;}
.acct-btn-update { flex: 1; background: var(--blue); color: #fff; border: none; border-radius: 4px; padding: 12px; font-size: 14px; font-weight: 500; cursor: pointer; }
.acct-btn-update:hover { background: var(--blue-dark); }

/* Email read-only display */
.acct-email-display { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.acct-email-display-left { display: flex; align-items: center; gap: 8px; }
.acct-email-display-icon { color: var(--muted); display: flex; flex-shrink: 0; }
.acct-email-display-text { font-size: 16px; color: var(--muted); }
.acct-email-change-btn { background: none; border: none; cursor: pointer; font-size: 14px; color: var(--text-secondary); text-decoration: underline; text-decoration-style: dotted; padding: 0; }
.acct-email-change-btn:hover { color: var(--white); }

/* Address book */
.addr-book-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 20px 24px; }
.addr-book-addr { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.addr-book-contact { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.addr-book-tags { display: flex; gap: 12px; }
.addr-book-tag { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); border: 1px solid var(--border); border-radius: 4px; padding: 3px 9px; }

/* Purchases table (overview) */
.acct-table-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.btn-view-history { background: var(--bg3); border: 2px solid var(--border); color: #E2E2E2; border-radius: 4px; padding: 10px 14px; font-size: 14px; font-weight: 500; cursor: pointer; }
.btn-view-history:hover { border-color: var(--muted); background: var(--bg4); color: var(--white); }
.acct-data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.acct-data-table th { padding: 10px 16px; text-align: left; font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 1px; border-bottom: 2px solid var(--border); background: var(--bg2); }
.acct-data-table td { padding: 12px 8px; border-bottom: 2px solid var(--border); vertical-align: middle; }
.acct-status { display: inline-block; padding: 3px 6px; border-radius: 4px; font-size: 14px; font-weight: 500; }
.acct-status.pending { background: #0ba5ec18; color: var(--blue);  }
.acct-status.billed { background: #22c55e18; color: var(--green);  }
.acct-status.open { background: #0ba5ec18; color: var(--blue); }
.acct-status.closed    { background: var(--bg3); color: var(--muted);  }
.acct-status.fulfilled { background: #f59e0b18; color: #f59e0b;  }

/* Purchases History page */
.ph-section { display: flex; flex-direction: column; gap: 0; }
.ph-filter-tabs { display: flex; align-items: center; }
.ph-filter-tab { text-align: center; padding: 8px 16px; min-width: 105px; font-size: 16px; font-weight: 500; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.ph-filter-tab.active { background: var(--bg3); border-bottom-color: var(--blue); color: var(--white); }
.ph-filter-tab:hover { color: var(--white); }
.ph-toolbar { display: flex; justify-content: flex-end; padding: 24px 0 0; }
.acct-divider { height: 2px; background: var(--bg2); margin-bottom: 24px; }
.acct-icon-btn { background: none; border: none; color: var(--muted); cursor: pointer; display: inline-flex; align-items: center; padding: 4px; border-radius: 4px; transition: color .15s; }
.acct-icon-btn:hover { color: var(--white); }

/* My Settings (overview) */
.my-settings-rows { display: flex; flex-direction: column; gap: 24px; }
.settings-info-card { background: var(--bg2); padding: 24px 24px; border-radius: 0; }
.settings-info-name { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.settings-info-meta { font-size: 14px; color: var(--muted); display: flex; flex-direction: column; gap: 2px; }

/* Returns date filter */
.ret-toolbar { justify-content: space-between !important; align-items: flex-end; padding-top: 24px; }
.ret-date-filter { display: flex; flex-direction: column; gap: 8px; max-width: 460px; }
.ret-date-label { font-size: 14px; font-weight: 500; color: var(--text); }
.ret-date-inputs { display: flex; align-items: center; gap: 8px; }
.ret-date-input { flex: 1; background: #202020; border: 2px solid #2d2d2d; color: var(--white); font-size: 16px; font-family: inherit; padding: 8px 12px; outline: none; transition: border-color .15s; }
.ret-date-input::placeholder { color: var(--muted); }
.ret-date-input:focus { border-color: var(--blue); }
.ret-date-sep { width: 8px; height: 2px; background: #a4a4a4; flex-shrink: 0; }

/* ─── DATE PICKER ────────────────────────────────────── */
.dp-input { cursor: pointer; }
.dp-fields-row { display: flex; align-items: center; gap: 8px; }
.dp-field-wrap { position: relative; flex: 1; }
.dp-popup {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 300;
  width: 240px;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.55);
}
.dp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dp-month-label { font-size: 14px; font-weight: 700; color: var(--white); }
.dp-nav-btn { background: none; border: none; color: var(--muted); cursor: pointer; display: flex; align-items: center; padding: 4px; transition: color .15s; }
.dp-nav-btn:hover { color: var(--white); }
.dp-dow-row, .dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px 0; }
.dp-dow { text-align: center; font-size: 11px; color: var(--muted); padding: 4px 0; font-weight: 500; }
.dp-cell {
  width: 30px;
  height: 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s;
  color: var(--white);
  position: relative;
}
.dp-cell:hover:not(.dp-muted) { background: var(--bg4); }
.dp-muted { color: #444; cursor: default; }
.dp-muted:hover { background: none !important; }
.dp-selected { background: var(--blue) !important; color: var(--white); }
.dp-today::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}
.dp-selected.dp-today::after { background: var(--white); }

/* ─── INVOICES ───────────────────────────────────────── */
.inv-toolbar { justify-content: space-between !important; align-items: center; }
.inv-pay-btn { background: var(--blue); color: var(--white); border: none; padding: 8px 20px; font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer; white-space: nowrap; transition: opacity .15s; }
.inv-pay-btn:hover { opacity: 0.85; }
.inv-dl-btn { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--white); border: 2px solid var(--border); padding: 8px 20px; font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer; white-space: nowrap; transition: border-color .15s, color .15s; }
.inv-dl-btn:hover { border-color: var(--blue); color: var(--blue); }
.acct-status.inv-paid    { background: #18bf6e18; color: #18bf6e; border: 1px solid #18bf6e50; }
.acct-status.inv-unpaid  { background: #ef444418; color: #ef4444; border: 1px solid #ef444450; }
.acct-status.inv-waiting { background: #f59e0b18; color: #f59e0b; border: 1px solid #f59e0b50; }
/* ─── TRANSACTION HISTORY ─── */
.tx-toolbar { justify-content: space-between !important; align-items: flex-end; padding-top: 24px; }
.acct-status.tx-paid-full     { background: #0ba5ec18; color: #0ba5ec; border: 1px solid #0ba5ec50; }
.acct-status.tx-deposited     { background: #88888818; color: #888;    border: 1px solid #88888850; }
.acct-status.tx-fully-applied { background: #18bf6e18; color: #18bf6e; border: 1px solid #18bf6e50; }
.inv-table .inv-cb-cell { width: 44px; padding-left: 16px; }
.inv-table tr.selected .inv-cb-cell { border-left: 3px solid var(--blue); padding-left: calc(16px - 3px); }
.tr:hover {
  box-shadow: 0px -2px 0px 0px #0BA5EC inset;
  background: var(--white);
}
.inv-checkbox { width: 16px; height: 16px; border: 2px solid var(--border); background: transparent; cursor: pointer; appearance: none; -webkit-appearance: none; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s, border-color .15s; vertical-align: middle; }
.inv-checkbox:checked { background: var(--blue); border-color: var(--blue); }
.inv-checkbox:checked::after { content: '✓'; font-size: 11px; color: var(--white); line-height: 1; }
.inv-pagination { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 24px 0 0; }
.inv-page-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--border); color: var(--muted); font-size: 13px; font-family: inherit; cursor: pointer; transition: background .15s, color .15s; }
.inv-page-btn:hover:not(:disabled) { background: var(--bg3); color: var(--white); }
.inv-page-btn.active { background: var(--bg3); color: var(--white); border-color: var(--blue); }
.inv-page-btn:disabled { opacity: 0.35; cursor: default; }

/* ─── INVOICE DETAIL ─────────────────────────────────── */
.inv-detail-content { width: 100%; }
.inv-detail-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 8px; }
.inv-detail-header-left { display: flex; align-items: center; gap: 8px; }
.inv-detail-back { display: flex; align-items: center; gap: 4px; background: none; color: var(--muted); font-size: 14px; font-family: inherit; padding: 8px 8px; cursor: pointer; transition: color .15s, border-color .15s; }
.inv-detail-back:hover { color: var(--text); border-color: var(--text); }
.inv-detail-title { font-size: 18px; font-weight: 700; letter-spacing: 0.04em; color: var(--text); margin: 0; }
.inv-detail-total { font-size: 22px; font-weight: 700; color: var(--text); }
.inv-detail-body { display: flex; gap: 24px; align-items: flex-start; }
.inv-detail-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.inv-detail-info-panel { background: var(--bg2); border: 1px solid var(--border); padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.inv-detail-info-row { display: flex; align-items: center; gap: 16px; }
.inv-detail-info-label { font-size: 13px; color: var(--muted); min-width: 120px; text-transform: uppercase; flex-shrink: 0; }
.inv-detail-info-value { font-size: 14px; color: var(--text); }
.inv-detail-link { color: var(--white); cursor: pointer; text-decoration: underline; }
.inv-detail-section { background: var(--bg2); border: 1px solid var(--border); }
.inv-detail-section-header { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; padding: 16px 20px; font-size: 14px; font-weight: 500; color: var(--text); font-family: inherit; cursor: pointer; text-align: left; }
.inv-detail-section-header:hover { background: var(--bg3); }
.inv-detail-section-body { padding: 0 20px 20px; }
.inv-detail-product-row { display: flex; align-items: flex-start; gap: 16px; padding-top: 4px; }
.inv-detail-product-img { width: 72px; height: 72px; flex-shrink: 0; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); }
.inv-detail-img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.inv-detail-product-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.inv-detail-product-sku { font-size: 11px; color: var(--muted); font-family: monospace; }
.inv-detail-product-stock { font-size: 11px; font-weight: 500; }
.inv-detail-product-stock.in { color: #18bf6e; }
.inv-detail-product-stock.out { color: var(--red); }
.inv-detail-product-name { font-size: 13px; color: var(--text); line-height: 1.4; }
.inv-detail-product-qty { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }
.inv-detail-qty-label { font-size: 11px; color: var(--muted); }
.inv-detail-qty-val { font-size: 14px; font-weight: 500; color: var(--text); }
.inv-detail-product-pricing { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.inv-detail-price-orig { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.inv-detail-price-sale { font-size: 15px; font-weight: 700; color: var(--text); }
.inv-detail-billing-grid { display: flex; flex-direction: column; gap: 12px; }
.inv-detail-billing-row { display: flex; gap: 16px; }
.inv-detail-memo { color: var(--muted); font-style: italic; }
.inv-detail-sidebar { width: 280px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }
.inv-detail-summary { background: var(--bg2); border: 1px solid var(--border); padding: 20px; }
.inv-detail-summary-title { font-size: 14px; font-weight: 700; color: var(--text); margin: 0 0 16px; }
.inv-detail-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); padding: 5px 0; }
.inv-detail-summary-row span{
  color: var(--white);
}
.inv-detail-summary-divider { height: 1px; background: var(--border); margin: 10px 0; }
.inv-detail-summary-total { color: var(--text); font-weight: 700; font-size: 14px; }
.inv-detail-actions { display: flex; flex-direction: column; gap: 8px; }
.inv-action-btn { display: flex; align-items: center; justify-content: center; gap: 8px; height: 42px; border: none; font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer; transition: opacity .15s; }
.inv-action-btn:hover { opacity: 0.85; }
.inv-action-pay { background: var(--blue); color: #fff; }
.inv-action-pdf { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.inv-action-return { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.acct-status.inv-open { background: #0ba5ec18; color: var(--blue);font-weight: 600; padding: 4px 8px;  }
/* Billing cards (paid invoice layout) */
.inv-billing-card { background: var(--bg3); padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; }
.inv-billing-card-name { font-size: 14px; font-weight: 500; color: var(--text); }
.inv-billing-card-addr { font-size: 13px; color: var(--muted); line-height: 1.5; }
.inv-billing-card-contact { display: flex; flex-direction: column; gap: 2px; font-size: 13px; color: var(--muted); }
.inv-billing-card-label { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.inv-billing-card-muted { font-size: 13px; color: var(--muted); }
.inv-billing-cards-row { display: flex; gap: 8px; margin-top: 8px; }
.inv-billing-cards-row .inv-billing-card { flex: 1; }
/* Product SKU row (with stock dot) */
.inv-detail-product-sku-row { display: flex; align-items: center; gap: 8px; }
.inv-detail-product-stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.inv-detail-product-stock-dot.in  { background: #18bf6e; }
.inv-detail-product-stock-dot.out { background: var(--red); }
.inv-detail-product-stock-count { font-size: 12px; color: var(--muted); }
/* Adjustments row title */
.inv-detail-adjustments-title { font-size: 14px; font-weight: 700; color: var(--text); padding-bottom: 2px; }
/* Transaction detail — product divider */
.tx-detail-divider { height: 2px; background: var(--bg3); margin: 16px 0; }
/* Applied to Invoices mini-table */
.tx-applied-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.tx-applied-table thead tr { border-bottom: 2px solid var(--bg3); }
.tx-applied-table th { padding: 10px 12px; font-size: 11px; font-weight: 500; color: var(--muted); text-align: left; text-transform: uppercase; letter-spacing: 0.04em; }
.tx-applied-table td { padding: 14px 12px; color: var(--text); border-bottom: 2px solid var(--bg3); }
.tx-applied-totals { display: flex; flex-direction: column; gap: 8px; padding: 16px 12px 4px; }
.tx-applied-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); text-transform: uppercase; }
.tx-applied-total-row span:last-child { font-weight: 500; color: var(--text); }
.tx-payment-total-row { color: var(--text); font-weight: 500; }
.inv-detail-main-full { max-width: 100%; }
.tx-pdf-row { display: flex; justify-content: flex-end; margin-top: 8px; }
.tx-pdf-btn { width: auto !important; padding: 0 28px !important; }
.tx-payment-card { display: flex; align-items: center; justify-content: space-between; background: var(--bg3); border-radius: 12px; padding: 20px 24px; gap: 24px; }
.tx-payment-card-info { display: flex; flex-direction: column; gap: 6px; }
.tx-payment-card-ending { font-size: 15px; font-weight: 500; color: var(--text); }
.tx-payment-card-expires { font-size: 13px; color: var(--muted); }
.tx-payment-card-name { font-size: 13px; color: var(--text); }
.tx-payment-card-visual { background: linear-gradient(135deg, #1a2744 0%, #2d4a8a 50%, #1e3a6e 100%); border-radius: 10px; padding: 16px 20px; width: 160px; min-height: 100px; display: flex; flex-direction: column; justify-content: space-between; flex-shrink: 0; }
.tx-payment-card-chip { width: 28px; height: 20px; border-radius: 4px; background: linear-gradient(135deg, #d4a843, #f0c040); }
.tx-payment-card-number { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; margin-top: 8px; }
.tx-payment-card-brand { font-size: 14px; font-weight: 700; color: #fff; text-align: right; font-style: italic; letter-spacing: 0.05em; }

/* ─── REORDER ITEMS ─────────────────────────────────── */
.reorder-toolbar { justify-content: space-between !important; align-items: center; }
.reorder-rows { display: flex; flex-direction: column; }
.reorder-row { display: grid; grid-template-columns: 72px 1fr auto auto auto; align-items: center; gap: 20px; padding: 0 24px; height: 88px; border-bottom: 1px solid var(--border); cursor: pointer; transition: filter .15s; }
.reorder-row:hover { background: #2D2D2D; filter: brightness(1.12); box-shadow: 0px -2px 0px 0px #0BA5EC inset; }
.reorder-row:last-child { border-bottom: none; }
.reorder-thumb { width: 72px; height: 72px; flex-shrink: 0; background: #202020; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.reorder-info { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.reorder-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.reorder-sku { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: var(--muted); cursor: pointer; transition: color .15s; }
.reorder-sku:hover { color: var(--white); }
.reorder-stock { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: var(--muted); }
.reorder-stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.reorder-stock-dot.green  { background: #18BF6E; }
.reorder-stock-dot.orange { background: #F18637; }
.reorder-last-order { font-size: 14px; color: var(--muted); }
.reorder-name { font-size: 16px; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reorder-price-cell { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; min-width: 112px; text-align: right; }
.reorder-price-orig { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.reorder-price-cur  { font-size: 16px; font-weight: 700; color: var(--white); }
.reorder-qty-stepper { display: flex; align-items: center; border: 2px solid var(--bg3); }
.reorder-qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--white); font-size: 16px; cursor: pointer; transition: background .15s; }
.reorder-qty-btn:hover { background: var(--bg3); }
.reorder-qty-val { min-width: 32px; text-align: center; font-size: 14px; font-weight: 500; color: var(--white); }
.reorder-cart-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--blue); border: none; color: var(--white); cursor: pointer; flex-shrink: 0; transition: opacity .15s; }
.reorder-cart-btn:hover { opacity: 0.85; }

/* Cases table */
.cases-sort-row { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.cases-sort-select { background: var(--bg2); border: 1px solid var(--border); color: var(--white); border-radius: 4px; padding: 7px 32px 7px 12px; font-size: 13px; cursor: pointer; appearance: none; }
.btn-new-case { background: var(--blue); color: #fff; border: none; border-radius: 4px; padding: 10px 14px; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.btn-new-case:hover { background: var(--blue-dark); }

/* Submit new case radio */
.acct-radio-group { display: flex; flex-direction: column; gap: 10px; }
.acct-radio-option { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 14px 16px; cursor: pointer; display: flex; align-items: flex-start; gap: 12px; }
.acct-radio-option.sel { border-color: var(--blue); background: #0ba5ec10; }
.acct-radio-option:not(.sel) .acct-input-wrap { display: none; }
.acct-radio-option input[type="radio"] { accent-color: var(--blue); margin-top: 3px; cursor: pointer; flex-shrink: 0; }
.acct-radio-label { font-size: 14px; color: var(--white); font-weight: 500; }
.acct-radio-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.btn-submit-case { width: 100%; background: var(--blue); color: #fff; border: none; border-radius: 4px; padding: 13px; font-size: 15px; font-weight: 500; cursor: pointer; margin-top: 4px; }
.btn-submit-case:hover { background: var(--blue-dark); }

/* Log Out modal */
.logout-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 200; display: none; align-items: center; justify-content: center; }
.logout-modal-overlay.open { display: flex; }
.logout-modal { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 32px; max-width: 360px; width: 90%; position: relative; }
.logout-modal-close { position: absolute; top: 16px; right: 16px; color: var(--muted); cursor: pointer; display: flex; background: none; border: none; }
.logout-modal-close:hover { color: var(--white); }
.logout-modal-title { font-size: 22px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; font-family: var(--font-display); }
.logout-modal-body { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.logout-modal-btns { display: flex; gap: 12px; }
.btn-logout-cancel { flex: 1; background: none; border: 1px solid var(--border); color: var(--white); border-radius: 4px; padding: 11px; font-size: 14px; font-weight: 500; cursor: pointer; }
.btn-logout-cancel:hover { border-color: var(--white); }
.btn-logout-confirm { flex: 1; background: var(--red); color: #fff; border: none; border-radius: 4px; padding: 11px; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-logout-confirm:hover { background: #dc2626; }

/* Account footer */
.acct-footer { background: #0f0f0f; border-top: 2px solid var(--border); padding: 48px max(80px, calc(50% - 620px)); display: flex; gap: 32px; font-size: 14px; color: var(--muted); }
.acct-footer-col { flex: 1; }
.acct-footer-col-heading { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
.acct-footer-col a { display: block; color: #c1c1c1; margin-bottom: 10px; }
.acct-footer-col a:hover { color: var(--white); }
.acct-footer-contact { background: #171717; padding: 24px; flex: 0 0 280px; }
.acct-footer-contact p { margin-bottom: 6px; }
.acct-footer-bottom { background: #0f0f0f; border-top: 2px solid #202020; padding: 20px max(80px, calc(50% - 620px)); display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* ─── CATEGORIES DROPDOWN ─── */
.cat-overlay { display: none; position: fixed; align-items: center; inset: 0; z-index: 98; background: rgba(0,0,0,0.55); }
.cat-overlay.open { display: block; }
.cat-dropdown { display: none; position: fixed; top: 80px; left: 0; right: 0; max-width: 1240px; margin: 0 auto; z-index: 99; background: #1c1c1c; box-shadow: 0 10px 25px rgba(3,3,3,0.15), 0 32px 24px rgba(0,0,0,0.08); }
.cat-dropdown.open { display: block; }.cat-tabs { display: flex; border-bottom: 1px solid #2D2D2D; }
.cat-tab { flex: 1; padding: 12px 16px; font-family: var(--font-display); font-weight: 500; font-size: 16px; color: #868686; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; user-select: none; transition: color .15s; border-radius: 0px; text-align: center; display: flex; justify-content: center; gap: 8px; }
.cat-tab.active { background: #2d2d2d; color: #fff; border-bottom-color:#0086b3; }
.cat-tab-disabled { pointer-events: none; cursor: default; }
.cat-tab:hover:not(.active) { background: #2d2d2d; color: #c1c1c1; border-bottom: #0086b3; }
.cat-body { display: flex; gap: 32px; padding: 24px 16px; }
.cat-left { width: 260px; flex-shrink: 0; display: flex; flex-direction: column; gap: 4px; }
.cat-item { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 4px; cursor: pointer; color: #c1c1c1; font-weight: 500; font-size: 15px; transition: background .15s, color .15s; }
.cat-item:hover, .cat-item.active { background: #2d2d2d; color: #fff; }
.cat-item-label { flex: 1; }
.cat-item-chevron { margin-left: auto; opacity: 0.4; }
.cat-item.active .cat-item-chevron, .cat-item:hover .cat-item-chevron { opacity: 1; }
.cat-right { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-content: start; }
.cat-subgroup { display: flex; flex-direction: column; gap: 8px; }
.cat-subgroup-title { font-weight: 500; font-size: 16px; color: #fff; margin-bottom: 4px; white-space: nowrap; }
.cat-subitem { font-size: 14px; font-weight: 500; color: #868686; cursor: pointer; line-height: 20px; transition: color .15s; white-space: nowrap; }
.cat-subitem:hover { color: #c1c1c1; }

/* ─── SEARCH DROPDOWN ─── */
.search-overlay { display: none; position: fixed; inset: 0; z-index: 98; background: rgba(0,0,0,0.55); }
.search-overlay.open { display: block; }
.search-dropdown { display: none; position: absolute; top: calc(100% + 16px); left: 0; right: 0; background: #1c1c1c; border-radius: 4px; z-index: 150; box-shadow: 0 12px 16px rgba(10,13,18,0.08), 0 4px 6px rgba(10,13,18,0.03), 0 2px 2px rgba(10,13,18,0.04); overflow: hidden; }
.search-dropdown.open { display: block; }
.search-product-row { display: flex; align-items: center; gap: 12px; padding: 10px 16px; cursor: pointer; }
.search-product-row:hover { background: #2d2d2d; }
.search-product-img { width: 40px; height: 40px; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #a4a4a4; overflow: hidden; }
.search-product-img img { width: 100%; height: 100%; object-fit: contain; }
.search-product-name { flex: 1; font-size: 14px; color: #c1c1c1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-product-id { font-size: 13px; color: #696969; flex-shrink: 0; margin-left: 8px; }
.search-highlight { color: #fff; font-weight: 700; }
.search-divider { height: 1px; background: #2d2d2d; margin: 4px 0; }
.search-cat-row { display: flex; align-items: center; gap: 12px; padding: 10px 16px; cursor: pointer; color: #868686; }
.search-cat-row svg { fill: #696969; }
.search-cat-row:hover { background: #2d2d2d; }
.search-cat-name { flex: 1; font-size: 14px; color: #c1c1c1; }
.search-cat-brand { font-size: 13px; color: #696969; }
.search-footer { padding: 14px 16px; text-align: center; font-size: 14px; font-weight: 500; color: #a4a4a4; cursor: pointer; border-top: 1px solid #2d2d2d; display: flex; align-items: center; justify-content: center; gap: 6px; }
.search-footer:hover { color: #fff; }
#search-result-list { margin-top: 32px; }

/* ─── ACCOUNT FAVOURITES ─── */
.fav-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.fav-clear-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; color: #868686; font-size: 14px; font-weight: 500; cursor: pointer; padding: 8px 12px; border-radius: 4px; }
.fav-clear-btn:hover { color: #e2e2e2; background: #2d2d2d; }
.fav-filters { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 16px; }
.fav-toggle-wrap { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
.fav-toggle { position: relative; width: 36px; height: 16px; background: #2d2d2d; border-radius: 9999px; flex-shrink: 0; transition: background 0.2s; }
.fav-toggle-knob { position: absolute; top: 50%; left: -6px; transform: translateY(-50%); width: 24px; height: 24px; background: #e2e2e2; border-radius: 9999px; transition: left 0.2s; box-shadow: 0 1.6px 4.8px rgba(10,13,18,0.15); }
.fav-toggle.on { background: #0ba5ec; }
.fav-toggle.on .fav-toggle-knob { left: calc(100% - 18px); }
.fav-toggle-label { font-size: 16px; font-weight: 500; color: #fff; }
.fav-sort-select { background: none; border: none; color: #e2e2e2; font-size: 16px; font-weight: 500; cursor: pointer; outline: none; font-family: inherit; }
.fav-sort-select option { background: #1c1c1c; }
.fav-divider { height: 2px; background: #1c1c1c; }
.fav-rows { display: flex; flex-direction: column; }
.fav-rows--blurred { filter: blur(2px); pointer-events: none; user-select: none; }
.fav-skeleton { opacity: 0.4; }
.fav-skel-block { background: var(--border); border-radius: 4px; }
.fav-skel-line { height: 12px; border-radius: 6px; background: var(--border); }
.fav-empty-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 10; }
.fav-empty-box { display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 32px 40px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.fav-empty-title { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; color: var(--text); }
.fav-empty-sub { font-size: 13px; color: var(--muted); }
.fav-empty-btn { margin-top: 6px; padding: 0 32px; height: 40px; border-radius: 6px; border: none; background: var(--blue); color: #fff; font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; transition: opacity .15s; width: 100%; }
.fav-empty-btn:hover { opacity: 0.85; }
.fav-row { display: flex; align-items: center; padding: 0 24px; min-height: 88px; cursor: pointer; transition: filter .15s; }
.fav-row:hover { background: #2d2d2d; filter: brightness(1.12); box-shadow: 0px -2px 0px 0px #0ba5ec inset; }
.fav-img-cell { width: 56px; height: 56px; flex-shrink: 0; border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fav-img-icon { color: #868686; }
.fav-info { flex: 1; min-width: 0; padding: 16px 24px; }
.fav-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 4px; }
.fav-code { display: inline-flex; align-items: center; gap: 4px; color: #868686; font-size: 14px; cursor: pointer; }
.fav-code:hover { color: #a4a4a4; }
.fav-stock-indicator { display: inline-flex; align-items: center; gap: 4px; }
.fav-stock-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #18bf6e; flex-shrink: 0; }
.fav-stock-dot.out { background: #f04438; }
.fav-stock-count { font-size: 14px; color: #868686; }
.fav-name { font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fav-price-cell { width: 128px; flex-shrink: 0; text-align: right; font-size: 16px; font-weight: 700; color: #fff; padding: 0 24px; }
.fav-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.fav-icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 4px; background: none; border: none; color: #868686; cursor: pointer; }
.fav-icon-btn:hover { background: #2d2d2d; color: #e2e2e2; }
.fav-icon-btn--cart { background: #0ba5ec; color: #fff; }
.fav-icon-btn--cart:hover { background: #0984bd; color: #fff; }
.fav-pagination { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 24px 0; }
.fav-page-btn { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 6px; border-radius: 4px; background: none; border: 1px solid #2d2d2d; color: #868686; font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; }
.fav-page-btn:hover:not(:disabled) { background: #2d2d2d; color: #fff; }
.fav-page-btn.active { background: #2d2d2d; color: #fff; }
.fav-page-btn:disabled { opacity: 0.35; cursor: default; }

/* ─── CUSTOM SELECT ─── */
.cust-select { position: relative; display: inline-block; }
.cust-select-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; color: #e2e2e2;
  font-size: 16px; font-weight: 500; cursor: pointer;
  padding: 12px 18px; border-radius: 4px;
  font-family: inherit; outline: none;
}
.cust-select-trigger:hover, .cust-select.open .cust-select-trigger { background: #2d2d2d; }
.cust-select-panel {
  display: none; position: absolute; top: calc(100% + 4px); right: 0; z-index: 300;
  background: #1c1c1c; border: 2px solid #202020; border-radius: 4px;
  box-shadow: 0 8px 10px rgba(13,13,13,0.15);
  padding: 16px 0; min-width: 216px; white-space: nowrap;
}
.cust-select.open .cust-select-panel { display: block; }
.cust-select-item {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 20px; font-size: 16px; font-weight: 500; color: #e2e2e2; cursor: pointer;
}
.cust-select-item:hover { background: #202020; }
.cust-select-item.active { color: #fff; }
.cust-select-check { visibility: hidden; flex-shrink: 0; color: #fff; }
.cust-select-item.active .cust-select-check { visibility: visible; }
.cust-select-sep { height: 1px; background: #2d2d2d; margin: 8px 0; }
/* Field variant */
.cust-select--field { display: block; }
.cust-select--field .cust-select-trigger {
  width: 100%; justify-content: space-between;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 4px; padding: 11px 14px; font-size: 14px;
}
.cust-select--field.open .cust-select-trigger,
.cust-select--field .cust-select-trigger:hover { border-color: var(--blue); background: var(--bg3); }
.cust-select--field .cust-select-panel { right: auto; left: 0; min-width: 100%; }
/* ─── PRINT A STATEMENT ─── */
.stmt-form { display: flex; flex-direction: column; align-items: flex-end; gap: 0; }
.stmt-row { display: flex; gap: 32px; align-items: flex-start; width: 100%; padding: 24px 0; }
.stmt-divider { width: 100%; height: 2px; background: var(--bg2); }
.stmt-label { flex: 1; display: flex; flex-direction: column; gap: 4px; padding-top: 2px; }
.stmt-label-title { font-size: 14px; font-weight: 500; color: var(--white); display: flex; gap: 2px; align-items: center; text-decoration: none; }
.stmt-req { color: var(--muted); }
.stmt-label-desc { font-size: 14px; color: #a4a4a4; line-height: 1.4; max-width: 448px; }
.stmt-controls { width: 480px; flex-shrink: 0; }
.stmt-date-wrap { position: relative; display: flex; align-items: center; background: #202020; border: 2px solid #2d2d2d; padding: 8px 12px; gap: 8px; cursor: pointer; transition: border-color .15s; }
.stmt-date-wrap:hover { border-color: var(--blue); }
.stmt-date-input { flex: 1; background: transparent; border: none; outline: none; color: #868686; font-size: 16px; font-family: inherit; cursor: pointer; min-width: 0; }
.stmt-date-input:not([value=""]) { color: var(--white); }
.stmt-cal-icon { color: var(--muted); display: flex; flex-shrink: 0; cursor: pointer; }
.stmt-checkboxes { display: flex; flex-direction: column; gap: 16px; padding-top: 4px; }
.stmt-cb-row { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.stmt-cb { width: 16px; height: 16px; border: 2px solid #696969; background: transparent; appearance: none; -webkit-appearance: none; cursor: pointer; flex-shrink: 0; transition: background .15s, border-color .15s; }
.stmt-cb:checked { background: var(--blue); border-color: var(--blue); }
.stmt-cb-label { font-size: 14px; color: var(--white); }
.stmt-actions { display: flex; gap: 8px; width: 480px; margin-top: 16px; }
.stmt-btn { flex: 1; background: var(--bg2); border: 2px solid #2d2d2d; color: #E2E2E2; font-size: 16px; font-weight: 500; font-family: inherit; padding: 12px 18px; cursor: pointer; transition: border-color .15s, color .15s; }
.stmt-btn:hover { background: var(--bg3); color: var(--white); }

/* ─── SALSIFY LOADING ─── */
.salsify-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 80px 40px; color: var(--muted); font-size: 14px; }
.salsify-spinner { width: 32px; height: 32px; border: 3px solid #2d2d2d; border-top-color: var(--blue); border-radius: 50%; animation: salsify-spin .7s linear infinite; }
@keyframes salsify-spin { to { transform: rotate(360deg); } }

/* ─── 404 PAGE ─── */
.page-404-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; text-align: center; padding: 60px 24px; max-width: 480px; margin: 0 auto; }
.page-404-code { font-size: 96px; font-weight: 900; color: var(--blue); line-height: 1; }
.page-404-title { font-size: 28px; font-weight: 800; text-transform: uppercase; margin: 8px 0 16px; }
.page-404-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
.page-404-brands { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.page-404-btn { background: transparent; border: 2px solid var(--border); color: var(--white); font-size: 13px; font-weight: 700; font-family: inherit; padding: 8px 18px; cursor: pointer; transition: border-color .15s, color .15s; }
.page-404-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ─── PRODUCTS LOADING STATE ─── */
.products-loading {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 60px 40px;
  color: var(--muted); font-size: 14px; grid-column: 1 / -1;
}
.products-spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--blue);
  animation: spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.page-404-home { background: var(--blue); border: none; color: #fff; font-size: 14px; font-weight: 700; font-family: inherit; padding: 12px 32px; cursor: pointer; }
.page-404-home:hover { opacity: .85; }

/* ─── WAITLIST PAGE (SPA embed) ─── */
#page-waitlist {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 80px;
  overflow: hidden;
}
#page-waitlist .wl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
#page-waitlist .wl-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(110,150,251,0.28) 0%, transparent 65%);
  top: -220px; right: -120px;
}
#page-waitlist .wl-blob-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(169,64,255,0.22) 0%, transparent 65%);
  bottom: -120px; left: -120px;
}
#page-waitlist .wl-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(110,150,251,0.12) 0%, transparent 65%);
  top: 55%; left: 45%;
  transform: translate(-50%, -50%);
}
#page-waitlist .wl-card-outer {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 620px;
  background: linear-gradient(137deg, rgba(110,150,251,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(169,64,255,0.35) 100%);
  border-radius: 26px;
  padding: 1.8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 0.5px rgba(255,255,255,0.04);
}
#page-waitlist .wl-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  background-color: #0d1018;
  border-radius: 24px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
#page-waitlist .wl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(110,150,251,0.35);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e96fb;
  background: rgba(110,150,251,0.08);
}
#page-waitlist .wl-badge-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6e96fb;
  box-shadow: 0 0 8px #6e96fb;
  animation: wl-pulse 2.2s ease-in-out infinite;
}
@keyframes wl-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #6e96fb; }
  50%       { opacity: 0.45; box-shadow: 0 0 2px #6e96fb; }
}
#page-waitlist .wl-h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 520px;
  margin: 0;
  text-transform: none;
  font-family: 'Roboto', sans-serif;
}
#page-waitlist .wl-gradient-text {
  background: linear-gradient(135deg, #6e96fb 0%, #a940ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#page-waitlist .wl-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0;
}
#page-waitlist .wl-form { width: 100%; display: flex; flex-direction: column; gap: 12px; }
#page-waitlist .wl-form-row { display: flex; gap: 8px; }
#page-waitlist .wl-email-input {
  flex: 1;
  height: 50px;
  padding: 0 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}
#page-waitlist .wl-email-input::placeholder { color: rgba(255,255,255,0.32); }
#page-waitlist .wl-email-input:focus { border-color: #6e96fb; background: rgba(110,150,251,0.06); }
#page-waitlist .wl-email-input.error { border-color: #f87171; }
#page-waitlist .wl-submit-btn {
  height: 50px;
  padding: 0 26px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, #6e96fb 0%, #5878e8 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.12s;
  flex-shrink: 0;
}
#page-waitlist .wl-submit-btn:hover  { opacity: 0.88; }
#page-waitlist .wl-submit-btn:active { transform: scale(0.97); }
#page-waitlist .wl-submit-btn.success { background: linear-gradient(135deg, #22c55e, #16a34a); cursor: default; }
#page-waitlist .wl-form-hint { font-size: 13px; color: rgba(255,255,255,0.28); text-align: center; letter-spacing: -0.01em; margin: 0; }
#page-waitlist .wl-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent); }
#page-waitlist .wl-social { display: flex; align-items: center; gap: 14px; }
#page-waitlist .wl-avatars { display: flex; }
#page-waitlist .wl-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #0d1018;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  margin-left: -7px; flex-shrink: 0;
}
#page-waitlist .wl-avatar:first-child { margin-left: 0; }
#page-waitlist .wl-av1 { background: linear-gradient(135deg, #6e96fb, #4f73d8); }
#page-waitlist .wl-av2 { background: linear-gradient(135deg, #a940ff, #7b2fbe); }
#page-waitlist .wl-av3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
#page-waitlist .wl-av4 { background: linear-gradient(135deg, #10b981, #059669); }
#page-waitlist .wl-av5 { background: linear-gradient(135deg, #ef4444, #dc2626); font-size: 9px; }
#page-waitlist .wl-social-label { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }
#page-waitlist .wl-social-label strong { color: #fff; }
#page-waitlist .wl-features { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
#page-waitlist .wl-feat { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.45); }
#page-waitlist .wl-feat-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(110,150,251,0.12);
  border: 1px solid rgba(110,150,251,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #6e96fb;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #page-waitlist .wl-h1 { font-size: 36px; }
  #page-waitlist .wl-card { padding: 32px 24px; gap: 22px; }
  #page-waitlist .wl-form-row { flex-direction: column; }
  #page-waitlist .wl-submit-btn { width: 100%; }
  #page-waitlist .wl-social { flex-direction: column; gap: 10px; }
}

/* ─── DROPDOWN GRADIENT OVERLAY ─── */
#dropdown-gradient-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.00) 0%, #171717 100%);
  pointer-events: none;
  z-index: 96;
  display: none;
}

/* ─── CASE DETAIL PAGE ─── */
.acct-status.not-started { background: var(--bg3); color: var(--muted); border: 1px solid var(--border); }
.case-detail-title { font-family: var(--font-display); font-size: 24px; font-weight: 900; text-transform: uppercase; color: var(--white); letter-spacing: 0.02em; }
.case-close-btn { background: var(--blue); color: #fff; border: none; font-size: 14px; font-weight: 500; font-family: inherit; padding: 10px 14px; cursor: pointer; transition: opacity .15s; }
.case-close-btn:hover { opacity: .85; }

/* Info panel */
.case-info-panel { background: #1c1c1c; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.case-info-row { display: flex; align-items: center; gap: 16px; }
.case-info-label { font-size: 14px; color: var(--muted); text-transform: uppercase; width: 130px; flex-shrink: 0; }
.case-info-value { font-size: 14px; font-weight: 500; color: var(--white); }

/* Reply panel */
.case-reply-panel { background: #1c1c1c; padding: 24px; }
.case-reply-content { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.case-reply-field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.case-reply-label { font-size: 14px; font-weight: 500; color: #e2e2e2; }
.case-reply-textarea { min-height: 140px; resize: vertical; }
.case-reply-btn { background: #202020; border: 2px solid #2d2d2d; color: #e2e2e2; font-size: 14px; font-weight: 500; font-family: inherit; padding: 10px 14px; cursor: pointer; transition: border-color .15s, color .15s; }
.case-reply-btn:hover { border-color: var(--blue); color: var(--blue); }

/* Messages panel */
.case-msgs-panel { background: #1c1c1c; padding: 24px; display: flex; flex-direction: column; gap: 24px; }
.case-msgs-header { display: flex; align-items: center; gap: 10px; }
.case-msgs-title { flex: 1; font-family: var(--font-display); font-size: 16px; font-weight: 900; text-transform: uppercase; color: var(--white); }
.case-msgs-toggle { background: var(--bg3); border: 1px solid var(--border); color: var(--white); padding: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 4px; transition: background .15s; flex-shrink: 0; }
.case-msgs-toggle:hover { background: #2d2d2d; }
.case-msgs-body { display: flex; flex-direction: column; gap: 16px; }
.case-msgs-date-divider { display: flex; align-items: center; gap: 10px; }
.case-msgs-divider-line { flex: 1; height: 2px; background: #2d2d2d; }
.case-msgs-divider-label { font-size: 16px; color: var(--muted); flex-shrink: 0; }
.case-msg-item { display: flex; flex-direction: column; gap: 4px; }
.case-msg-meta { display: flex; align-items: center; gap: 4px; }
.case-msg-author { font-size: 14px; font-weight: 500; color: #e2e2e2; }
.case-msg-time { font-size: 14px; color: var(--muted); }
.case-msg-text { font-size: 14px; color: var(--white); }
