/* ================================================================
   ZIPASPORTS — Premium Sportswear Manufacturer
   Main Stylesheet | Black + Neon Green Theme
   ================================================================ */

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

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  --bg: #050505;
  --bg2: #0a0a0a;
  --bg3: #111111;
  --bg4: #181818;
  --red: #39FF14;
  --red-dark: #2bc910;
  --red-mid: #5dff2d;
  --red-glow: rgba(57,255,20,0.45);
  --red-glow-soft: rgba(57,255,20,0.2);
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-80: rgba(255,255,255,0.8);
  --white-70: rgba(255,255,255,0.7);
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --gray: #888888;
  --border: rgba(255,255,255,0.1);
  --border-red: rgba(57,255,20,0.3);
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Outfit', sans-serif;
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 50px;
  --r-full: 9999px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
  --t: all 0.3s var(--ease);
  --t-slow: all 0.6s var(--ease);
  --shadow-red: 0 0 25px var(--red-glow), 0 0 50px rgba(57,255,20,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  /* Two-section sticky header height — updated at each breakpoint */
  --header-h: 118px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Offset for sticky two-section header so anchor/scroll targets
     land below the header, not hidden behind it.
     Value updated at each responsive breakpoint below.          */
  scroll-padding-top: var(--header-h, 118px);
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ================================================================
   CUSTOM SCROLLBAR
   ================================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: var(--r-full); }

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.cursor-glow {
  position: fixed;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.12) 0%, rgba(57,255,20,0.06) 35%, transparent 65%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left 0.12s var(--ease), top 0.12s var(--ease);
  filter: blur(4px);
  will-change: left, top;
}
.cursor-dot {
  display: none !important;
}
@media (hover: none) { .cursor-glow, .cursor-dot { display: none !important; } }

/* ================================================================
   FIXED LEFT SOCIAL BUTTONS
   ================================================================ */
/* ================================================================
   LEFT-SIDE SOCIAL BUTTONS — REDESIGNED
   ================================================================ */
.social-fixed {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px 0 12px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  border: none;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transform: translateX(-4px); /* default slight hide; overridden by .ig animation */
}
.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.12;
  transition: opacity 0.35s;
}
.social-btn:hover {
  transform: translateX(4px);
}
.social-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.social-btn:hover svg { transform: scale(1.12); }
.social-btn span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* Instagram — Gradient, horizontal with text */
.social-btn.ig {
  background: linear-gradient(135deg, #833ab4 0%, #e1306c 45%, #fd7e14 100%);
  box-shadow: 0 0 10px rgba(225,48,108,0.38), 0 0 24px rgba(131,58,180,0.15);
  height: 40px;
  padding: 0 12px 0 8px;
  gap: 7px;
}
.social-btn.ig:hover {
  box-shadow: 0 0 18px rgba(225,48,108,0.58), 0 0 38px rgba(131,58,180,0.28);
  filter: brightness(1.1);
}
.social-btn.ig svg { width: 14px; height: 14px; color: #fff; flex-shrink: 0; }
.social-btn.ig span { color: #fff; font-size: 8px; letter-spacing: 0.05em; white-space: nowrap; }

/* WhatsApp — Green, icon-only square */
.social-btn.wa {
  background: linear-gradient(135deg, #128c3a 0%, #25d366 100%);
  box-shadow: 0 0 9px rgba(37,211,102,0.32), 0 0 20px rgba(37,211,102,0.1);
  height: 32px;
  width: 32px;
  min-width: unset;
  padding: 0;
  justify-content: center;
  gap: 0;
}
.social-btn.wa:hover {
  box-shadow: 0 0 16px rgba(37,211,102,0.52), 0 0 34px rgba(37,211,102,0.2);
  filter: brightness(1.1);
}
.social-btn.wa svg { width: 15px; height: 15px; color: #fff; }
.social-btn.wa span { display: none; }

/* Email — Blue, icon-only square */
.social-btn.em {
  background: linear-gradient(135deg, #0056c7 0%, #2196f3 100%);
  box-shadow: 0 0 9px rgba(33,150,243,0.32), 0 0 20px rgba(33,150,243,0.1);
  height: 32px;
  width: 32px;
  min-width: unset;
  padding: 0;
  justify-content: center;
  gap: 0;
}
.social-btn.em:hover {
  box-shadow: 0 0 16px rgba(33,150,243,0.52), 0 0 34px rgba(33,150,243,0.2);
  filter: brightness(1.1);
}
.social-btn.em svg { width: 15px; height: 15px; color: #fff; }
.social-btn.em span { display: none; }

/* ── Instagram slide-in / slide-out loop animation ──
   Cycle (6 s, starts & ends visible → seamless loop):
   0–2 s  : visible  (2 s)
   2–3 s  : slides back in (1 s)
   3–4 s  : hidden   (1 s)
   4–5 s  : slides out   (part of the next 2 s visible window)
   5–6 s  : visible  (remaining 1 s of 2 s window)
   6 s → 0 s : seamless (both ends = visible)
*/
@keyframes igSlideLoop {
  0%    { transform: translateX(0);                    /* visible            */ }
  33.3% { transform: translateX(0);                    /* still visible @2s  */ }
  50%   { transform: translateX(calc(-100% + 6px));    /* fully hidden  @3s  */ }
  66.7% { transform: translateX(calc(-100% + 6px));    /* still hidden  @4s  */ }
  83.3% { transform: translateX(0);                    /* fully out     @5s  */ }
  100%  { transform: translateX(0);                    /* visible       @6s  */ }
}
.social-btn.ig {
  animation: igSlideLoop 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.social-btn.ig:hover {
  animation-play-state: paused;
  transform: translateX(4px) !important;
}

@media (max-width:768px) {
  .social-fixed { gap: 6px; }
  .social-btn.ig { height: 34px; padding: 0 10px 0 7px; gap: 6px; }
  .social-btn.ig svg { width: 12px; height: 12px; }
  .social-btn.ig span { font-size: 7.5px; }
  .social-btn.wa, .social-btn.em { height: 28px; width: 28px; }
  .social-btn.wa svg, .social-btn.em svg { width: 13px; height: 13px; }
}
@media (max-width:480px) {
  .social-btn.ig span { display: none; }
  .social-btn.ig { height: 28px; width: 28px; padding: 0; justify-content: center; }
  .social-btn.wa, .social-btn.em { height: 24px; width: 24px; }
  .social-btn.wa svg, .social-btn.em svg { width: 11px; height: 11px; }
  .social-btn.ig svg { width: 12px; height: 12px; }
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  width: 100%;
  height: 38px;
  background: linear-gradient(90deg, #0a0a0a 0%, #1a0005 50%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 999;
}
.announce-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.08), transparent);
  animation: shimmerBar 4s infinite linear;
}
@keyframes shimmerBar { to { left: 200%; } }
.announce-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.announce-text {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
}
.announce-text span { color: var(--red); font-weight: 700; }
.announce-sep { color: var(--red); font-size: 14px; opacity: 0.7; }

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
/* ================================================================
   HEADER — TWO-SECTION REDESIGN
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 7000;
  width: 100%;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-red);
  transition: var(--t);
}
.site-header.scrolled {
  background: rgba(3,3,3,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 1px 0 rgba(57,255,20,0.2);
}

/* ── TOP SECTION ── */
.header-top {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
}
.header-top-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 48px 12px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand block: logo + bio */
.header-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #fff 30%, var(--red-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 2px;
}
.logo-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--border-red), transparent);
  flex-shrink: 0;
}
.header-bio {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--white-60);
  letter-spacing: 0.03em;
  line-height: 1.5;
  max-width: 280px;
}
.header-bio strong {
  color: var(--red);
  font-weight: 600;
}

/* Right block: contact + social */
.header-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.header-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.header-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.03em;
  transition: color 0.25s;
  text-decoration: none;
}
.header-contact-item:hover { color: var(--white-90); }
.header-contact-item svg {
  width: 13px; height: 13px;
  color: var(--red);
  flex-shrink: 0;
}
.hdr-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr-social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--white-08);
  transition: var(--t);
  color: var(--white-70);
  text-decoration: none;
}
.hdr-social svg { width: 16px; height: 16px; transition: var(--t); }
.hdr-social:hover { transform: translateY(-2px); }
.hdr-social.ig:hover {
  background: linear-gradient(135deg,#833ab4,#e1306c,#fd7e14);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(225,48,108,0.45);
}
.hdr-social.wa:hover {
  background: #25d366;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.hdr-social.em:hover {
  background: #2196f3;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,150,243,0.4);
}

/* ════════════════════════════════════════════════════════════════
   SMART SEARCH BAR
   ════════════════════════════════════════════════════════════════ */

/* ── Wrapper (center column in header-top-inner) ── */
.hdr-search {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 420px;
  min-width: 180px;
  margin: 0 16px;
}

/* ── Input row ── */
.hdr-search-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative;
}
.hdr-search-wrap:focus-within {
  border-color: rgba(57,255,20,0.55);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.10), 0 4px 24px rgba(0,0,0,0.4);
}
.hdr-search-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 14px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  transition: color 0.25s;
}
.hdr-search-wrap:focus-within .hdr-search-icon {
  color: var(--red);
}
.hdr-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 9px 10px 9px 8px;
  width: 100%;
  min-width: 0;
}
.hdr-search-input::placeholder {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.hdr-search-input::-webkit-search-cancel-button { display: none; }

/* ── Search button ── */
.hdr-search-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 100%;
  min-height: 36px;
  background: var(--red);
  border: none;
  border-left: 1px solid rgba(0,0,0,0.15);
  color: #050505;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.hdr-search-btn svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
}
.hdr-search-btn:hover {
  background: var(--red-mid);
  box-shadow: 0 0 16px rgba(57,255,20,0.4);
}
.hdr-search-btn:active { transform: scale(0.97); }

