/* ======================= cn.css (FULL - UPDATED: 5x2 DROPDOWN GRID + CALM SPACING + 2070 HOVER/ACTIVE) ======================= */

/* ================= RESET ================= */
*,
*::before,
*::after { box-sizing: border-box; }

img, video, canvas, svg { max-width: 100%; height: auto; display: block; }

:root{
  --fixed-offset: 140px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);

  --pad-x: clamp(14px, 3vw, 22px);
  --section-y: clamp(14px, 3vw, 26px);
  --section-gap: clamp(10px, 2.2vw, 18px);
  --after-partners-gap: clamp(10px, 2.4vw, 18px);

  --rail-height: clamp(260px, 58vh, 650px);
  --rail-height-svh: clamp(260px, 58svh, 650px);

  --tile-overlap: 14px;
  --tile-feather: 18px;

  --swbar-height: 0px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg,#f4f7fb,#eef3f9);
  color: #111;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

/* ================= TOP BAR ================= */
.topbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(120deg,#f9d7ff,#e2f8ff,#eafff2,#fff1d6);
  backdrop-filter: blur(14px);
  transition: filter .25s ease, saturate .25s ease;

  padding-top: var(--safe-top);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}
.topbar:hover { filter: brightness(0.92) saturate(1.15); }

.topbar-inner {
  max-width: 1400px;
  margin: auto;
  padding: 14px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brandrow {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.brandrow__logo { height: 46px; width: auto; }
.brandrow__text { font-weight: 900; font-size: 18px; white-space: nowrap; }

.topbar-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tb-link {
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  background: rgba(255,255,255,.7);
  transition: .25s ease;
  font-weight: 700;
  white-space: nowrap;
}
.tb-wa:hover { background:#25d366; color:#fff; }
.tb-fb:hover { background:#1877f2; color:#fff; }
.tb-ig:hover { background:linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); color:#fff; }
.tb-em:hover { background:#ea4335; color:#fff; }

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  top: calc(var(--safe-top) + var(--topbar-height, 72px));
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

.navbar-inner {
  max-width: 1400px;
  margin: auto;
  padding: 14px var(--pad-x);
  display: flex;

  /* ✅ FIX (navbar pill shape + search bar placement) */
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.nav-link {
  /* ✅ FIX: shape stable */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  background: rgba(255,255,255,.82);
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.nav-link:hover,
.nav-link.is-active {
  background: linear-gradient(120deg,#b8d6ff,#e4c8ff,#ffd6f2,#d6fff0);
}
.nav-boundary { height: 1px; background: rgba(0,0,0,.08); }

/* ================= SPACER ================= */
.fixed-spacer { height: var(--fixed-offset); }

/* ================= PAGES ================= */
.pages { padding-bottom: var(--safe-bottom); }
.page { display: none; }
.page.is-visible { display: block; }

.page-box {
  max-width: 1200px;
  margin: 44px auto;
  background: #fff;
  padding: 46px;
  border-radius: 28px;
}

/* ================= HERO (TRAIN STRIP - SEAMLESS BLEND) ================= */
.home-hero { padding: var(--section-y) var(--pad-x); }

.home-hero__frame{
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 30px 90px rgba(0,0,0,.16);
  position: relative;
  overflow: hidden;
}

.home-hero__frame::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: conic-gradient(
    from 190deg,
    rgba(0,229,255,0.20),
    rgba(140,70,255,0.22),
    rgba(255,43,214,0.16),
    rgba(52,255,138,0.16),
    rgba(255,184,77,0.18),
    rgba(0,229,255,0.20)
  );
  filter: blur(44px);
  opacity: .95;
  animation: heroGlow 14s linear infinite;
  pointer-events:none;
}
@keyframes heroGlow{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

.home-hero__marquee{
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--rail-height);
  height: var(--rail-height-svh);
  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 26px 70px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.42);

  background:
    radial-gradient(90% 120% at 18% 40%, rgba(0,229,255,0.18), rgba(255,255,255,0) 60%),
    radial-gradient(90% 120% at 82% 55%, rgba(199,125,255,0.18), rgba(255,255,255,0) 62%),
    linear-gradient(120deg, rgba(184,214,255,0.35), rgba(228,200,255,0.35), rgba(214,255,240,0.28), rgba(255,214,242,0.30));
}

.home-hero__marquee::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: .12;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, rgba(0,0,0,0) 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, rgba(0,0,0,0) 1px 4px);
  mix-blend-mode: overlay;
}

.home-hero__marquee::before{
  content:"";
  position:absolute;
  inset: 8px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(0,229,255,0.9),
    rgba(52,255,138,0.9),
    rgba(255,225,90,0.85),
    rgba(255,122,77,0.85),
    rgba(255,43,214,0.8),
    rgba(199,125,255,0.85),
    rgba(59,130,246,0.9),
    rgba(0,229,255,0.9)
  );
  background-size: 420% 420%;
  opacity: 0.55;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  animation: borderShift 12s linear infinite;
}

.home-hero__track{
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  gap: 0;
  font-size: 0;
}

/* ================= HERO VIDEO (replaces moving images) ================= */
.home-hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-hero__tile{
  height: 100%;
  width: auto;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  display: block;
  margin-right: calc(var(--tile-overlap) * -1);
  filter: saturate(1.06) contrast(1.08) brightness(0.98);
  transform: translateZ(0) scale(1.005);
  backface-visibility: hidden;

  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,1) var(--tile-feather),
    rgba(0,0,0,1) calc(100% - var(--tile-feather)),
    rgba(0,0,0,0) 100%
  );
          mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,1) var(--tile-feather),
    rgba(0,0,0,1) calc(100% - var(--tile-feather)),
    rgba(0,0,0,0) 100%
  );
}

