/* ICE Store — Shared CSS
   Matches icegroup.in design language exactly
   Font: Plus Jakarta Sans · Colors: #004aad blue, #05101e dark
*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: #0d1c2e;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

:root {
  --ice:       #004aad;
  --ice-mid:   #1260c4;
  --ice-light: #3a7fd4;
  --dark:      #05101e;
  --dark2:     #0d1c2e;
  --white:     #ffffff;
  --off:       #f4f6fb;
  --text:      #0d1c2e;
  --muted:     #3a4a5c;
  --border:    #dde4f0;
  --nh:        66px;
  --radius:    4px;
}

/* ── NAV ── */
#store-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nh); padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,16,30,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-logo { display: flex; align-items: center; z-index: 310; }
.nav-logo img { height: 66px; width: auto; filter: brightness(0) invert(1); }
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px;
  cursor: pointer; background: none; border: none; padding: 0; z-index: 310;
}
.hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { width: 24px; transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { width: 24px; transform: translateY(-7px) rotate(-45deg); }
.nav-links {
  display: none; position: fixed; top: var(--nh); left: 0; right: 0; bottom: 0;
  background: rgba(5,16,30,.98); flex-direction: column; align-items: center;
  justify-content: center; gap: 32px; list-style: none; z-index: 299;
}
.nav-links.open { display: flex; }
.nav-links a { font-size: 20px; font-weight: 700; color: #fff; transition: opacity .2s; }
.nav-links a:hover, .nav-links a.active-link { opacity: .75; }
.nav-links .cta {
  background: var(--ice); color: #fff !important;
  padding: 14px 36px; border-radius: var(--radius); font-weight: 700;
  opacity: 1 !important;
}
.nav-links .cta:hover { opacity: 1 !important; background: var(--ice-mid); }

/* ── TRUST TICKER ── */
.ticker-bar {
  background: var(--ice); overflow: hidden; height: 36px;
  display: flex; align-items: center; margin-top: var(--nh);
}
.ticker-inner {
  display: flex; gap: 36px; white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9);
}
.ticker-item { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── BUTTONS ── */
.btn-solid {
  background: var(--ice); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-solid:hover { background: var(--ice-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,74,173,.4); }
.btn-outline-white {
  color: #fff; padding: 14px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.07); transition: background .2s, border-color .2s;
  font-family: inherit; cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.btn-wa {
  background: #25D366; color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; transition: background .2s, transform .2s, box-shadow .2s;
  font-family: inherit; cursor: pointer;
}
.btn-wa:hover { background: #1EB358; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.35); }
.btn-wa svg { flex-shrink: 0; }

/* ── SECTION HELPERS ── */
.pad { padding: 72px 5%; }
.inner { max-width: 1300px; margin: 0 auto; }
.tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ice);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.tag::before { content: ''; width: 24px; height: 2px; background: var(--ice); }
.tag.light { color: var(--ice-light); }
.tag.light::before { background: var(--ice-light); }
.section-h { font-size: clamp(24px, 4.5vw, 45px); font-weight: 800; line-height: 1.1; color: var(--text); }
.section-h.white { color: #fff; }
.sub { font-size: 17px; line-height: 1.85; font-weight: 400; color: var(--muted); }
.sub.light { color: rgba(255,255,255,.6); }

/* ── DARK SECTION ── */
.dark-section { background: var(--dark); position: relative; overflow: hidden; }
.dark-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,74,173,.15) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,74,173,.25) 0%, transparent 65%);
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
@keyframes fup { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── HERO 2-COLUMN GRID ── */
.hero-vid-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center; position: relative; z-index: 1; width: 100%;
}

/* ── HERO COPY ── */
.hero-copy .tag         { font-size: 10.5px; }
.hero-copy .section-h   { font-size: clamp(25px, 4vw, 47px); }
.hero-copy .sub         { font-size: 15.5px; }
.hero-copy .btn-solid   { font-size: 13px; padding: 12px 28px; }
.hero-copy .btn-wa      { font-size: 13px; padding: 12px 26px; }

/* ── YOUTUBE FACADE ── */
.hero-vid { width: 100%; order: -1; }
.yt-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 12px; overflow: hidden; background: #000;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
}
.yt-wrap iframe { position: absolute; top: -10%; left: 0; width: 100%; height: 120%; border: none; }
.yt-facade { position: absolute; inset: 0; cursor: pointer; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.yt-facade:hover img { transform: scale(1.03); }
.yt-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(0,74,173,.92); border: 3px solid rgba(255,255,255,.25);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s, box-shadow .3s;
  box-shadow: 0 8px 32px rgba(0,74,173,.55);
}
.yt-play-btn:hover { background: var(--ice); transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 12px 44px rgba(0,74,173,.75); }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,.4); flex-wrap: wrap; margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.75); }
.breadcrumb-sep { opacity: .4; }
.breadcrumb span { color: rgba(255,255,255,.75); }
.breadcrumb.light { color: var(--muted); }
.breadcrumb.light a { color: var(--muted); }
.breadcrumb.light a:hover { color: var(--text); }
.breadcrumb.light span { color: var(--text); }
.breadcrumb.light .breadcrumb-sep { color: var(--muted); opacity: .6; }