/* ── Results dropdown ── */
.hdr-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(57,255,20,0.05) inset;
  overflow: hidden;
  z-index: 99999;
  display: none;
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(57,255,20,0.3) transparent;
}
.hdr-search-results::-webkit-scrollbar { width: 4px; }
.hdr-search-results::-webkit-scrollbar-thumb { background: rgba(57,255,20,0.3); border-radius: 4px; }
.hdr-search-results.active { display: block; }

/* ── Results header (category label) ── */
.hdr-search-group-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  padding: 10px 14px 4px;
  opacity: 0.85;
}

/* ── Single result item ── */
.hdr-search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
  outline: none;
}
.hdr-search-item:hover,
.hdr-search-item.focused {
  background: rgba(57,255,20,0.08);
}
.hdr-search-item:hover .hdr-sri-name,
.hdr-search-item.focused .hdr-sri-name {
  color: var(--red);
}

/* Thumbnail */
.hdr-sri-thumb {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg4);
  border: 1px solid rgba(255,255,255,0.07);
}
.hdr-sri-thumb-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr-sri-thumb-placeholder svg {
  width: 16px; height: 16px;
  color: rgba(57,255,20,0.45);
}

/* Text */
.hdr-sri-text {
  flex: 1;
  min-width: 0;
}
.hdr-sri-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-90);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}
.hdr-sri-name mark {
  background: none;
  color: var(--red);
  font-weight: 700;
}
.hdr-sri-cat {
  font-size: 10px;
  font-weight: 500;
  color: var(--white-40);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Arrow icon */
.hdr-sri-arrow {
  width: 14px; height: 14px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.hdr-search-item:hover .hdr-sri-arrow,
.hdr-search-item.focused .hdr-sri-arrow {
  color: var(--red);
  transform: translateX(3px);
}

/* Footer */
.hdr-search-footer {
  padding: 8px 14px 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 10.5px;
  color: var(--white-40);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hdr-search-footer-hint {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hdr-search-kbd {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.3);
}
.hdr-search-kbd kbd {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 1px 4px;
  font-size: 9px;
  font-family: var(--font-body);
}

/* No results */
.hdr-search-empty {
  padding: 24px 14px;
  text-align: center;
}
.hdr-search-empty-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.hdr-search-empty-msg {
  font-size: 12px;
  color: var(--white-60);
  font-weight: 500;
}
.hdr-search-empty-sub {
  font-size: 11px;
  color: var(--white-40);
  margin-top: 4px;
}

/* ── Mobile search toggle button (hidden on desktop) ── */
.hdr-search-mob-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--white-70);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--t);
}
.hdr-search-mob-btn:hover {
  background: rgba(57,255,20,0.1);
  border-color: rgba(57,255,20,0.35);
  color: var(--red);
}
.hdr-search-mob-btn svg { width: 16px; height: 16px; }

/* ── Mobile search full-width overlay ── */
.hdr-search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99998;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px;
  border-bottom: 1px solid rgba(57,255,20,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.hdr-search-overlay.open { display: block; }
.hdr-search-overlay-inner { max-width: 640px; margin: 0 auto; }
.hdr-search-overlay .hdr-search-wrap {
  height: 44px;
  border-radius: var(--r-full);
}
.hdr-search-overlay .hdr-search-input { font-size: 14px; }
.hdr-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white-70);
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 2px;
  transition: var(--t);
}
.hdr-search-close:hover { background: rgba(220,50,60,0.15); color: #fff; }
.hdr-search-results-mob {
  position: static !important;
  margin-top: 10px;
  max-height: 60vh;
  border-radius: 12px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hdr-search { display: none; }          /* hide desktop bar */
  .hdr-search-mob-btn { display: flex; }  /* show icon toggle */
}
@media (max-width: 480px) {
  .hdr-search-overlay { padding: 12px; }
  .hdr-search-overlay .hdr-search-input { font-size: 13px; }
  .hdr-search-btn span { display: none; }  /* icon-only on tiny screens */
  .hdr-search-btn { padding: 0 12px; }
}

/* ── BOTTOM SECTION: NAV ── */
.header-bottom {
  width: 100%;
}
.header-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 0 100px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: auto;
}
.nav-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white-70);
  padding: 6px 11px;
  border-radius: var(--r-full);
  transition: var(--t);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: var(--white-08);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--red);
  border-radius: var(--r-full);
  box-shadow: 0 0 8px var(--red);
}