@keyframes borderShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 420% 50%; }
}

/* =========================================================
   shared “glass card” look
   ========================================================= */
.punch-card,
.info-card{
  background: rgba(255,255,255,0.82);
  border-radius: 22px;
  box-shadow:
    0 16px 44px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.punch-card:hover,
.info-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.74);
}

.punch-card::before,
.info-card::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.punch-card:hover::before,
.info-card:hover::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

/* ================= PUNCH LINES (CARD) ================= */
.home-punchlines{
  padding: 0 var(--pad-x) var(--section-gap);
}

.punch-card{
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px) clamp(16px, 2.6vw, 26px);
  text-align: center;
}

.punch-title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  color: #4b1fa6;
  text-shadow: 0 2px 0 #ffffff,
               0 8px 22px rgba(140,70,255,0.35),
               0 0 40px rgba(170,90,255,0.55);
}

.punch-body{
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  text-align: left;
}

.punch-text {
  margin: 0;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.7;
  font-weight: 500;
  color: #222;
}

.home-punchlines strong,
.punch-card strong{
  color: inherit;
  font-weight: inherit;
}

.punch-highlight {
  position: relative;
  z-index: 1;
  margin: 16px auto 12px;
  padding: 12px 16px;
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #3a1a8f;
  background: linear-gradient(120deg,
    rgba(190,170,255,0.35),
    rgba(210,190,255,0.55),
    rgba(190,170,255,0.35)
  );
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(120,80,255,0.20),
              inset 0 0 0 1px rgba(255,255,255,0.7);
  max-width: 980px;
}

.punch-cta {
  position: relative;
  z-index: 1;
  margin: 6px 0 0;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.6;
  font-weight: 600;
  color: #111;
  max-width: 980px;
  margin: 6px auto 0;
}

/* ================= HOME TEXT CARDS ================= */
.home-info{
  padding: 0 var(--pad-x) var(--section-y);
}

.home-info--partners{
  padding-top: 0;
  padding-bottom: var(--after-partners-gap);
}

.home-info__grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.info-card{ padding: 20px 18px 18px; }

.info-card__title{
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
  color: #111;
}

.info-card__text{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #222;
  font-weight: 500;
}

.home-images{
  padding: 0 var(--pad-x) 0;
}

.home-banner--text {
  max-width: 1400px;
  margin: 0 auto var(--section-gap);
  height: clamp(84px, 10vw, 130px);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.9);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.banner-title {
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 900;
  color: #5d2aa6;
  text-shadow: 0 2px 0 rgba(255,255,255,.9),
               0 6px 18px rgba(140,70,255,.35),
               0 0 26px rgba(170,90,255,.55);
}

/* ================= BUYER CONFIDENCE (6 STEPS) ================= */
.buyer-steps{
  padding: var(--after-partners-gap) var(--pad-x) var(--section-y);
  margin: 0;
}

.buyer-steps__inner{
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 34px;
  padding: clamp(26px, 3.5vw, 40px) clamp(16px, 3vw, 28px);

  background: rgba(255,255,255,0.86);
  box-shadow:
    0 36px 120px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.62);
  position: relative;
  overflow: hidden;
}

.buyer-steps__inner::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: conic-gradient(
    from 180deg,
    rgba(0,229,255,0.18),
    rgba(140,70,255,0.18),
    rgba(255,43,214,0.16),
    rgba(52,255,138,0.16),
    rgba(255,184,77,0.18),
    rgba(0,229,255,0.18)
  );
  filter: blur(40px);
  opacity: .9;
  animation: buyerGlow 14s linear infinite;
  pointer-events:none;
}

@keyframes buyerGlow{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

.buyer-steps__head{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 14px;
}

.buyer-steps__title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.15;
  color: #3a168e;
  text-shadow:
    0 2px 0 rgba(255,255,255,.9),
    0 10px 30px rgba(140,70,255,.22),
    0 0 28px rgba(170,90,255,.35);
}

.buyer-steps__sub{
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #222;
  opacity: .95;
}