/* ── CATEGORY CARDS (store home) ── */
.prod-row-card { display: flex; flex-direction: column; height: 100%; -webkit-tap-highlight-color: transparent; }

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS — DARK THEME + SQUARE IMAGES
   Applied globally across category, product, and home pages
   ══════════════════════════════════════════════════════════ */
.prod-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}
.prod-card:hover {
  border-color: rgba(0,74,173,.5);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  transform: translateY(-3px);
}

/* Badges */
.prod-card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.badge-blue  { background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff; }
.badge-dark  { background: var(--dark); color: #fff; }
.badge-green { background: rgba(5,150,105,.9); color: #fff; }

/* Square image — 1:1, dark background, no padding */
.prod-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark);
  position: relative;
  flex-shrink: 0;
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
  transition: transform .45s ease;
}
.prod-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.15);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }

/* Card body — dark */
.prod-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.prod-cat-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ice-light);
  background: rgba(0,74,173,.2); border: 1px solid rgba(0,74,173,.3);
  padding: 3px 8px; border-radius: 20px;
  display: inline-block; margin-bottom: 8px; align-self: flex-start;
}
.prod-name  { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 4px; }
.prod-sku   { font-size: 11px; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.prod-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.prod-chip  {
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
}
.prod-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 3px; }
.prod-price     { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.prod-price-old { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: line-through; }
.prod-gst       { font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 14px; }

/* Actions */
.prod-actions { display: flex; gap: 8px; margin-top: auto; }
.prod-btn-view {
  flex: 1; height: 38px; background: var(--ice); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 12.5px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s;
}
.prod-btn-view:hover { background: var(--ice-mid); }
.prod-btn-wa {
  width: 38px; height: 38px; border-radius: var(--radius); flex-shrink: 0;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s;
}
.prod-btn-wa:hover { background: #1EB358; }

/* ── PRODUCT HERO GRID ── */
.prod-hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; margin-top: 24px; }
@media (min-width: 768px) { .prod-hero-grid { grid-template-columns: 357px 1fr; gap: 36px; } }

/* ── FILTER SIDEBAR ── */
.filter-sidebar {
  width: 220px; flex-shrink: 0; background: #fff;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  position: sticky; top: calc(var(--nh) + 16px);
}
.filter-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 700; color: var(--text); }
.filter-clear-btn { font-size: 12px; font-weight: 600; color: var(--ice); background: none; border: none; cursor: pointer; }
.filter-grp { border-bottom: 1px solid var(--border); }
.filter-grp:last-child { border-bottom: none; }
.filter-grp-head { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text); background: none; width: 100%; text-align: left; border: none; transition: background .15s; font-family: inherit; }
.filter-grp-head:hover { background: var(--off); }
.filter-grp-body { padding: 4px 16px 12px; display: block; }
.filter-grp-body[style*="none"] { display: none; }
.filter-opt { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; }
.fchk { width: 16px; height: 16px; border: 2px solid var(--border); border-radius: 3px; flex-shrink: 0; appearance: none; cursor: pointer; transition: all .15s; position: relative; }
.fchk:checked { background: var(--ice); border-color: var(--ice); }
.fchk:checked::after { content: ''; position: absolute; left: 3px; top: 0; width: 6px; height: 10px; border: 2px solid #fff; border-left: none; border-top: none; transform: rotate(40deg); }
.flabel { font-size: 13px; color: var(--muted); cursor: pointer; }
.fcount { margin-left: auto; font-size: 11px; color: rgba(0,0,0,.3); }

/* ── SHOP LAYOUT ── */
.shop-layout { display: flex; gap: 28px; align-items: flex-start; }
.products-area { flex: 1; min-width: 0; }
.prod-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.result-count { font-size: 14px; color: var(--muted); }
.result-count strong { color: var(--text); font-weight: 700; }
.sort-sel {
  height: 38px; padding: 0 32px 0 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 13px; color: var(--text);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233a4a5c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none; cursor: pointer; outline: none;
}
.mob-filter-btn { display: none; align-items: center; gap: 7px; height: 38px; padding: 0 14px; border: 1.5px solid var(--border); border-radius: var(--radius); background: #fff; font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; font-family: inherit; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px,1fr)); gap: 16px; }

/* ── CTA SECTION ── */
.cta-sec { background: var(--ice); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -20%, rgba(255,255,255,.1) 0%, transparent 60%); pointer-events: none; }
.cta-tag { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.cta-h { font-size: clamp(30px, 5vw, 52px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.btn-white { background: #fff; color: var(--ice); padding: 16px 44px; border-radius: var(--radius); font-size: 15px; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; transition: transform .2s, box-shadow .2s; position: relative; z-index: 1; font-family: inherit; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.2); }

/* ── FOOTER ── */
footer { background: #03090f; padding: 56px 5% 32px; }
.f-inner { max-width: 1300px; margin: 0 auto; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px; }
.f-brand { grid-column: 1 / -1; }
.f-logo { height: 66px; width: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 12px; }
.f-tagline { font-size: 14px; color: rgba(255,255,255,.55); max-width: 300px; line-height: 1.7; }
.f-social { display: flex; gap: 10px; margin-top: 18px; }
.f-social-link { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); transition: background .2s, transform .2s; }
.f-social-link:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.f-social-link svg { width: 20px; height: 20px; display: block; }
.f-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.f-links a:hover { color: #fff; }
.f-bottom { display: flex; flex-direction: column; gap: 12px; }
.f-copy { font-size: 13px; color: rgba(255,255,255,.4); }
.f-copy strong { color: var(--ice-light); font-weight: 600; }
.f-legal { display: flex; gap: 20px; }
.f-legal a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.f-legal a:hover { color: rgba(255,255,255,.75); }

/* ── FLOATING WA ── */
.float-wa { position: fixed; bottom: 76px; right: 20px; z-index: 190; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform .2s; animation: waPulse 3s ease-in-out infinite; }
.float-wa:hover { transform: scale(1.08); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45)} 50%{box-shadow:0 4px 30px rgba(37,211,102,.7),0 0 0 8px rgba(37,211,102,.1)} }

/* ── STICKY BAR ── */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--dark2); border-top: 1px solid rgba(255,255,255,.1); padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -4px 24px rgba(0,0,0,.3); transform: translateY(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); }
.sticky-bar.visible { transform: translateY(0); }
.sticky-left { display: block; }
.sticky-left strong { font-size: 14px; color: #fff; display: block; font-weight: 700; }
.sticky-left span { font-size: 11.5px; color: rgba(255,255,255,.45); }
.sticky-actions { display: flex; gap: 8px; width: 100%; }
.sticky-wa { flex: 1; height: 42px; background: #25D366; border: none; border-radius: var(--radius); font-family: inherit; font-size: 13.5px; font-weight: 700; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: background .2s; }
.sticky-wa:hover { background: #1EB358; }
.sticky-quote { flex: 1; height: 42px; background: var(--ice); border: none; border-radius: var(--radius); font-family: inherit; font-size: 13.5px; font-weight: 700; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: background .2s; }
.sticky-quote:hover { background: var(--ice-mid); }

/* ── QUOTE MODAL ── */
.modal-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.65); backdrop-filter: blur(6px); display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { width: 100%; max-width: 520px; background: #fff; border-radius: 16px 16px 0 0; padding: 28px 24px 36px; transform: translateY(40px); transition: transform .3s cubic-bezier(.4,0,.2,1); max-height: 92vh; overflow-y: auto; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-head h3 { font-size: 20px; font-weight: 800; color: var(--text); }
.modal-close { width: 32px; height: 32px; border-radius: 6px; background: var(--off); border: none; cursor: pointer; font-size: 20px; color: var(--muted); display: flex; align-items: center; justify-content: center; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; height: 42px; padding: 0 13px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 14px; color: var(--text); background: #fff; outline: none; transition: border-color .15s; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233a4a5c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.fg input:focus, .fg select:focus { border-color: var(--ice); }
.fg-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-submit { width: 100%; height: 48px; background: var(--ice); color: #fff; border: none; border-radius: var(--radius); cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; transition: background .2s; }
.quote-submit:hover { background: var(--ice-mid); }
.quote-submit:disabled { background: #6b7280; cursor: not-allowed; }
.form-note { font-size: 12px; color: rgba(0,0,0,.4); text-align: center; margin-top: 10px; }
.form-note a { color: var(--ice); }

/* ── FAQ ACCORDION ── */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 8px; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; text-align: left; font-size: 15px; font-weight: 700; color: var(--text); background: none; border: none; cursor: pointer; transition: background .15s; font-family: inherit; }
.faq-q:hover { background: var(--off); }
.faq-q[aria-expanded="true"] { color: var(--ice); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--ice); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.faq-a.open { display: block; }

/* ── CATEGORIES TABLE (admin) ── */
.cat-table td { vertical-align: middle; }

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  .hero-vid { order: 0; }
  .hero-vid-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .f-grid { grid-template-columns: 2fr 1fr 1fr; }
  .f-brand { grid-column: auto; }
  .fg-2col { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  :root { --nh: 80px; }
  #store-nav { padding: 0 5.5%; }
  .nav-logo img { height: 77px; }
  .hamburger { display: none; }
  .nav-links { display: flex !important; position: fixed; top: 0; right: 5.5%; left: auto; bottom: auto; height: var(--nh); background: none; flex-direction: row; align-items: center; gap: 40px; z-index: 301; }
  .nav-links a { font-size: 13.5px; letter-spacing: .4px; }
  .nav-links .cta { padding: 11px 25px; font-size: 13px; }
  .hero-vid-grid { gap: 72px; }
  .f-logo { height: 77px; }
  .f-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px; }
  .f-brand { grid-column: auto; }
  .f-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .filter-sidebar { display: block; }
  .mob-filter-btn { display: none; }
  .sticky-left { display: block; }
  .sticky-actions { width: auto; }
  .sticky-wa, .sticky-quote { flex: none; padding: 0 20px; }
  .float-wa { bottom: 100px; }
  .modal-overlay { align-items: center; }
  .modal-box { border-radius: 12px; margin: 16px; }
}
@media (max-width: 1023px) { .filter-sidebar { display: none; } .mob-filter-btn { display: flex; } }
@media (max-width: 767px) { .prod-hero-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 600px) { .prod-grid { grid-template-columns: 1fr 1fr; } .fg-2col { grid-template-columns: 1fr; } }
@media (max-width: 380px) { .prod-grid { grid-template-columns: 1fr; } }

/* ── CATEGORY CARDS — MOBILE ── */
@media (max-width: 600px) {
  .cat-grid        { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .cat-card        { position: static !important; aspect-ratio: unset !important; height: 100% !important; border-radius: 10px !important; }
  .cat-card__img   { position: relative !important; inset: unset !important; aspect-ratio: 16/9 !important; width: 100% !important; height: auto !important; }
  .cat-card__body  { position: static !important; padding: 10px 10px 12px !important; background: none !important; }
  .cat-card__desc  { display: none !important; }
  .cat-card__count { font-size: 8px !important; margin-bottom: 2px !important; }
  .cat-card__name  { font-size: 13px !important; line-height: 1.2 !important; margin-bottom: 8px !important; }
  .cat-card__btn   { font-size: 10px !important; padding: 4px 10px !important; border-radius: 20px !important; display: inline-flex !important; white-space: nowrap !important; }
}

/* ── CATEGORY CARD ANIMATIONS ── */
.cat-card { transform-style: preserve-3d; will-change: transform; transition: border-color .3s ease, box-shadow .3s ease; }
.cat-card__img { position: relative; overflow: hidden; }
.cat-card__img::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  transform: skewX(-18deg); z-index: 3; pointer-events: none;
  animation: shimmerSweep 3.5s ease infinite;
}
.prod-row-card:hover .cat-card { border-color: rgba(0,74,173,.65) !important; box-shadow: 0 0 0 1px rgba(0,74,173,.3), 0 0 24px rgba(0,74,173,.25), 0 24px 56px rgba(0,0,0,.5) !important; }
.prod-row-card:hover .cat-card__img img { transform: scale(1.07); }
.prod-row-card:hover .cat-card__btn { background: rgba(0,74,173,.35) !important; border-color: rgba(0,74,173,.7) !important; box-shadow: 0 0 14px rgba(0,74,173,.45); color: #fff !important; }
@keyframes shimmerSweep { 0%{ left: -100%; } 100%{ left: 160%; } }
.prod-row-card:nth-child(1) .cat-card__img::before { animation-delay: 0s; }
.prod-row-card:nth-child(2) .cat-card__img::before { animation-delay: 0.7s; }
.prod-row-card:nth-child(3) .cat-card__img::before { animation-delay: 1.4s; }
.prod-row-card:nth-child(4) .cat-card__img::before { animation-delay: 2.1s; }
.prod-row-card:nth-child(5) .cat-card__img::before { animation-delay: 2.8s; }
.prod-row-card:nth-child(6) .cat-card__img::before { animation-delay: 3.5s; }

/* Hero video shimmer */
.yt-facade::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 40%; height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
  transform: skewX(-18deg); z-index: 3; pointer-events: none;
  animation: shimmerSweep 5s ease infinite; animation-delay: 2s;
}

/* ── Category page hero grid ── */
.cat-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 767px) {
  .cat-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-hero-grid > div:last-child { order: -1; }
}

/* Stats grid — 2x2 on mobile */
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* ── Features + Applications mobile slider ── */
@media(max-width:768px){
  .feat-grid,.app-grid{
    touch-action:pan-x;
    overscroll-behavior-x:contain;
    -webkit-overflow-scrolling:touch;
    display:flex!important;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    gap:14px!important;
    padding-bottom:4px;
  }
  .feat-grid::-webkit-scrollbar,.app-grid::-webkit-scrollbar{display:none}
  .feat-grid>div,.app-grid>div{
    flex-shrink:0;
    width:75%;
    scroll-snap-align:start;
  }
}

/* ── Features + Applications card padding — mobile ── */
@media(max-width:768px){
  .feat-grid>div,.app-grid>div{padding:14px!important}
}

/* ── Features + Applications section vertical padding — mobile ── */
@media(max-width:768px){
  .feat-section,.app-section{padding-top:36px!important;padding-bottom:36px!important}
}

/* ── Key Features cards — desktop padding ── */
@media(min-width:769px){
  .feat-grid>div,.app-grid>div{padding:12px!important}
}


/* ── Quill HTML output in feature cards ── */
.feat-grid>div div p,.feat-grid>div div a{color:rgba(255,255,255,.55);font-size:13px;line-height:1.65;margin:0 0 6px}
.feat-grid>div div p:last-child{margin-bottom:0}
.feat-grid>div div strong{color:#fff}
.feat-grid>div div a{color:var(--ice-light);text-decoration:underline}

/* ── Quill HTML links in feature + application cards ── */
.feat-grid>div div a,
.app-grid>div div a{
  color:rgba(255,255,255,.55);
  text-decoration:none;
}

/* ── Image lightbox ── */
.img-zoom-wrap{position:relative;cursor:zoom-in;border-radius:8px;overflow:hidden}
.img-zoom-wrap img{width:100%;height:100%;object-fit:contain;background:#111;transition:transform .3s}
.img-zoom-wrap:hover img{transform:scale(1.03)}
.img-zoom-icon{position:absolute;bottom:8px;right:8px;z-index:4;width:32px;height:32px;background:rgba(255,255,255,.85);border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;pointer-events:none;opacity:.9}
@keyframes zoomPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.18)}}
.img-zoom-icon.pulse{animation:zoomPulse 2s ease infinite}
#imgLightbox{position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.92);display:none;align-items:center;justify-content:center;padding:20px}
#imgLightbox.open{display:flex}
#imgLightbox img{max-width:90vw;max-height:90vh;object-fit:contain;border-radius:10px;box-shadow:0 8px 48px rgba(0,0,0,.6)}
#imgLightbox .lb-close{position:absolute;top:20px;right:24px;width:40px;height:40px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:50%;color:#fff;font-size:18px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s}
#imgLightbox .lb-close:hover{background:rgba(255,255,255,.2)}

/* ── Shimmer on feature + application images ── */
.img-zoom-wrap::before{
  content:'';
  position:absolute;
  top:0;left:-100%;
  width:55%;height:100%;
  background:linear-gradient(to right,transparent 0%,rgba(255,255,255,.45) 50%,transparent 100%);
  transform:skewX(-18deg);
  z-index:2;
  pointer-events:none;
  animation:shimmerSweep 3.5s ease infinite;
}
.feat-grid>div:nth-child(1) .img-zoom-wrap::before{animation-delay:0s}
.feat-grid>div:nth-child(2) .img-zoom-wrap::before{animation-delay:.5s}
.feat-grid>div:nth-child(3) .img-zoom-wrap::before{animation-delay:1s}
.feat-grid>div:nth-child(4) .img-zoom-wrap::before{animation-delay:1.5s}
.feat-grid>div:nth-child(5) .img-zoom-wrap::before{animation-delay:2s}
.feat-grid>div:nth-child(6) .img-zoom-wrap::before{animation-delay:2.5s}
.app-grid>div:nth-child(1) .img-zoom-wrap::before{animation-delay:.2s}
.app-grid>div:nth-child(2) .img-zoom-wrap::before{animation-delay:.7s}
.app-grid>div:nth-child(3) .img-zoom-wrap::before{animation-delay:1.2s}
.app-grid>div:nth-child(4) .img-zoom-wrap::before{animation-delay:1.7s}
.app-grid>div:nth-child(5) .img-zoom-wrap::before{animation-delay:2.2s}
.app-grid>div:nth-child(6) .img-zoom-wrap::before{animation-delay:2.7s}

/* ── Shimmer on feature + application images ── */
.img-zoom-wrap::before{
  content:'';
  position:absolute;
  top:0;left:-100%;
  width:55%;height:100%;
  background:linear-gradient(to right,transparent 0%,rgba(255,255,255,.45) 50%,transparent 100%);
  transform:skewX(-18deg);
  z-index:2;
  pointer-events:none;
  animation:shimmerSweep 3.5s ease infinite;
}
.feat-grid>div:nth-child(1) .img-zoom-wrap::before{animation-delay:0s}
.feat-grid>div:nth-child(2) .img-zoom-wrap::before{animation-delay:.5s}
.feat-grid>div:nth-child(3) .img-zoom-wrap::before{animation-delay:1s}
.feat-grid>div:nth-child(4) .img-zoom-wrap::before{animation-delay:1.5s}
.feat-grid>div:nth-child(5) .img-zoom-wrap::before{animation-delay:2s}
.feat-grid>div:nth-child(6) .img-zoom-wrap::before{animation-delay:2.5s}
.app-grid>div:nth-child(1) .img-zoom-wrap::before{animation-delay:.2s}
.app-grid>div:nth-child(2) .img-zoom-wrap::before{animation-delay:.7s}
.app-grid>div:nth-child(3) .img-zoom-wrap::before{animation-delay:1.2s}
.app-grid>div:nth-child(4) .img-zoom-wrap::before{animation-delay:1.7s}
.app-grid>div:nth-child(5) .img-zoom-wrap::before{animation-delay:2.2s}
.app-grid>div:nth-child(6) .img-zoom-wrap::before{animation-delay:2.7s}

/* ── Specs grid — single column on mobile ── */
@media(max-width:768px){
  .specs-cols{columns:1!important}
}