/* ═══════════════════════════════════════════════════
   DROPDOWN NAVIGATION — hover-based, glass effect
════════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
}
.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-caret {
  font-size: 8px;
  opacity: 0.7;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  display: inline-block;
  margin-top: 1px;
}
.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  max-height: 420px;
  overflow-y: auto;
  padding: 8px 6px;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(220,50,60,0.08) inset;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 10000;
  scrollbar-width: thin;
  scrollbar-color: rgba(220,50,60,0.35) transparent;
}
.nav-dropdown-menu::-webkit-scrollbar { width: 4px; }
.nav-dropdown-menu::-webkit-scrollbar-thumb { background: rgba(220,50,60,0.4); border-radius: 4px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.nav-dropdown-item:hover {
  background: rgba(220,50,60,0.18);
  color: #fff;
  padding-left: 16px;
}

/* ═══════════════════════════════════════════════════
   MOBILE DROPDOWN
════════════════════════════════════════════════════ */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-dropdown-toggle .nav-link {
  flex: 1;
}
.mobile-dropdown-arrow {
  padding: 12px 16px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), color 0.2s;
  user-select: none;
}
.mobile-dropdown.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--red);
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 600px;
  padding: 4px 8px 8px;
}
.mobile-dropdown-item {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.mobile-dropdown-item:hover {
  background: rgba(220,50,60,0.12);
  color: #fff;
  border-left-color: var(--red);
}
.header-cta {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--red);
  transition: var(--t);
  box-shadow: 0 0 15px var(--red-glow-soft);
  flex-shrink: 0;
  text-decoration: none;
}
.header-cta:hover {
  background: transparent;
  box-shadow: var(--shadow-red);
  color: var(--red);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 290px; height: 100vh;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-red);
  padding: 80px 30px 40px;
  flex-direction: column;
  gap: 8px;
  z-index: 9000;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; display: flex; }
.mobile-nav .nav-link {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
}
.mobile-nav .nav-link:hover { border-color: var(--border-red); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 8999;
}
.nav-overlay.open { display: block; }

/* ── RESPONSIVE ── */
/* Laptop / Tablet 1100px */
@media (max-width:1200px) {
  .header-top-inner { padding: 12px 32px 12px 80px; }
  .header-bottom-inner { padding: 0 32px 0 80px; }
  .header-bio { max-width: 200px; font-size: 10.5px; }
  .nav-link { font-size: 11px; padding: 5px 9px; }
}
@media (max-width:1100px) {
  --header-h: 114px;
  .header-top-inner { padding: 10px 20px 10px 70px; }
  .header-bottom-inner { padding: 0 20px 0 70px; }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .header-bio { display: none; }
  .logo-divider { display: none; }
}
/* Tablet 768px */
@media (max-width:900px) {
  .header-contact { display: none; }
}
@media (max-width:768px) {
  --header-h: 92px;
  .header-top-inner { padding: 8px 16px 8px 64px; gap: 12px; }
  .header-bottom-inner { padding: 0 16px 0 64px; height: 44px; }
  .logo-text { font-size: 24px; }
  .hdr-social-row { gap: 6px; }
  .hdr-social { width: 30px; height: 30px; }
  .hdr-social svg { width: 14px; height: 14px; }
}
/* Mobile 480px */
@media (max-width:480px) {
  --header-h: 84px;
  .header-top-inner { padding: 7px 12px 7px 56px; }
  .header-bottom-inner { padding: 0 12px 0 56px; }
  .logo-text { font-size: 20px; }
  .hdr-social-row { gap: 5px; }
  .hdr-social { width: 28px; height: 28px; border-radius: 8px; }
  .hdr-social svg { width: 13px; height: 13px; }
}

/* Legacy: keep .header-inner for any pages that haven't been updated */
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 0 100px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  width: 100%;
  padding: 20px 60px 0;
  position: relative;
}
.hero-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2.73 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg3);
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 40px rgba(57,255,20,0.08);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  cursor: pointer;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-slide.active img { transform: scale(1.04); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(57,255,20,0.12) 100%
  );
  z-index: 2;
}
.hero-content {
  position: absolute;
  bottom: 12%; left: 7%;
  z-index: 3;
  max-width: 520px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(57,255,20,0.12);
  border: 1px solid rgba(57,255,20,0.3);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 14px;
}
.hero-title span { color: var(--red); text-shadow: 0 0 30px rgba(57,255,20,0.6); }
.hero-sub {
  font-size: clamp(12px, 1.2vw, 15px);
  color: var(--white-70);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--r-full);
  transition: var(--t);
  box-shadow: 0 4px 20px var(--red-glow);
}
.hero-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}
.hero-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.hero-btn:hover svg { transform: translateX(4px); }
/* Hero progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-mid));
  border-radius: 0 var(--r-full) var(--r-full) 0;
  z-index: 5;
  animation: heroProgress 3s linear infinite;
  box-shadow: 0 0 10px var(--red);
}
@keyframes heroProgress { from { width: 0; } to { width: 100%; } }
/* Mesh overlay */
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(57,255,20,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width:768px) {
  .hero-section { padding: 12px 12px 0; }
  .hero-wrap { aspect-ratio: 16/9; border-radius: var(--r-md); }
  .hero-content { bottom: 8%; left: 5%; max-width: 85%; }
}

/* ================================================================
   CATEGORY NAV (Below Hero)
   ================================================================ */