.buyer-steps__grid{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.buyer-step{
  background: rgba(255,255,255,0.82);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow:
    0 16px 44px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.buyer-step:hover{
  transform: translateY(-6px);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.74);
}

.buyer-step::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.buyer-step:hover::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

.buyer-step__top{
  display:flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.buyer-step__num{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .5px;
  color: #4b1fa6;
  text-shadow: 0 0 18px rgba(140,70,255,.25);
}

.buyer-step__name{
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: #111;
}

.buyer-step__desc{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #222;
}

.buyer-steps__trust{
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ✅ TRUST PILL (PREMIUM HOVER) */
.trust-pill{
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13.5px;
  color: #2b136e;
  background: linear-gradient(
    120deg,
    rgba(184,214,255,.55),
    rgba(228,200,255,.62),
    rgba(255,214,242,.55),
    rgba(214,255,240,.55)
  );
  box-shadow:
    0 12px 28px rgba(120,80,255,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.72);
  white-space: nowrap;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.trust-pill::before{
  content:"";
  position:absolute;
  inset: 4px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.trust-pill:hover{
  transform: translateY(-3px);
  filter: brightness(0.99) saturate(1.15);
  box-shadow:
    0 18px 44px rgba(120,80,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.78);
}

.trust-pill:hover::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

.buyer-steps__cta{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #111;
  background: rgba(255,255,255,0.86);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.76);
  transition: transform .25s ease, filter .25s ease;
  white-space: nowrap;
}

.cta-btn:hover{
  transform: translateY(-4px);
  filter: brightness(0.98) saturate(1.2);
}

.cta-btn--wa:hover { background:#25d366; color:#fff; }
.cta-btn--fb:hover { background:#1877f2; color:#fff; }
.cta-btn--ig:hover{
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
  color:#fff;
}
.cta-btn--em:hover { background:#ea4335; color:#fff; }

.buyer-steps__note{
  position: relative;
  z-index: 1;
  margin: 12px auto 0;
  max-width: 900px;
  text-align: center;
  font-size: 14px;
  color: #222;
  opacity: .95;
}

/* ================= FOOTER ================= */
.site-footer{
  padding: 22px var(--pad-x) calc(30px + var(--safe-bottom));
}

.site-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 34px;
  padding: 24px 18px;

  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(16px);
  box-shadow:
    0 30px 110px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.70);
  position: relative;
  overflow: hidden;
}

.site-footer__inner::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: conic-gradient(
    from 200deg,
    rgba(0,229,255,0.18),
    rgba(140,70,255,0.18),
    rgba(255,43,214,0.16),
    rgba(52,255,138,0.16),
    rgba(255,184,77,0.18),
    rgba(0,229,255,0.18)
  );
  filter: blur(50px);
  opacity: .95;
  animation: footerGlow 16s linear infinite;
  pointer-events:none;
}

@keyframes footerGlow{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

.site-footer__brand--simple{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.site-footer__name{
  margin: 0;
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 32px);
  color: #2b136e;
  text-shadow:
    0 2px 0 rgba(255,255,255,.9),
    0 10px 30px rgba(140,70,255,.18);
}

.site-footer__tag{
  margin: 0;
  max-width: 900px;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.45;
  color: #222;
  opacity: .95;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .buyer-steps__grid{ grid-template-columns: 1fr; }
  .home-info__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .brandrow__text { font-size: 16px; }
  .brandrow__logo { height: 42px; }

  .page-box { padding: 34px 18px; margin: 30px auto; }
  .site-footer__inner{ padding: 22px 16px; }
  .home-hero__frame{ padding: 14px; }
}

/* ================= TOUCH DEVICES ================= */
@media (hover: none) {
  .topbar:hover { filter: none; }
  .cta-btn:hover{ transform: none; }

  .buyer-step:hover{ transform: none; }
  .buyer-step:hover::before{ opacity: 0; animation: none; }

  .info-card:hover,
  .punch-card:hover{ transform:none; }
  .info-card:hover::before,
  .punch-card:hover::before{ opacity:0; animation:none; }

  .trust-pill:hover{ transform:none; }
  .trust-pill:hover::before{ opacity:0; animation:none; }

  .home-hero__frame::before{ animation: none; }
  .home-hero__marquee::before{ animation: none; opacity: .35; }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .buyer-steps__inner::before{ animation: none; }
  .site-footer__inner::before{ animation: none; }
  .buyer-step:hover::before{ animation: none; }
  .info-card:hover::before,
  .punch-card:hover::before{ animation: none; }
  .home-hero__frame::before{ animation: none; }
  .home-hero__marquee::before{ animation: none; }
}

/* ======================= SW NAV DROPDOWN ======================= */
.swNavDrop{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 950;
  top: 100%;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);

  opacity: 0;
  transform: translate3d(0,-10px,0);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.swNavDrop.is-open{
  opacity: 1;
  transform: translate3d(0,0,0);
  pointer-events: auto;
}

.swNavDrop__inner{
  max-width: 1400px;
  margin: 8px auto 0;
  border-radius: 26px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(18px);
  box-shadow:
    0 40px 140px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.70);
  position: relative;
  overflow: hidden;

  display: grid;
  gap: 18px 18px;                         /* ✅ calm spacing */
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* ✅ 4 + 4 + 2 layout */
  justify-items: stretch;
  align-items: center;
}

.swNavDrop__inner::before{
  content:"";
  position:absolute;
  inset:-45%;
  background: conic-gradient(
    from 180deg,
    rgba(0,229,255,0.14),
    rgba(140,70,255,0.16),
    rgba(255,43,214,0.12),
    rgba(52,255,138,0.12),
    rgba(255,184,77,0.14),
    rgba(0,229,255,0.14)
  );
  filter: blur(54px);
  opacity: .92;
  animation: swGlow 14s linear infinite;
  pointer-events:none;
}

@keyframes swGlow{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

.swNavDrop__item{
  width: 100%;                    /* ✅ equal width in each grid cell */
  text-align: center;
  border: 0;
  cursor: pointer;
  padding: 16px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.74);
  font-weight: 900;
  letter-spacing: .35px;
  color: #111;
  transition: transform .20s ease, filter .20s ease, box-shadow .20s ease;
  position: relative;
  overflow: hidden;
  white-space: normal;           /* ✅ allow wrapping where needed (no overflow) */
  min-height: 54px;
  line-height: 1.15;
}

.swNavDrop__item::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: 0;
  transition: opacity .20s ease;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.swNavDrop__item:hover{
  transform: translateY(-3px);
  filter: brightness(0.99) saturate(1.18);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.82);
}

.swNavDrop__item:hover::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

.swNavDrop__item:active{
  transform: translateY(-1px) scale(0.99);
  filter: brightness(0.98) saturate(1.2);
}

.swNavDrop__item:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0,229,255,0.40),
    0 18px 60px rgba(120,80,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.82);
}

.swNavDrop__item.is-active{
  background: linear-gradient(120deg,#b8d6ff,#e4c8ff,#ffd6f2,#d6fff0);
  box-shadow:
    0 30px 110px rgba(120,80,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.86);
}

.swNavDrop__item.is-active::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

/* ✅ keep PERFORMANCE T-SHIRTS in one line (desktop) */
@media (min-width: 901px){
  .swNavDrop__item[data-swcat="tshirts"]{ white-space: nowrap; }
}
@media (max-width: 900px){
  .swNavDrop__inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 420px){
  .swNavDrop__inner{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .swNavDrop__inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .swNavDrop__item{ font-size: 14px; padding: 14px 14px; white-space: normal; word-break: break-word; }
}

/* ======================= SW2070 (UPDATED) ======================= */
.sw2070{
  padding: calc(var(--swbar-height) + 10px) var(--pad-x) var(--section-y);
}

.sw2070__shell{
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 34px;
  padding: clamp(16px, 2.6vw, 22px);
  background: rgba(255,255,255,0.86);
  box-shadow:
    0 36px 120px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.65);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sw2070__shell::before{
  content:"";
  position:absolute;
  inset:-45%;
  background: conic-gradient(
    from 180deg,
    rgba(0,229,255,0.16),
    rgba(140,70,255,0.18),
    rgba(255,43,214,0.14),
    rgba(52,255,138,0.14),
    rgba(255,184,77,0.16),
    rgba(0,229,255,0.16)
  );
  filter: blur(48px);
  opacity: .92;
  animation: swGlow 14s linear infinite;
  pointer-events:none;
}

.sw2070__menu{ display: none; }

.sw2070__stage{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: clamp(16px, 2.4vw, 22px);
  background:
    radial-gradient(90% 120% at 18% 40%, rgba(0,229,255,0.14), rgba(255,255,255,0) 60%),
    radial-gradient(90% 120% at 82% 55%, rgba(199,125,255,0.14), rgba(255,255,255,0) 62%),
    linear-gradient(120deg, rgba(184,214,255,0.22), rgba(228,200,255,0.20), rgba(214,255,240,0.16), rgba(255,214,242,0.18));
  box-shadow:
    0 30px 90px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.62);
  overflow: hidden;
}

.sw2070__head{ display: grid; gap: 8px; margin-bottom: 14px; }

.sw2070__title{
  margin: 0;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 46px);
  color: #2b136e;
  text-shadow:
    0 2px 0 rgba(255,255,255,.9),
    0 10px 30px rgba(140,70,255,.18);
}

.sw2070__sub{ display: none; }

.sw2070__grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

/* product card */
.swCard{
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.74);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  position: relative;
  overflow: hidden;
}