.cat-nav {
  padding: 16px 60px 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-60);
  background: var(--white-08);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.cat-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(57,255,20,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-btn:hover::before, .cat-btn.active::before { opacity: 1; }
.cat-btn.active {
  color: var(--white);
  background: rgba(57,255,20,0.15);
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(57,255,20,0.25);
  transform: scale(1.08);
  font-size: 13px;
}
.cat-btn:hover:not(.active) {
  color: var(--white-90);
  border-color: rgba(57,255,20,0.25);
  transform: translateY(-1px);
}
@media (max-width:768px) {
  .cat-nav { padding: 12px 12px 0; gap: 7px; }
  .cat-btn { font-size: 10px; padding: 6px 12px; }
}

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.section {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.section-sm { padding: 60px 60px; }
.section-inner { max-width: 1320px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(57,255,20,0.1);
  border: 1px solid rgba(57,255,20,0.25);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.04em;
}
.section-title span { color: var(--red); }
.section-desc {
  font-size: 15px;
  color: var(--white-70);
  max-width: 560px;
  margin-top: 12px;
}
.section-title.centered { text-align: center; }
.section-desc.centered { text-align: center; margin: 12px auto 0; }
@media (max-width:768px) {
  .section { padding: 60px 16px; }
  .section-sm { padding: 40px 16px; }
}

/* ================================================================
   ABOUT PREVIEW SECTION
   ================================================================ */
.about-preview {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text-col {}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.stat-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--t);
}
.stat-box:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 20px var(--red-glow-soft);
  transform: translateY(-3px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--red);
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-top: 4px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border);
  padding: 11px 24px;
  border-radius: var(--r-full);
  transition: var(--t);
}
.about-link:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 15px var(--red-glow-soft);
}
/* Video column */
.about-video-col {
  position: relative;
}
.video-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(57,255,20,0.12);
}
.video-frame video, .video-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}
.video-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.video-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--white);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(57,255,20,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  z-index: 3;
  box-shadow: 0 0 0 8px rgba(57,255,20,0.15), 0 0 30px var(--red-glow);
}
.video-play-btn:hover {
  transform: translate(-50%,-50%) scale(1.1);
  background: var(--red);
  box-shadow: 0 0 0 12px rgba(57,255,20,0.2), 0 0 40px var(--red-glow);
}
.video-play-btn svg { width: 22px; height: 22px; color: white; margin-left: 3px; }
.video-badge {
  position: absolute;
  top: -16px; right: -16px;
  width: 90px; height: 90px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  animation: rotateBadge 20s linear infinite;
  box-shadow: 0 0 25px var(--red-glow);
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════════
   CUSTOM VIDEO CONTROLS
   ════════════════════════════════════════════════════════════════ */
.vc-shell {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.35s ease;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.08) 0%,
    transparent 35%,
    transparent 55%,
    rgba(0,0,0,0.65) 100%);
}
/* Hide controls after 3 s of play — JS adds .vc-hidden */
.vc-shell.vc-hidden { opacity: 0; pointer-events: none; }
.vc-shell.vc-hidden .vc-bar { pointer-events: none; }

/* ── Center play/pause button ── */
.vc-play-pause {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15), 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.vc-play-pause:hover {
  background: var(--red);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(220,50,60,0.35), 0 0 28px rgba(220,50,60,0.4);
}
.vc-play-pause svg { width: 26px; height: 26px; }

/* ── Bottom control bar ── */
.vc-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 14px;
}
.vc-bar-btn {
  width: 30px; height: 30px;
  border: none;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s, color 0.18s;
}
.vc-bar-btn:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.12);
}
.vc-bar-btn svg { width: 16px; height: 16px; pointer-events: none; }

/* ── Progress bar ── */
.vc-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.vc-progress-bar {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: height 0.15s;
}
.vc-progress-bar:hover { height: 6px; }
.vc-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--red);
  border-radius: 4px;
  transition: width 0.1s linear;
  pointer-events: none;
}
.vc-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transition: transform 0.15s;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.vc-progress-bar:hover .vc-progress-thumb { transform: translate(-50%, -50%) scale(1); }
.vc-time {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-align: right;
  pointer-events: none;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .video-frame { max-width: 260px; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .vc-play-pause { width: 52px; height: 52px; }
  .vc-play-pause svg { width: 22px; height: 22px; }
  .vc-bar-btn { width: 26px; height: 26px; }
  .vc-bar-btn svg { width: 14px; height: 14px; }
}

/* ================================================================
   WHAT WE MANUFACTURE — MASONRY CARD GRID
   ================================================================ */
/* ================================================================
   WHAT WE MANUFACTURE — Redesigned Equal 3×2 Grid
   ================================================================ */
.manufacture-section {
  background: var(--bg);
  position: relative;
  padding: 100px 0 110px;
}
.manufacture-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-glow-soft), transparent);
}
.manufacture-section .section-bg-mesh::before {
  top: 15%; left: 50%;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(57,255,20,0.05) 0%, transparent 55%);
}

/* ── Section Header ── */
.mfr-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

/* ── Equal 3×2 Grid ── */
.mfr-grid-equal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Base Card ── */
.mfr-card {
  position: relative;
  height: 310px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg3);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  display: block; /* anchor reset */
}
.mfr-card:hover {
  border-color: rgba(57,255,20,0.4);
  box-shadow:
    0 0 0 1px rgba(57,255,20,0.18),
    0 20px 60px rgba(0,0,0,0.65),
    0 0 50px rgba(57,255,20,0.12);
}

/* ── Card Number Badge ── */
.mfr-card-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--white-40);
  z-index: 3;
  transition: color 0.3s;
  line-height: 1;
}
.mfr-card:hover .mfr-card-num {
  color: var(--red);
}

/* ── Card Image ── */
.mfr-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.mfr-card:hover .mfr-card-img {
  transform: scale(1.07);
}

/* ── Dark-to-transparent gradient overlay ── */
.mfr-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.08) 100%
  );
  transition: background 0.4s;
}
.mfr-card:hover .mfr-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6) 38%,
    rgba(57,255,20,0.07) 100%
  );
}

/* ── Red edge shimmer on hover ── */
.mfr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0%,
    transparent 50%,
    rgba(57,255,20,0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.mfr-card:hover::after { opacity: 1; }

/* ── Card Content Body ── */
.mfr-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px 18px;
  z-index: 2;
  transform: translateZ(20px);
}

/* ── Category Label ── */
.mfr-card-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s, transform 0.3s;
}
.mfr-card:hover .mfr-card-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ── Card Title ── */
.mfr-card-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 22px);
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
  transition: transform 0.3s var(--ease);
}
.mfr-card:hover .mfr-card-name {
  transform: translateY(-3px);
}

/* ── Description ── */
.mfr-card-desc {
  font-size: 12px;
  color: var(--white-60);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s;
}
.mfr-card:hover .mfr-card-desc {
  max-height: 60px;
  opacity: 1;
}

/* ── Explore CTA Row ── */
.mfr-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.06s, transform 0.3s 0.06s var(--ease), background 0.2s;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}
.mfr-card:hover .mfr-card-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mfr-card-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.12);
  transform: translateY(-50%) skewX(-20deg);
  transition: left 0.4s var(--ease);
}
.mfr-card:hover .mfr-card-cta::before {
  left: 160%;
}
.mfr-card-cta svg {
  width: 11px; height: 11px;
  transition: transform 0.22s;
  flex-shrink: 0;
}
.mfr-card:hover .mfr-card-cta svg {
  transform: translateX(3px);
}

/* ── Tilt Shine ── */
.tilt-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.08) 0%,
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 4;
  border-radius: inherit;
}
.mfr-card:hover .tilt-shine { opacity: 1; }

/* ── Reveal override for cards ── */
.mfr-card.reveal { transform-origin: center; }
.mfr-card.reveal.visible {
  transform: none;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mfr-grid-equal {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .mfr-card { height: 270px; }
}
@media (max-width: 768px) {
  .mfr-grid-equal {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .mfr-card { height: 240px; }
  .manufacture-section { padding: 70px 0 80px; }
}
@media (max-width: 480px) {
  .mfr-grid-equal {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mfr-card { height: 200px; }
  .mfr-card-name { font-size: 14px; }
  .manufacture-section { padding: 55px 0 65px; }
}
@media (max-width: 360px) {
  .mfr-grid-equal { grid-template-columns: 1fr; }
  .mfr-card { height: 220px; }
}


/* ================================================================
   3D TILT EFFECT — Global
   ================================================================ */
/* Applied via JS — these are the transition + perspective rules */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-card .tilt-inner {
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}
/* Tilt shine overlay */
.tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%),
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.02) 40%,
    transparent 70%);
}
.tilt-card:hover .tilt-shine { opacity: 1; }

/* ================================================================
   PROCESS / HOW IT WORKS SECTION
   ================================================================ */
.process-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.process-path {
  position: relative;
  margin-top: 60px;
}
.process-path::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red-glow-soft) 15%, var(--red-glow) 50%, var(--red-glow-soft) 85%, transparent);
  transform: translateX(-50%);
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.process-step.left .step-card { grid-column: 1; }
.process-step.left .step-center { grid-column: 2; }
.process-step.left .step-spacer { grid-column: 3; }
.process-step.right .step-spacer { grid-column: 1; }
.process-step.right .step-center { grid-column: 2; }
.process-step.right .step-card { grid-column: 3; }
.step-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  box-shadow: 0 0 20px var(--red-glow);
  position: relative;
  z-index: 3;
}
.step-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--t);
  max-width: 520px;
}
.process-step.right .step-card { justify-self: start; }
.process-step.left .step-card { justify-self: end; }
.step-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 30px rgba(57,255,20,0.1), var(--shadow-card);
  transform: scale(1.02);
}
.step-img {
  width: 100%; height: 180px;
  object-fit: cover;
}
.step-card.featured .step-img { height: 260px; }
.step-card.featured {
  border-color: rgba(57,255,20,0.2);
  box-shadow: 0 0 40px rgba(57,255,20,0.1);
}
.step-body { padding: 20px 22px; }
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.step-title span { color: var(--red); }
.step-desc {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.6;
}
.step-spacer {}
@media (max-width:768px) {
  .process-path::before { left: 20px; }
  .process-step { grid-template-columns: 40px 1fr; }
  .process-step.left .step-card,
  .process-step.right .step-card { grid-column: 2; max-width: 100%; justify-self: stretch; }
  .process-step.left .step-center,
  .process-step.right .step-center { grid-column: 1; }
  .process-step.left .step-spacer,
  .process-step.right .step-spacer { display: none; }
  .process-step { grid-template-columns: 40px 1fr; grid-template-rows: auto; }
  .process-step.left .step-center { grid-row: 1; grid-column: 1; }
  .process-step.left .step-card { grid-row: 1; grid-column: 2; }
  .process-step.right .step-center { grid-row: 1; grid-column: 1; }
  .process-step.right .step-card { grid-row: 1; grid-column: 2; }
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  padding: 13px 18px;
  transition: var(--t);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
  background: rgba(57,255,20,0.03);
}
.form-textarea { height: 130px; resize: vertical; }
.form-btn {
  width: 100%;
  padding: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-full);
  border: none;
  transition: var(--t);
  box-shadow: 0 4px 20px var(--red-glow);
}
.form-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--red-glow); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--t);
  cursor: pointer;
}
.contact-box:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 20px var(--red-glow-soft);
  transform: translateX(4px);
}
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(57,255,20,0.12);
  border: 1px solid rgba(57,255,20,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 3px;
}
.contact-box-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-90);
}
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: none;
  transition: var(--t);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.wa-btn:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.wa-btn svg { width: 18px; height: 18px; }
@media (max-width:900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.open { border-color: var(--border-red); box-shadow: 0 0 20px var(--red-glow-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: var(--t);
}
.faq-q:hover { background: var(--white-08); }
.faq-q svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 60px 30px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.7;
  margin: 14px 0 20px;
}
.footer-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--white-60);
  transition: var(--t);
}
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: var(--t);
}
.footer-social a:hover { border-color: var(--red); color: var(--red); box-shadow: 0 0 12px var(--red-glow-soft); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--white-40); }
.footer-copy span { color: var(--red); }
@media (max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 40px 16px 20px; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CATEGORY PAGE — TOP HERO
   ================================================================ */
.cat-hero {
  padding: 20px 60px 0;
}
.cat-hero-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2.73 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.cat-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(57,255,20,0.1) 100%);
}
.cat-hero-content {
  position: absolute;
  bottom: 10%; left: 6%;
  z-index: 2;
}
.cat-hero-content .section-title { color: var(--white); }
@media (max-width:768px) {
  .cat-hero { padding: 12px 12px 0; }
  .cat-hero-wrap { aspect-ratio: 16/9; border-radius: var(--r-md); }
}

/* ================================================================
   PROMO STRIP
   ================================================================ */
.promo-strip {
  margin: 16px 60px;
  padding: 13px 28px;
  background: linear-gradient(90deg, rgba(57,255,20,0.12), rgba(57,255,20,0.06), rgba(57,255,20,0.12));
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: var(--r-full);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-80);
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.1), transparent);
  animation: shimmerBar 3s infinite;
}
.promo-strip strong { color: var(--red); }
@media (max-width:768px) {
  .promo-strip { margin: 12px 12px; font-size: 11px; border-radius: var(--r-lg); }
}

/* ================================================================
   PRODUCT GRID
   ================================================================ */
.products-section {
  padding: 40px 60px 80px;
}
.products-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}
.product-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  cursor: pointer;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, transparent 60%, rgba(57,255,20,0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover {
  border-color: rgba(57,255,20,0.4);
  box-shadow: 0 0 0 1px rgba(57,255,20,0.1),
              0 20px 60px rgba(0,0,0,0.7),
              0 0 35px rgba(57,255,20,0.12);
  transform: translateY(-8px);
}
.product-card:hover::before { opacity: 1; }
.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  z-index: 2;
  box-shadow: 0 0 12px var(--red-glow-soft);
}
.product-action-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.product-card:hover .product-action-overlay { opacity: 1; }
.view-btn {
  background: var(--white);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--t);
  transform: translateY(8px);
}
.product-card:hover .view-btn { transform: translateY(0); }
.view-btn:hover { background: var(--red); color: var(--white); }
.product-info { padding: 16px 18px 20px; position: relative; z-index: 2; }
.product-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.product-desc {
  font-size: 12px;
  color: var(--white-60);
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: var(--t);
}
.product-link:hover { gap: 10px; }
.product-link svg { width: 12px; height: 12px; }
@media (max-width:768px) {
  .products-section { padding: 20px 12px 50px; }
  .products-layout { gap: 14px; grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   SUBCATEGORY NAV (Sports Teamwear, Bags)
   ================================================================ */
.subcat-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}
.subcat-nav {
  position: sticky;
  top: calc(var(--header-h, 118px) + 12px); /* sits 12px below the sticky header */
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 0;
}
.subcat-nav-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-40);
  padding: 0 20px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.subcat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-60);
  cursor: pointer;
  transition: var(--t);
  border-left: 2px solid transparent;
}
.subcat-link:hover, .subcat-link.active {
  color: var(--white);
  background: var(--white-08);
  border-left-color: var(--red);
}
.subcat-link.active { color: var(--red); }
.subcat-link svg { width: 14px; height: 14px; opacity: 0.5; }
.subcat-link:hover svg, .subcat-link.active svg { opacity: 1; color: var(--red); }
.subcat-content {}
.subcat-group { margin-bottom: 60px; scroll-margin-top: calc(var(--header-h, 118px) + 16px); }
.subcat-group-title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.subcat-group-title span { color: var(--red); }
.subcat-group-desc {
  font-size: 13px;
  color: var(--white-60);
  margin-top: 8px;
  margin-bottom: 22px;
}
@media (max-width:900px) {
  .subcat-layout { grid-template-columns: 1fr; }
  .subcat-nav { position: static; display: flex; overflow-x: auto; padding: 10px; }
  .subcat-nav-title { display: none; }
  .subcat-link { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; }
  .subcat-link.active { border-bottom-color: var(--red); border-left-color: transparent; }
}