.swCard:hover{
  transform: translateY(-6px);
  filter: saturate(1.03);
  box-shadow:
    0 34px 130px rgba(0,0,0,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.86);
}

.swCard:active{
  transform: translateY(-2px) scale(0.99);
}

/* media bigger */
.swCard__media{
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* ✅ 2070 FRAME BORDER around IMAGE (4 sides) */
.swCard__media::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: 0;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  transition: opacity .22s ease;
}

.swCard__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  background: #ffffff;
}

/* ✅ OUTER BORDER/GLOW (NO OVERLAY INSIDE IMAGE) */
.swCard:hover .swCard__media{
  box-shadow:
    0 0 0 2px rgba(0,229,255,0.95),
    0 0 0 4px rgba(199,125,255,0.55),
    0 0 0 6px rgba(255,43,214,0.25),
    0 18px 55px rgba(120,80,255,0.22),
    inset 0 0 0 1px rgba(0,0,0,0.04);
}

.swCard:hover .swCard__media::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

/* shimmer only inside image area */
.swCard__media::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg,
    rgba(0,229,255,0.0),
    rgba(0,229,255,0.14),
    rgba(255,43,214,0.10),
    rgba(52,255,138,0.10),
    rgba(0,229,255,0.0)
  );
  transform: rotate(12deg) translateX(-30%);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events:none;
}

.swCard:hover .swCard__media::after{
  opacity: 1;
  transform: rotate(12deg) translateX(30%);
}

.swCard__name{
  margin: 12px 2px 0;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .35px;
  color: #111;
  text-transform: uppercase;
}

/* Modal */
.sw2070-modal{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.sw2070-modal.is-open{
  display: grid;
  place-items: center;
}

.sw2070-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(10, 10, 18, 0.58);
  backdrop-filter: blur(14px);
}

.sw2070-modal__panel{
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 22px));
  border-radius: 28px;
  padding: clamp(14px, 2.2vw, 18px);
  background: rgba(255,255,255,0.88);
  box-shadow:
    0 50px 160px rgba(0,0,0,0.32),
    inset 0 0 0 1px rgba(255,255,255,0.72);
  overflow: hidden;
}

.sw2070-modal__panel::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: conic-gradient(
    from 180deg,
    rgba(0,229,255,0.18),
    rgba(140,70,255,0.18),
    rgba(255,43,214,0.16),
    rgba(52,255,138,0.16),
    rgba(255,184,77,0.18),
    rgba(0,229,255,0.18)
  );
  filter: blur(50px);
  opacity: .9;
  animation: swGlow 14s linear infinite;
  pointer-events:none;
}