/* ================================================================
   RIGHT SIDE FLOATING MESSAGES (Category Pages)
   ================================================================ */
.float-messages {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 7500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 200px;
}
.float-msg {
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(57,255,20,0.3);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 11.5px;
  color: var(--white-80);
  line-height: 1.5;
  cursor: pointer;
  transition: var(--t);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 20px rgba(57,255,20,0.08);
  animation: floatPulse 4s ease-in-out infinite;
}
.float-msg:nth-child(2) { animation-delay: 2s; }
.float-msg:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateX(-4px);
}
.float-msg strong { color: var(--red); font-weight: 700; }
@keyframes floatPulse {
  0%,100%{box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 20px rgba(57,255,20,0.08);}
  50%{box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 30px rgba(57,255,20,0.18);}
}
@media (max-width:768px) {
  .float-messages { max-width: 160px; right: 8px; bottom: 70px; }
  .float-msg { font-size: 10px; padding: 10px 12px; }
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail {
  padding: 60px 60px 100px;
}
.product-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail-img-wrap {
  position: sticky;
  top: 90px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg3);
  box-shadow: var(--shadow-card);
}
.product-detail-img-wrap img { width:100%; height:100%; object-fit:cover; }
.product-detail-info {}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.product-detail-name span { color: var(--red); }
.product-detail-desc {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 28px;
}
.detail-features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.detail-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--white-80);
}
.detail-feature svg { width:14px; height:14px; color:var(--red); flex-shrink:0; }
.detail-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: #25D366;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 12px;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.detail-wa-btn:hover { background: #1ebe5b; transform: translateY(-2px); }
.detail-wa-btn svg { width:20px; height:20px; }
@media (max-width:768px) {
  .product-detail { padding: 30px 16px 60px; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .product-detail-img-wrap { position:static; aspect-ratio:4/3; }
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2.73/1;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-hero-wrap img { width:100%; height:100%; object-fit:cover; }
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}
.about-hero-text {
  position: absolute;
  bottom: 10%; left: 6%;
}
.about-content p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content p strong { color: var(--white); font-weight: 700; }
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.cert-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--t);
}
.cert-card:hover { border-color: var(--border-red); transform: translateY(-3px); box-shadow: 0 0 20px var(--red-glow-soft); }
.cert-icon { font-size: 32px; margin-bottom: 10px; }
.cert-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.cert-desc { font-size: 11px; color: var(--white-60); }
@media (max-width:768px) {
  .about-two-col { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2,1fr); }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.social-contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.social-contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}
.social-contact-link:hover { border-color: var(--border-red); transform: translateX(5px); box-shadow: 0 0 20px var(--red-glow-soft); }
.social-contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-contact-icon svg { width:20px; height:20px; }
.social-contact-name { font-size: 13px; font-weight: 700; }
.social-contact-handle { font-size: 12px; color: var(--white-60); }
@media (max-width:900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* reveal moved to bottom — see ENHANCED REVEAL ANIMATIONS */

/* ================================================================
   SECTION BG EFFECTS
   ================================================================ */
.section-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section-bg-mesh::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.05) 0%, transparent 60%);
  animation: meshFloat 8s ease-in-out infinite;
}
.section-bg-mesh::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.04) 0%, transparent 60%);
  animation: meshFloat 10s ease-in-out infinite reverse;
}
@keyframes meshFloat {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(30px,-20px); }
  66% { transform: translate(-20px,15px); }
}
.section > *:not(.section-bg-mesh) { position: relative; z-index: 1; }

/* ================================================================
   UTILITY
   ================================================================ */
.sr-only { position:absolute; width:1px; height:1px; clip:rect(0,0,0,0); overflow:hidden; }
.text-red { color: var(--red); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }

/* ================================================================
   ENHANCED REVEAL ANIMATIONS — stagger + improved easing
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ================================================================
   ENHANCED BUTTON ANIMATIONS
   ================================================================ */
.hero-btn, .header-cta, .form-btn, .wa-btn, .about-link,
.detail-wa-btn {
  position: relative;
  overflow: hidden;
}
.hero-btn::before, .header-cta::before, .form-btn::before,
.wa-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: -20%;
  width: 0; height: 200%;
  background: rgba(255,255,255,0.08);
  transform: translateY(-50%) skewX(-20deg);
  transition: width 0.5s var(--ease);
}
.hero-btn:hover::before, .header-cta:hover::before,
.form-btn:hover::before, .wa-btn:hover::before { width: 160%; }

/* ================================================================
   IMPROVED STAT BOXES
   ================================================================ */
.stat-box {
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.05), transparent);
  transition: left 0.5s var(--ease);
}
.stat-box:hover::before { left: 100%; }
.stat-box:hover {
  border-color: rgba(57,255,20,0.3);
  box-shadow: 0 0 0 1px rgba(57,255,20,0.08),
              0 8px 30px rgba(0,0,0,0.5),
              0 0 20px rgba(57,255,20,0.08);
  transform: translateY(-4px);
}

/* ================================================================
   ENHANCED PRODUCT CARD — tilt-ready
   ================================================================ */
.product-card {
  transform-style: preserve-3d;
  will-change: transform;
}
/* Fix: after reveal animation completes, remove transform from transition
   so the JS RAF tilt lerp drives the card freely on all category cards */
.product-card.reveal.visible {
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* Add tilt shine element via JS but style it here */
.product-card .tilt-shine {
  border-radius: var(--r-lg);
}
/* Enhanced view button */
.view-btn {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
}
.view-btn:hover { background: var(--red); color: var(--white); }

/* ================================================================
   ENHANCED STEP CARDS
   ================================================================ */
.step-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.step-card:hover {
  border-color: rgba(57,255,20,0.25);
  box-shadow: 0 0 0 1px rgba(57,255,20,0.08),
              0 16px 50px rgba(0,0,0,0.5),
              0 0 30px rgba(57,255,20,0.08);
  transform: scale(1.015);
}

/* ================================================================
   ENHANCED NAV LINK HOVER
   ================================================================ */
.nav-link {
  position: relative;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 3px; left: 12px; right: 12px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  border-radius: var(--r-full);
}
.nav-link:hover::before { transform: scaleX(1); }
.nav-link.active::before { transform: scaleX(1); }

/* ================================================================
   ENHANCED HERO BUTTON
   ================================================================ */
.hero-btn {
  border: 1px solid transparent;
}
.hero-btn:hover {
  background: rgba(255,255,255,0.95);
  color: var(--red);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15),
              0 0 0 4px rgba(255,255,255,0.06);
}

/* ================================================================
   ENHANCED CONTACT BOXES
   ================================================================ */
.contact-box {
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(57,255,20,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-box:hover::before { opacity: 1; }

/* ================================================================
   CATEGORY PAGE — ENHANCED PROMO STRIP
   ================================================================ */
.promo-strip {
  position: relative;
  overflow: hidden;
}

/* ================================================================
   SUBCAT NAV — ENHANCED
   ================================================================ */
.subcat-link {
  position: relative;
  overflow: hidden;
}
.subcat-link::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 0 8px var(--red);
}
.subcat-link.active::after { opacity: 1; }

/* ================================================================
   FOOTER LINK HOVER ENHANCEMENT
   ================================================================ */
.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer-links a::before {
  content: '→';
  font-size: 11px;
  color: var(--red);
  opacity: 0;
  margin-right: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.25s, opacity 0.25s, margin 0.25s;
}
.footer-links a:hover::before {
  opacity: 1;
  width: 16px;
  margin-right: 5px;
}
.footer-links a:hover { color: var(--white-90); padding-left: 0; }

/* ================================================================
   FLOAT MESSAGES — ENHANCED
   ================================================================ */
.float-msg {
  position: relative;
  overflow: hidden;
}
.float-msg::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scanLine 4s linear infinite;
}
@keyframes scanLine { to { left: 200%; } }

/* ================================================================
   TILT PERSPECTIVE WRAPPER
   ================================================================ */
.tilt-wrap {
  perspective: 800px;
  transform-style: preserve-3d;
}

/* ================================================================
   HOT SELLING PRODUCTS — Dual Infinite Carousel Section
   ================================================================ */

/* Section Container */
.hot-section {
  background: #ffffff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hot-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, #2bc910 50%, var(--red) 70%, transparent 100%);
  opacity: 0.7;
}
.hot-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, #2bc910 50%, var(--red) 70%, transparent 100%);
  opacity: 0.7;
}

/* Section Inner Header */
.hot-section-inner {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 40px;
  text-align: center;
}
.hot-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(57,255,20, 0.08);
  border: 1px solid rgba(57,255,20, 0.22);
  padding: 6px 18px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.hot-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #0a0a0a;
  margin-bottom: 18px;
}
.hot-title span { color: var(--red); }
.hot-desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.48);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.78;
  font-weight: 400;
}

/* ── Slider Wrappers ── */
.hot-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0;
}

/* Edge Fade Overlays */
.hot-slider-wrap::before,
.hot-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 10;
  pointer-events: none;
}
.hot-slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 45%, transparent 100%);
}
.hot-slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 45%, transparent 100%);
}

/* ── Track (the scrolling row) ── */
.hot-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 12px 0 22px;
  will-change: transform;
}

/* Forward (left → right) */
.hot-track-fwd {
  animation: hotScrollFwd 55s linear infinite;
}
/* Reverse (right → left) */
.hot-track-rev {
  animation: hotScrollRev 48s linear infinite;
}

/* Pause on hover */
.hot-track-fwd:hover { animation-play-state: paused; }
.hot-track-rev:hover { animation-play-state: paused; }

@keyframes hotScrollFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes hotScrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── Hot Card ── */
.hot-card {
  position: relative;
  width: 205px;
  height: 265px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg3);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 6px rgba(0,0,0,0.1);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hot-card:hover {
  border-color: rgba(57,255,20, 0.5);
  box-shadow:
    0 0 0 1px rgba(57,255,20, 0.22),
    0 14px 50px rgba(0, 0, 0, 0.28),
    0 0 35px rgba(57,255,20, 0.18);
}

/* Card Image */
.hot-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.hot-card:hover .hot-card-img { transform: scale(1.08); }

/* Dark Gradient Overlay */
.hot-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.52) 42%,
    rgba(0,0,0,0.04) 100%
  );
  transition: background 0.4s;
}
.hot-card:hover .hot-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.62) 40%,
    rgba(57,255,20,0.06) 100%
  );
}

/* Red border sweep on hover */
.hot-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0%,
    transparent 50%,
    rgba(57,255,20,0.06) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.hot-card:hover::after { opacity: 1; }

/* Card Body */
.hot-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px 14px;
  z-index: 2;
  transform: translateZ(18px);
}
.hot-card-cat {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s, transform 0.3s;
}
.hot-card:hover .hot-card-cat { opacity: 1; transform: translateY(0); }

.hot-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 4px;
  transition: transform 0.3s var(--ease);
}
.hot-card:hover .hot-card-name { transform: translateY(-2px); }

.hot-card-desc {
  font-size: 10.5px;
  color: var(--white-60);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s;
}
.hot-card:hover .hot-card-desc { max-height: 50px; opacity: 1; }

.hot-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 13px;
  border-radius: var(--r-full);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s var(--ease), background 0.2s;
  overflow: hidden;
  position: relative;
}
.hot-card:hover .hot-card-cta { opacity: 1; transform: translateY(0); }
.hot-card-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.14);
  transform: translateY(-50%) skewX(-20deg);
  transition: left 0.4s var(--ease);
}
.hot-card:hover .hot-card-cta::before { left: 160%; }
.hot-card-cta svg {
  width: 9px; height: 9px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.hot-card:hover .hot-card-cta svg { transform: translateX(2px); }

/* Tilt shine — reuses .tilt-shine structure */
.hot-card .tilt-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.1) 0%,
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 4;
  border-radius: inherit;
}
.hot-card:hover .tilt-shine { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hot-section-inner { padding: 0 30px; }
  .hot-slider-wrap::before, .hot-slider-wrap::after { width: 120px; }
}
@media (max-width: 768px) {
  .hot-section { padding: 60px 0 50px; }
  .hot-section-inner { padding: 0 20px; margin-bottom: 36px; }
  .hot-card { width: 170px; height: 230px; }
  .hot-card-name { font-size: 14px; }
  .hot-slider-wrap::before, .hot-slider-wrap::after { width: 70px; }
  .hot-track { gap: 14px; }
}
@media (max-width: 480px) {
  .hot-card { width: 148px; height: 205px; }
  .hot-card-name { font-size: 13px; }
  .hot-slider-wrap::before, .hot-slider-wrap::after { width: 50px; }
}