.sw2070-modal__close{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: #111;
  background: rgba(255,255,255,0.82);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.74);
  transition: transform .18s ease, filter .18s ease;
  z-index: 2;
}
.sw2070-modal__close:hover{
  transform: translateY(-2px);
  filter: saturate(1.2);
}

.sw2070-modal__top{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.sw2070-modal__media{
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 22px 70px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  padding: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}

.sw2070-modal__media::before{
  content:"";
  position:absolute;
  inset: 8px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: .55;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  animation: borderShift 12s linear infinite;
}

.sw2070-modal__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.sw2070-modal__name{
  margin: 6px 0 10px;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 26px);
  color: #2b136e;
  text-shadow:
    0 2px 0 rgba(255,255,255,.9),
    0 10px 30px rgba(140,70,255,.18);
}

.sw2070-modal__specs{
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.swSpec{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.72);
}

.swSpec__k{ font-weight: 900; color: #111; }
.swSpec__v{ font-weight: 700; color: #222; opacity: .95; text-align: right; }

.sw2070-modal__cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.swNeoBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.76);
  transition: transform .22s ease, filter .22s ease;
  white-space: nowrap;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #111;
  background: rgba(255,255,255,0.86);
}

.swNeoBtn:hover{ transform: translateY(-3px); filter: saturate(1.2); }
.swNeoBtn--wa:hover{ background:#25d366; color:#fff; }
.swNeoBtn--em:hover{ background:#ea4335; color:#fff; }

/* ✅ Boxing + Martial modal buttons (match Sportswear) */
.bxNeoBtn,
.maNeoBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.76);
  transition: transform .22s ease, filter .22s ease;
  white-space: nowrap;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #111;
  background: rgba(255,255,255,0.86);
}

.bxNeoBtn:hover,
.maNeoBtn:hover{ transform: translateY(-3px); filter: saturate(1.2); }

.bxNeoBtn--wa:hover,
.maNeoBtn--wa:hover{ background:#25d366; color:#fff; }

.bxNeoBtn--em:hover,
.maNeoBtn--em:hover{ background:#ea4335; color:#fff; }

.sw2070-modal__note{
  margin: 10px 0 0;
  font-size: 14px;
  color: #222;
  opacity: .92;
}

@media (max-width: 1000px){
  .sw2070__grid{ grid-template-columns: 1fr; }
  .sw2070-modal__top{ grid-template-columns: 1fr; }
  .sw2070-modal__media{ height: 320px; }
  .swCard__media{ height: 320px; }
}

@media (max-width: 560px){
  .swCard__media{ height: 260px; }
}


@media (max-width: 1000px){
  .bx2070__grid,
  .ma2070__grid{ grid-template-columns: 1fr; }
  .bxCard__media,
  .maCard__media{ height: 320px; }
}

@media (max-width: 560px){
  .bxCard__media,
  .maCard__media{ height: 260px; }
}


/* ======================= BOXING + MARTIAL (ADDED - SAME AS SPORTSWEAR) ======================= */

/* ✅ Dropdown containers (same behavior as .swNavDrop) */
.bxNavDrop,
.maNavDrop{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 950;
  top: 100%;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);

  opacity: 0;
  transform: translate3d(0,-10px,0);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.bxNavDrop.is-open,
.maNavDrop.is-open{
  opacity: 1;
  transform: translate3d(0,0,0);
  pointer-events: auto;
}

.bxNavDrop__inner,
.maNavDrop__inner{
  max-width: 1400px;
  margin: 8px auto 0;
  border-radius: 26px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(18px);
  box-shadow:
    0 40px 140px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.70);
  position: relative;
  overflow: hidden;

  display: grid;
  gap: 18px 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: stretch;
  align-items: center;
}

.bxNavDrop__inner::before,
.maNavDrop__inner::before{
  content:"";
  position:absolute;
  inset:-45%;
  background: conic-gradient(
    from 180deg,
    rgba(0,229,255,0.14),
    rgba(140,70,255,0.16),
    rgba(255,43,214,0.12),
    rgba(52,255,138,0.12),
    rgba(255,184,77,0.14),
    rgba(0,229,255,0.14)
  );
  filter: blur(54px);
  opacity: .92;
  animation: swGlow 14s linear infinite;
  pointer-events:none;
}

/* ======================= FIX: ACTIVE HIGHLIGHT FOR BOXING/MARTIAL EVEN IF BUTTON CLASS REUSED ======================= */
.bxNavDrop__item,
.maNavDrop__item,
.bxNavDrop .swNavDrop__item,
.maNavDrop .swNavDrop__item{
  width: 100%;
  text-align: center;
  border: 0;
  cursor: pointer;
  padding: 16px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.74);
  font-weight: 900;
  letter-spacing: .35px;
  color: #111;
  transition: transform .20s ease, filter .20s ease, box-shadow .20s ease;
  position: relative;
  overflow: hidden;
  white-space: normal;
  min-height: 54px;
  line-height: 1.15;
}

.bxNavDrop__item::before,
.maNavDrop__item::before,
.bxNavDrop .swNavDrop__item::before,
.maNavDrop .swNavDrop__item::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: 0;
  transition: opacity .20s ease;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.bxNavDrop__item:hover,
.maNavDrop__item:hover,
.bxNavDrop .swNavDrop__item:hover,
.maNavDrop .swNavDrop__item:hover{
  transform: translateY(-3px);
  filter: brightness(0.99) saturate(1.18);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.82);
}