/* ================================================================
   DESIGN BACKGROUND ENHANCEMENTS
   (Appended — overrides section-specific backgrounds only)
   ================================================================ */

/* ──────────────────────────────────────────────────────────────
   1. ABOUT PREVIEW — Dark Grey Carbon Fiber Texture
   ────────────────────────────────────────────────────────────── */
.about-preview {
  background-color: #1c1c1c;
  background-image:
    /* Crosshatch at 45° for carbon-fiber weave */
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.028) 1px,
      transparent 1px,
      transparent 14px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.028) 1px,
      transparent 1px,
      transparent 14px
    ),
    /* Slight cell shading for depth */
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.18) 0px,
      rgba(0,0,0,0.18) 7px,
      transparent 7px,
      transparent 14px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(0,0,0,0.18) 0px,
      rgba(0,0,0,0.18) 7px,
      transparent 7px,
      transparent 14px
    ),
    linear-gradient(160deg, #1e1e1e 0%, #171717 50%, #1e1e1e 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* Keep a very soft red ambient glow so it still feels on-brand */
.about-preview .section-bg-mesh::before {
  background: radial-gradient(circle, rgba(57,255,20,0.06) 0%, transparent 60%);
  width: 700px; height: 700px;
  top: -15%; right: -5%;
}
.about-preview .section-bg-mesh::after {
  background: radial-gradient(circle, rgba(57,255,20,0.04) 0%, transparent 60%);
  width: 500px; height: 500px;
  bottom: -20%; left: -5%;
}

/* ──────────────────────────────────────────────────────────────
   2. MANUFACTURE SECTION — Animated Red & White Abstract Patterns
   ────────────────────────────────────────────────────────────── */
.manufacture-section {
  background-color: #050505;
  background-image:
    /* Fine diagonal grid */
    repeating-linear-gradient(
      60deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(57,255,20,0.04) 0px,
      rgba(57,255,20,0.04) 1px,
      transparent 1px,
      transparent 40px
    );
  position: relative;
  overflow: hidden;
}

/* Animated geometric shapes via new pseudo layers */
.manufacture-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(57,255,20,0.07) 0%, transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(57,255,20,0.07) 0%, transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.015) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: mfrGlowPulse 7s ease-in-out infinite alternate;
}
@keyframes mfrGlowPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.04); }
  100% { opacity: 0.7; transform: scale(1.01); }
}

/* Floating diagonal accent stripes (top-right corner) */
.manufacture-section .section-bg-mesh::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.09) 0%, transparent 58%);
  animation: meshFloat 9s ease-in-out infinite;
}
.manufacture-section .section-bg-mesh::after {
  content: '';
  position: absolute;
  bottom: -12%; left: -5%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.07) 0%, transparent 55%);
  animation: meshFloat 12s ease-in-out infinite reverse;
}

/* SVG-drawn abstract red ring ornament — top-left */
.manufacture-section > .section-bg-mesh {
  pointer-events: none;
}
.manufacture-section > .section-bg-mesh::before,
.manufacture-section > .section-bg-mesh::after {
  border-radius: 0;
}

/* Additional layer: animated scan line */
@keyframes mfrScanX {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ──────────────────────────────────────────────────────────────
   3. PROCESS SECTION — Red & White Geometric Tech Pattern
   ────────────────────────────────────────────────────────────── */
.process-section {
  background-color: #08080a;
  background-image:
    /* Vertical fine lines */
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 1px,
      transparent 1px,
      transparent 50px
    ),
    /* Horizontal fine lines */
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 1px,
      transparent 1px,
      transparent 50px
    ),
    /* Red diagonal accent lines */
    repeating-linear-gradient(
      45deg,
      rgba(57,255,20,0.035) 0px,
      rgba(57,255,20,0.035) 1px,
      transparent 1px,
      transparent 70px
    );
  border-top: 1px solid rgba(57,255,20,0.12);
}

/* Animated ambient blobs */
.process-section .section-bg-mesh::before {
  width: 800px; height: 800px;
  top: 20%; left: -15%;
  background: radial-gradient(circle, rgba(57,255,20,0.055) 0%, transparent 55%);
  animation: meshFloat 10s ease-in-out infinite;
}
.process-section .section-bg-mesh::after {
  width: 600px; height: 600px;
  bottom: 10%; right: -10%;
  background: radial-gradient(circle, rgba(57,255,20,0.05) 0%, transparent 55%);
  animation: meshFloat 13s ease-in-out infinite reverse;
}

/* Pulsing corner accents */
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(57,255,20,0.5) 25%,
    rgba(255,255,255,0.4) 50%,
    rgba(57,255,20,0.5) 75%,
    transparent 100%);
  animation: processLineGlow 4s ease-in-out infinite alternate;
}
@keyframes processLineGlow {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}

/* ──────────────────────────────────────────────────────────────
   4. FAQ SECTION — Pure White + Adjusted Contrast
   ────────────────────────────────────────────────────────────── */
.faq-section {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Section heading & tag on white */
.faq-section .section-tag {
  color: var(--red);
  background: rgba(57,255,20,0.08);
  border-color: rgba(57,255,20,0.22);
}
.faq-section .section-title {
  color: #0a0a0a;
}
.faq-section .section-title span {
  color: var(--red);
}
.faq-section .section-desc {
  color: rgba(0,0,0,0.55);
}

/* FAQ cards on white */
.faq-item {
  background: #f6f6f6;
  border: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.faq-item.open {
  background: #ffffff;
  border-color: rgba(57,255,20,0.35);
  box-shadow: 0 4px 24px rgba(57,255,20,0.1), 0 2px 10px rgba(0,0,0,0.06);
}

/* Question button */
.faq-q {
  color: #0a0a0a;
}
.faq-q:hover {
  background: rgba(0,0,0,0.035);
}

/* Answer text */
.faq-a-inner {
  color: rgba(0,0,0,0.62);
}

/* Reduce section-bg-mesh blobs visibility on white */
.faq-section .section-bg-mesh {
  display: none;
}

/* ════════════════════════════════════════════════════════════════
   LAZY LOADING — Product cards + section reveals
   ════════════════════════════════════════════════════════════════ */

/* ── Product card lazy entrance ── */
.product-card.card-lazy {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.product-card.card-lazy.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Section reveal ── */
section:not(.section-visible) {
  /* sections are always visible structurally; class just marks them for
     child animations — no visibility suppression on the section itself */
}

/* ── General reveal animations ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal        { transform: translateY(24px); }
.reveal-left   { transform: translateX(-32px); }
.reveal-right  { transform: translateX(32px); }
.reveal-up     { transform: translateY(-24px); }

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed {
  opacity: 1;
  transform: none;
}

/* ── Native lazy images: avoid layout shift ── */
img[loading="lazy"] {
  content-visibility: auto;
}