.bxNavDrop__item:hover::before,
.maNavDrop__item:hover::before,
.bxNavDrop .swNavDrop__item:hover::before,
.maNavDrop .swNavDrop__item:hover::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

.bxNavDrop__item:active,
.maNavDrop__item:active,
.bxNavDrop .swNavDrop__item:active,
.maNavDrop .swNavDrop__item:active{
  transform: translateY(-1px) scale(0.99);
  filter: brightness(0.98) saturate(1.2);
}

.bxNavDrop__item:focus-visible,
.maNavDrop__item:focus-visible,
.bxNavDrop .swNavDrop__item:focus-visible,
.maNavDrop .swNavDrop__item:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0,229,255,0.40),
    0 18px 60px rgba(120,80,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.82);
}

.bxNavDrop__item.is-active,
.maNavDrop__item.is-active,
.bxNavDrop .swNavDrop__item.is-active,
.maNavDrop .swNavDrop__item.is-active{
  background: linear-gradient(120deg,#b8d6ff,#e4c8ff,#ffd6f2,#d6fff0);
  box-shadow:
    0 30px 110px rgba(120,80,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.86);
}

.bxNavDrop__item.is-active::before,
.maNavDrop__item.is-active::before,
.bxNavDrop .swNavDrop__item.is-active::before,
.maNavDrop .swNavDrop__item.is-active::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

@media (max-width: 1180px){
  .bxNavDrop__inner,
  .maNavDrop__inner{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px){
  .bxNavDrop__inner,
  .maNavDrop__inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ✅ Boxing + Martial 2070 wrappers (same as .sw2070) */
.bx2070,
.ma2070{
  padding: calc(var(--swbar-height) + 10px) var(--pad-x) var(--section-y);
}

.bx2070__shell,
.ma2070__shell{
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 34px;
  padding: clamp(16px, 2.6vw, 22px);
  background: rgba(255,255,255,0.86);
  box-shadow:
    0 36px 120px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.65);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bx2070__shell::before,
.ma2070__shell::before{
  content:"";
  position:absolute;
  inset:-45%;
  background: conic-gradient(
    from 180deg,
    rgba(0,229,255,0.16),
    rgba(140,70,255,0.18),
    rgba(255,43,214,0.14),
    rgba(52,255,138,0.14),
    rgba(255,184,77,0.16),
    rgba(0,229,255,0.16)
  );
  filter: blur(48px);
  opacity: .92;
  animation: swGlow 14s linear infinite;
  pointer-events:none;
}

.bx2070__menu,
.ma2070__menu{ display: none; }

.bx2070__stage,
.ma2070__stage{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: clamp(16px, 2.4vw, 22px);
  background:
    radial-gradient(90% 120% at 18% 40%, rgba(0,229,255,0.14), rgba(255,255,255,0) 60%),
    radial-gradient(90% 120% at 82% 55%, rgba(199,125,255,0.14), rgba(255,255,255,0) 62%),
    linear-gradient(120deg, rgba(184,214,255,0.22), rgba(228,200,255,0.20), rgba(214,255,240,0.16), rgba(255,214,242,0.18));
  box-shadow:
    0 30px 90px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.62);
  overflow: hidden;
}

.bx2070__head,
.ma2070__head{ display: grid; gap: 8px; margin-bottom: 14px; }

.bx2070__title,
.ma2070__title{
  margin: 0;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 46px);
  color: #2b136e;
  text-shadow:
    0 2px 0 rgba(255,255,255,.9),
    0 10px 30px rgba(140,70,255,.18);
}

.bx2070__sub,
.ma2070__sub{ display: none; }

.bx2070__grid,
.ma2070__grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

/* ✅ Reuse swCard styling for boxing/martial cards too (if JS renders swCard) */
.bxCard,
.maCard{
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.74);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  position: relative;
  overflow: hidden;
}

.bxCard:hover,
.maCard:hover{
  transform: translateY(-6px);
  filter: saturate(1.03);
  box-shadow:
    0 34px 130px rgba(0,0,0,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.86);
}

.bxCard:active,
.maCard:active{
  transform: translateY(-2px) scale(0.99);
}

.bxCard__media,
.maCard__media{
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.bxCard__media::before,
.maCard__media::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: 0;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  transition: opacity .22s ease;
}

.bxCard__media img,
.maCard__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  background: #ffffff;
}

.bxCard:hover .bxCard__media,
.maCard:hover .maCard__media{
  box-shadow:
    0 0 0 2px rgba(0,229,255,0.95),
    0 0 0 4px rgba(199,125,255,0.55),
    0 0 0 6px rgba(255,43,214,0.25),
    0 18px 55px rgba(120,80,255,0.22),
    inset 0 0 0 1px rgba(0,0,0,0.04);
}

.bxCard:hover .bxCard__media::before,
.maCard:hover .maCard__media::before{
  opacity: 1;
  animation: borderShift 12s linear infinite;
}

.bxCard__media::after,
.maCard__media::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg,
    rgba(0,229,255,0.0),
    rgba(0,229,255,0.14),
    rgba(255,43,214,0.10),
    rgba(52,255,138,0.10),
    rgba(0,229,255,0.0)
  );
  transform: rotate(12deg) translateX(-30%);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events:none;
}

.bxCard:hover .bxCard__media::after,
.maCard:hover .maCard__media::after{
  opacity: 1;
  transform: rotate(12deg) translateX(30%);
}

.bxCard__name,
.maCard__name{
  margin: 12px 2px 0;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .35px;
  color: #111;
  text-transform: uppercase;
}

/* ================= FIX: Boxing/Martial start under navbar (same as Sportswear) ================= */
.page[data-page="boxing"] .page-box,
.page[data-page="martial"] .page-box{
  display: none;
  margin: 0;
  padding: 0;
}

/* ======================= CN SEARCH (ADD-ON / SCOPED) ======================= */
.cnSearch{
  position: relative;
  margin-left: auto;
  min-width: 280px;
  max-width: 420px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cnSearch__wrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10, 12, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    0 0 0 1px rgba(0,255,200,0.08) inset;
}

.cnSearch__icon{
  font-weight: 900;
  opacity: 0.9;
  user-select: none;
}

.cnSearch__input{
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.cnSearch__input::placeholder{
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

.cnSearch__clear{
  border: 0;
  outline: 0;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 140ms ease, background 140ms ease;
}

.cnSearch__clear:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}

.cnSearch__panel{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8, 10, 14, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  transform-origin: top;
  transform: scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 9999;
}

.cnSearch__panel.is-open{
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.cnSearch__row{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.cnSearch__row:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,255,200,0.22);
}

.cnSearch__thumb{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}

.cnSearch__meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cnSearch__title{
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cnSearch__hint{
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cnSearch__empty{
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.cnSearch__emptyTitle{
  font-weight: 900;
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
}

.cnSearch__emptyText{
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  font-size: 12.5px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.cnSearch__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cnSearch__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12.5px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.cnSearch__btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(0,255,200,0.22);
}

.cnSearch__pulse{
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,255,200,0.12) inset, 0 0 26px rgba(0,255,200,0.10);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cnSearch__wrap:focus-within .cnSearch__pulse{
  opacity: 1;
}

/* highlight when matched target found */
.cnSearchHit{
  outline: 3px solid rgba(0,255,200,0.45);
  outline-offset: 4px;
  border-radius: 18px;
  scroll-margin-top: 120px;
}

/* Responsive: keep navbar clean */
@media (max-width: 920px){
  .cnSearch{
    min-width: 210px;
    max-width: 320px;
  }
}
@media (max-width: 640px){
  .cnSearch{
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-top: 10px;
  }
  .navbar-inner{
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* ======================= /CN SEARCH ======================= */
/* ===== CN SEARCH helpers ===== */
.cnSearch__panel.is-open { display: block; }

.cnSearch__hit{
  outline: 2px solid rgba(255,255,255,.6);
  box-shadow: 0 0 20px rgba(255,255,255,.25);
  border-radius: 14px;
  transition: .2s ease;
}

/* =====================================================================
   FIX: Boxing + Martial modals were missing styles (so they looked broken).
   We reuse the same 2070 modal system as Sportswear.
   ===================================================================== */

/* Overlay */
.bx2070-modal,
.ma2070-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 18px;
}

.bx2070-modal.is-open,
.ma2070-modal.is-open{ display: grid; }

.bx2070-modal__backdrop,
.ma2070-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.bx2070-modal__panel,
.ma2070-modal__panel{
  position: relative;
  width: min(980px, 96vw);
  max-height: min(86vh, 900px);
  overflow: auto;
  border-radius: 22px;
}

.bx2070-modal__close,
.ma2070-modal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}

.bx2070-modal__top,
.ma2070-modal__top{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  padding: 18px;
}

@media (max-width: 900px){
  .bx2070-modal__top,
  .ma2070-modal__top{ grid-template-columns: 1fr; }
}

.bx2070-modal__media,
.ma2070-modal__media{
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.8);
}

@media (max-width: 900px){
  .bx2070-modal__media,
  .ma2070-modal__media{ height: 360px; }
}

.bx2070-modal__media img,
.ma2070-modal__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bx2070-modal__name,
.ma2070-modal__name{ margin: 0 0 10px; }

.bx2070-modal__specs,
.ma2070-modal__specs{ display: grid; gap: 10px; }

.bx2070-modal__cta,
.ma2070-modal__cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* =====================================================================
   ✅ Visual parity fix (Sportswear = Boxing = Martial)
   Problem: Boxing/Martial modal media looked "too big / off" vs Sportswear.
   Solution: Reuse the same sizing + centered media frame + soft panel styling.
   NOTE: This is additive/safe override (does NOT remove your existing rules).
   ===================================================================== */

.bx2070-modal{ z-index: 3000; }
.ma2070-modal{ z-index: 3000; }

.bx2070-modal__panel,
.ma2070-modal__panel{
  width: min(980px, calc(100% - 22px));
  border-radius: 28px;
  padding: clamp(14px, 2.2vw, 18px);
  background: rgba(255,255,255,0.88);
  box-shadow:
    0 50px 160px rgba(0,0,0,0.32),
    inset 0 0 0 1px rgba(255,255,255,0.72);
  overflow: hidden;
}

.bx2070-modal__top,
.ma2070-modal__top{
  position: relative;
  z-index: 1;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 14px;
  padding: 0;
}

.bx2070-modal__media,
.ma2070-modal__media{
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 22px 70px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  padding: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}

.bx2070-modal__media::before,
.ma2070-modal__media::before{
  content:"";
  position:absolute;
  inset: 8px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #34ff8a,
    #ffe15a,
    #ff7a4d,
    #ff2bd6,
    #c77dff,
    #3b82f6,
    #00e5ff
  );
  background-size: 420% 420%;
  opacity: .55;
  pointer-events:none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  animation: borderShift 12s linear infinite;
}

.bx2070-modal__media img,
.ma2070-modal__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.bx2070-modal__close,
.ma2070-modal__close{
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: #111;
  background: rgba(255,255,255,0.82);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.74);
  transition: transform .18s ease, filter .18s ease;
  z-index: 2;
}

.bx2070-modal__close:hover,
.ma2070-modal__close:hover{
  transform: translateY(-2px);
  filter: saturate(1.2);
}

@media (max-width: 1000px){
  .bx2070-modal__top,
  .ma2070-modal__top{ grid-template-columns: 1fr; }
  .bx2070-modal__media,
  .ma2070-modal__media{ height: 320px; }
}

/* ===================== MODAL FULL VIEW (MOBILE FIX) ===================== */
.sw2070-modal__panel,
.bx2070-modal__panel,
.ma2070-modal__panel{
  max-height: 85vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sw2070-modal__media img,
.bx2070-modal__media img,
.ma2070-modal__media img{
  width: 100%;
  height: auto;
  display: block;
}
/* ===================== HEADER HIDE ON SCROLL (ADDED) ===================== */
.topbar, .navbar{
  transition: transform .22s ease;
  will-change: transform;
}

body.header-hidden .topbar,
body.header-hidden .navbar{
  transform: translateY(-120%);
}
/* ===================== NAVBAR HIDE ON SCROLL (PATCH) ===================== */
/* Topbar always visible. Only navbar + search hides. */

.navbar,
.cnSearch{
  transition: transform .22s ease;
  will-change: transform;
}

/* Hide navbar + search when body has class */
body.nav-hidden .navbar,
body.nav-hidden .cnSearch{
  transform: translateY(-130%);
}
.swSpecLine{
  background: rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.swSpecLine__k{
  font-weight: 800;
}

.swSpecLine__v{
  font-weight: 700;
  opacity: 0.9;
}


/* ================= PRODUCT VIEW (NEW PAGE MODE) ================= */
.cnProductView {
  width: 100%;
  padding: 18px 14px 28px;
}

.cnProductView__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cnProductView__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: sticky;
  top: calc(var(--fixed-offset, 0px) + 8px);
  z-index: 60;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.cnPVBtn{
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;

  background: #0b0f1a;
  color: #ffe15a;
  border: 2px solid #000; /* thin black outline for contrast */
  box-shadow:
    0 10px 28px rgba(0,0,0,0.18),
    0 0 0 2px rgba(255,225,90,0.35);

  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
  text-shadow: 0 1px 0 rgba(0,0,0,0.65);
}

.cnPVBtn:hover{
  transform: translateY(-2px);
  filter: saturate(1.15);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.22),
    0 0 0 2px rgba(0,229,255,0.30),
    0 0 0 4px rgba(255,43,214,0.16);
}

.cnPVBtn:active{
  transform: translateY(0px) scale(0.98);
}


.cnPVBtn:active{
  transform: translateY(0px) scale(0.98);
}

.cnProductView__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.cnProductView__media {
  border-radius: 18px;
  background: rgba(255,255,255,.6);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

/* animated border like cards */
.cnProductView__media::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(0,255,200,0.9), rgba(255,120,0,0.9), rgba(170,0,255,0.9));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: cnHue 6s linear infinite;
  pointer-events: none;
  opacity: 0.85;
}

@keyframes cnHue{
  0%{ filter: hue-rotate(0deg); }
  100%{ filter: hue-rotate(360deg); }
}

.cnProductView__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.cnProductView__info {
  border-radius: 18px;
  background: rgba(255,255,255,.6);
  padding: 16px;
}

.cnProductView__title {
  margin: 0 0 12px;
  font-size: clamp(20px, 3.2vw, 28px);
}

.cnProductView__specs {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cnPVSpecRow {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,.7);
  border-radius: 14px;
  padding: 10px 12px;
}

.cnPVSpecKey { font-weight: 800; }
.cnPVSpecVal { opacity: .9; }

.cnProductView__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cnPVAction{
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;

  background: #0b0f1a;
  color: #ffe15a;
  border: 2px solid #000;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.18),
    0 0 0 2px rgba(255,225,90,0.35);

  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
  text-shadow: 0 1px 0 rgba(0,0,0,0.65);
}

.cnPVAction:hover{
  transform: translateY(-2px);
  filter: saturate(1.2);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.22),
    0 0 0 2px rgba(52,255,138,0.28),
    0 0 0 4px rgba(0,229,255,0.18);
}

.cnPVAction:active{
  transform: translateY(0px) scale(0.98);
}


.cnPVAction:active{
  transform: translateY(0px) scale(0.98);
}

.cnProductView__process {
  margin-top: 18px;
}

/* Mobile */
@media (max-width: 860px) {
  .cnProductView__content {
    grid-template-columns: 1fr;
  }
  .cnPVSpecRow {
    grid-template-columns: 1fr;
  }
}



/* Product view should keep the SAME fixed header behavior as other pages.
   (No special overrides here.) */

/* ================= MOBILE GRID FIX (BOXING / MARTIAL TOO SMALL) ================= */
@media (max-width: 520px){
  .sw2070__grid{ grid-template-columns: 1fr; }
  .swCard__media{ height: 300px; padding: 8px; }

  /* Boxing + Martial should look like Sportswear on mobile (not skinny/tall) */
  .bx2070__grid,
  .ma2070__grid{ grid-template-columns: 1fr; }

  .bxCard__media,
  .maCard__media{ height: 300px; padding: 8px; }
}
