/* ============================================
   NAV V2 — Refined v2.4
   
   Changes from v2.3:
   - Desktop icon container 34px → 40px, stroke-width 1.5 → 2
   - Icon idle color lifted to rgba(255,255,255,0.70)
   - 18 purpose-matched SVG icons (see HTML file)
   - Mobile items: dot replaced with amber icon container
   ============================================ */

:root {
  --nv2-purple: #9e53ec;
  --nv2-purple-dark: #6d28d9;
  --nv2-amber: #fbbf24;                          /* NEW — logo-sourced golden yellow */
  --nv2-bg: rgba(12, 9, 22, 0.55);
  --nv2-bg-active: rgba(12, 9, 22, 0.42);
  --nv2-text: rgba(255,255,255,0.78);            /* was 0.62 — WCAG AA lift */
  --nv2-text-hover: #fff;
  --nv2-border: rgba(255,255,255,0.06);
  --nv2-radius: 100px;
  --nv2-mega-radius: 22px;
  --nv2-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nv2-font: "Manrope", system-ui, sans-serif;
}

/* Hide original header when V2 is active */
body.nav-v2-active > header:not(.nv2-header) { display: none !important; }

/* GTranslate Compatibility */
body.nav-v2-active #gt_float_wrapper { z-index: 998 !important; }
body.nav-v2-active .nv2-header.mega-open ~ #gt_float_wrapper,
body.nav-v2-active .nv2-header.mobile-open ~ #gt_float_wrapper { z-index: 990 !important; }

/* Skip Link */
.nv2-skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 10000;
  padding: 10px 20px; background: var(--nv2-purple); color: #fff;
  font: 600 14px/1 var(--nv2-font); text-decoration: none;
  border-radius: 0 0 8px 8px; transition: top 0.2s ease;
}
.nv2-skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }


/* ━━━ HEADER ━━━ */
.nv2-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  font-family: var(--nv2-font);
}

/* ─── Entrance animation ─── */
@keyframes nv2-drop-in {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nv2-pill {
  animation: nv2-drop-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}


/* ─── Pill Bar ─── */
.nv2-pill {
  max-width: var(--container-width);
  margin: 30px auto 0;
  padding: 6px 6px 6px 18px;
  border-radius: var(--nv2-radius);
  background: var(--nv2-bg);
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  border: 1px solid var(--nv2-border);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--nv2-transition), border-color var(--nv2-transition),
              margin var(--nv2-transition), padding var(--nv2-transition),
              box-shadow var(--nv2-transition);
}
.nv2-header.mega-open .nv2-pill,
.nv2-header.mobile-open .nv2-pill {
  background: var(--nv2-bg-active);
  border-color: rgba(158,83,236,0.1);
}
/* Scrolled: shrink + lift + purple glow */
.nv2-header.scrolled .nv2-pill {
  margin: 10px auto 0;
  padding: 4px 4px 4px 14px;
  background: rgba(12, 9, 22, 0.75);
  border-color: rgba(158,83,236,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(158,83,236,0.15);
}
@media (max-width: 991px) { .nv2-pill { padding: 10px 14px; margin: 20px auto 0; } }
@media (max-width: 991px) { .nv2-header.scrolled .nv2-pill { margin: 8px auto 0; padding: 8px 12px; } }
@media (max-width: 575px) { .nv2-pill { padding: 8px 12px 8px 16px; margin: 10px auto 0; } .nv2-mobile-right a.nv2-cta-btn.nv2-cta-sm { display: none; } }


/* ─── Logo ─── */
.nv2-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nv2-logo-img { height: 60px; width: auto; }
.nv2-logo-img-ai { height: 34px; margin-left: 10px; }
@media (max-width: 991px) { .nv2-logo-img { height: 52px; } .nv2-logo-img-ai { height: 30px; } }
@media (max-width: 575px) { .nv2-logo-img { height: 44px; } .nv2-logo-img-ai { height: 26px; } }


/* ─── Desktop Nav ─── */
.nv2-desktop-nav { display: flex; align-items: center; gap: 0; }
@media (max-width: 991px) { .nv2-desktop-nav { display: none; } }


/* ─── Nav Links ─── */
.nv2-nav-link {
  padding: 10px clamp(10px, 1.4vw, 18px);
  font-size: 18px; font-weight: 500;
  color: var(--nv2-text); text-decoration: none;
  transition: color 0.2s ease; white-space: nowrap;
  background: none; border: none; cursor: pointer;
  font-family: var(--nv2-font);
  display: flex; align-items: center; gap: 5px;
  position: relative;
}
/* Animated underline */
.nv2-nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; border-radius: 2px;
  background: var(--nv2-purple);
  transition: left 0.25s cubic-bezier(0.4,0,0.2,1), right 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
  opacity: 0;
}
.nv2-nav-link:hover::after { left: 14px; right: 14px; opacity: 0.6; }
/* Active page indicator */
.nv2-nav-link.nv2-active { color: #fff; }
.nv2-nav-link.nv2-active::after { left: 14px; right: 14px; opacity: 1; }

.nv2-nav-link:hover, .nv2-nav-link:focus-visible { color: var(--nv2-text-hover); }
.nv2-nav-link:focus-visible { outline: 2px solid var(--nv2-purple); outline-offset: 3px; border-radius: 6px; }
.nv2-chevron { transition: transform 0.25s ease; }
.nv2-header.mega-open .nv2-chevron { transform: rotate(180deg); }
.nv2-header.mega-open #nv2SolutionsBtn { color: var(--nv2-text-hover); }
.nv2-header.mega-open #nv2SolutionsBtn::after { left: 14px; right: 14px; opacity: 1; }

/* Font scaling at 1080p laptops */
@media (max-width: 1280px) {
  .nv2-nav-link { font-size: 16px; padding: 10px clamp(8px, 1vw, 14px); }
  .nv2-cta-btn { font-size: 16px; padding: 9px 20px; margin: 0 10px; }
}
@media (max-width: 1100px) {
  .nv2-nav-link { font-size: 15px; padding: 10px clamp(7px, 0.8vw, 12px); }
  .nv2-cta-btn { font-size: 15px; padding: 8px 16px; margin: 0 8px; }
}

/* Logo shrinks on scroll */
.nv2-header.scrolled .nv2-logo-img { height: 48px; transition: height 0.3s cubic-bezier(0.4,0,0.2,1); }
.nv2-header.scrolled .nv2-logo-img-ai { height: 28px; transition: height 0.3s cubic-bezier(0.4,0,0.2,1); }
.nv2-logo-img { transition: height 0.3s cubic-bezier(0.4,0,0.2,1); }
.nv2-logo-img-ai { transition: height 0.3s cubic-bezier(0.4,0,0.2,1); }


/* ─── CTA Button — gradient boosted for stronger contrast ─── */
.nv2-cta-btn {
  margin: 0 15px; padding: 10px 24px; border-radius: 100px;
  background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #7c3aed 100%); /* was #9e53ec start */
  color: #fff; font-size: 18px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.2px;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap; flex-shrink: 0;
  transition: all 0.25s ease;
}
.nv2-cta-btn:hover { box-shadow: 0 4px 24px rgba(168,85,247,0.45); transform: translateY(-1px); color: #fff; }
.nv2-cta-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.nv2-cta-sm { padding: 8px 18px; font-size: 13px; margin-left: 0; }


/* ─── Mobile Right ─── */
.nv2-mobile-right { display: none; align-items: center; gap: 10px; }
@media (max-width: 991px) { .nv2-mobile-right { display: flex; } }


/* ─── Hamburger ─── */
.nv2-hamburger {
  background: none; border: none; padding: 8px; cursor: pointer;
  width: 36px; height: 30px; position: relative;
}
.nv2-hamburger span {
  display: block; position: absolute; height: 1.5px; background: #fff;
  border-radius: 2px; left: 8px; width: 20px;
  transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nv2-hamburger span:nth-child(1) { top: 7px; }
.nv2-hamburger span:nth-child(2) { top: 13px; }
.nv2-hamburger span:nth-child(3) { top: 19px; }
.nv2-header.mobile-open .nv2-hamburger span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.nv2-header.mobile-open .nv2-hamburger span:nth-child(2) { opacity: 0; width: 0; }
.nv2-header.mobile-open .nv2-hamburger span:nth-child(3) { top: 13px; transform: rotate(-45deg); }
.nv2-hamburger:focus-visible { outline: 2px solid var(--nv2-purple); outline-offset: 3px; border-radius: 6px; }


/* ━━━ MEGA MENU ━━━ */
.nv2-mega {
  position: absolute; top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  width: min(95vw, 1090px);
  background: rgba(14, 10, 26, 0.96);
  backdrop-filter: blur(50px) saturate(1.5);
  -webkit-backdrop-filter: blur(50px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--nv2-mega-radius);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(158,83,236,0.04);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.nv2-header.mega-open .nv2-mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
@media (max-width: 991px) { .nv2-mega { display: none !important; } }


/* Mega Grid */
.nv2-mega-grid { display: grid; grid-template-columns: 280px 1fr 350px; min-height: 440px; }


/* Labels — lifted to 0.45 from 0.30 */
.nv2-mega-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.45); /* was 0.30 */
  padding: 0 12px; margin-bottom: 8px;
}
.nv2-mega-label.nv2-purple { color: var(--nv2-amber); }   /* v2.3 — amber, was purple */


/* Col 1: Categories */
.nv2-mega-categories {
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 20px 12px; display: flex; flex-direction: column; gap: 4px;
}
.nv2-cat-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 12px;
  border: none; cursor: pointer; font-family: var(--nv2-font);
  background: transparent; color: var(--nv2-text);
  font-size: 18px; font-weight: 400; text-align: left; width: 100%;
  transition: all 0.15s ease;
}
.nv2-cat-btn svg, .nv2-cat-btn i { opacity: 0; transition: opacity 0.15s ease; }
.nv2-cat-btn.active { background: rgba(158,83,236,0.1); color: #fff; font-weight: 600; }
.nv2-cat-btn.active svg, .nv2-cat-btn.active i { opacity: 1; }
.nv2-cat-btn:hover:not(.active) svg, .nv2-cat-btn:hover:not(.active) i { opacity: 0.5; }
.nv2-cat-btn:hover:not(.active) { background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.92); }
.nv2-cat-btn:focus-visible { outline: 2px solid var(--nv2-purple); outline-offset: -2px; border-radius: 12px; }


/* App Card */
.nv2-app-card {
  margin-top: auto; padding: 16px 14px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(158,83,236,0.08), rgba(109,40,217,0.04));
  border: 1px solid rgba(158,83,236,0.1);
}
.nv2-app-card-title { font-size: 17px; font-weight: 700; color: #c9a5f5; margin-bottom: 3px; }
.nv2-app-card-desc { font-size: 11px; color: rgba(255,255,255,0.50); line-height: 1.5; margin-bottom: 10px; } /* was 0.35 */
.nv2-app-card-links { display: flex; gap: 6px; }

/* Store buttons — pill with small brand icon */
.nv2-store-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; padding: 6px 13px; border-radius: 100px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.75);
  font-weight: 500; text-decoration: none; font-family: var(--nv2-font);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nv2-store-btn svg { flex-shrink: 0; opacity: 0.85; }
.nv2-store-btn:hover { background: rgba(255,255,255,0.13); color: #fff; }
.nv2-store-btn:hover svg { opacity: 1; }

/* Lucide icon sizing in item icon container */
.nv2-item-icon i[data-lucide] { display: flex; }
.nv2-item-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }

/* Small Lucide icons (arrow-right in cat buttons and mega-more) */
.nv2-icon-sm { display: inline-flex; align-items: center; }
.nv2-icon-sm svg { width: 14px; height: 14px; stroke-width: 2; }


/* Col 2: Items */
.nv2-mega-items { padding: 20px 14px; overflow-y: auto; border-right: 1px solid rgba(255,255,255,0.05); }
.nv2-item-group { display: none; flex-direction: column; gap: 2px; }
.nv2-item-group.active { display: flex; }

.nv2-mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; text-decoration: none;
  color: var(--nv2-text); font-size: 18px; font-weight: 400;
  transition: all 0.12s ease;
}
.nv2-mega-item:hover, .nv2-mega-item:focus-visible { background: rgba(158,83,236,0.08); color: #fff; }
.nv2-mega-item:focus-visible { outline: 2px solid var(--nv2-purple); outline-offset: -2px; border-radius: 10px; }

.nv2-item-icon {
  width: 40px; height: 40px; border-radius: 10px;   /* v2.4 — was 34px/8px */
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.70); /* v2.4 — was 0.50 */
  flex-shrink: 0; transition: all 0.15s ease;
}
.nv2-mega-item:hover .nv2-item-icon, .nv2-mega-item:focus-visible .nv2-item-icon {
  background: rgba(158,83,236,0.15); color: #c9a5f5;
}

.nv2-item-text { flex: 1; }

/* ─── Item Tags — amber chip treatment ─── */
.nv2-item-tag {
  font-size: 11px; padding: 3px 9px; border-radius: 100px;
  background: rgba(251,191,36,0.10);                /* amber tinted bg */
  color: #fbbf24;                                    /* amber text */
  border: 1px solid rgba(251,191,36,0.22);           /* amber border */
  font-weight: 600; flex-shrink: 0;
  letter-spacing: 0.2px;
}

.nv2-mega-more {
  padding: 12px 12px; font-size: 17px; font-weight: 600;
  color: var(--nv2-amber); text-decoration: none;           /* v2.3 — amber, was purple */
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
  transition: gap 0.2s ease, color 0.15s ease;
}
.nv2-mega-more:hover { gap: 10px; color: #fde68a; }         /* v2.3 — lighter amber on hover */

/* Wildlife sub-category divider in Col 1 */
.nv2-cat-divider {
  height: 1px; background: rgba(255,255,255,0.06);
  margin: 6px 14px;
}


/* Col 3: Preview */
.nv2-mega-preview { padding: 16px; display: flex; flex-direction: column; }
.nv2-preview-frame {
  flex: 1; border-radius: 14px; overflow: hidden; position: relative;
  background: #0a0714; border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.nv2-preview-frame img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  background: #0a0714;
  transition: opacity 0.3s ease;
}
.nv2-preview-frame img.loading { opacity: 0.3; }
.nv2-preview-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 40px 16px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
#nv2PreviewTitle { font-size: 18px; font-weight: 600; color: #fff; }
#nv2PreviewTag { font-size: 12px; color: rgba(255,255,255,0.62); } /* was 0.45 */


/* ━━━ MOBILE MENU — slide in from right ━━━ */
.nv2-mobile-overlay {
  position: fixed; top: 0; right: 0; width: 100%; height: 100dvh;
  background: rgba(8, 6, 14, 0.98);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  z-index: -1; opacity: 0; pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv2-header.mobile-open .nv2-mobile-overlay {
  opacity: 1; pointer-events: auto;
  transform: translateX(0);
}
@media (min-width: 992px) { .nv2-mobile-overlay { display: none !important; } }

/* ─── Mobile Scroll — calc padding per breakpoint + safe-area ─── */
.nv2-mobile-scroll {
  /* 
    Desktop pill height ~90px + 30px margin = 120px clearance
    Tablet ~82px + 20px = 102px → we use calc to match pill per breakpoint
  */
  padding: calc(90px + 20px) 20px calc(40px + env(safe-area-inset-bottom, 0px));
  height: 100%; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
@media (max-width: 767px) {
  .nv2-mobile-scroll {
    padding-top: calc(76px + 20px); /* smaller pill on tablets */
  }
}
@media (max-width: 575px) {
  .nv2-mobile-scroll {
    padding-top: calc(62px + 16px); /* smallest pill on phones */
  }
}

.nv2-mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.80); /* was 0.70 */
  font-size: 20px; font-weight: 500;
  text-decoration: none; font-family: var(--nv2-font);
  cursor: pointer; width: 100%; transition: all 0.15s ease;
}
.nv2-mob-link:hover, .nv2-mob-link:focus-visible { background: rgba(255,255,255,0.06); color: #fff; }
button.nv2-mob-link { text-align: left; }
.nv2-mob-chevron { transition: transform 0.25s ease; }
.nv2-mob-accordion.open .nv2-mob-chevron { transform: rotate(180deg); }

/* ─── Accordion open state — left border accent for clear visual signal ─── */
.nv2-mob-accordion.open {
  background: rgba(158,83,236,0.08);          /* was 0.06 — more visible */
  border-color: rgba(158,83,236,0.22);         /* was 0.10 — stronger */
  border-left: 3px solid var(--nv2-purple);    /* NEW — left accent stripe */
  padding-left: 15px;                          /* compensate for 3px border */
  color: #fff;
}

.nv2-mob-solutions { display: none; flex-direction: column; padding: 4px 0 8px; }
.nv2-mob-solutions.open { display: flex; }

/* ─── Mobile category labels — amber, with top divider for rhythm ─── */
.nv2-mob-cat-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nv2-amber);                   /* was var(--nv2-purple) */
  padding: 18px 18px 6px;
  border-top: 1px solid rgba(255,255,255,0.05); /* NEW — separator */
  margin-top: 4px;
}
.nv2-mob-solutions .nv2-mob-cat-label:first-child {
  border-top: none;                           /* no divider above first group */
  margin-top: 0;
}

/* ─── Mobile items — amber icon container replaces dot marker ─── */
.nv2-mob-item {
  padding: 10px 18px 10px 18px;             /* v2.4 — reset indent, icon handles it */
  border-radius: 10px; text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 19px; transition: all 0.12s ease;
  position: relative;
  display: flex; align-items: center; gap: 12px; /* v2.4 — flex for icon */
}
/* v2.4 — remove old dot pseudo-element */
.nv2-mob-item::before { display: none; }

/* v2.4 — amber icon container for mobile */
.nv2-mob-item .nv2-mob-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(251,191,36,0.08);
  color: rgba(251,191,36,0.65);
  transition: all 0.12s ease;
}
.nv2-mob-item:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nv2-mob-item:hover .nv2-mob-icon {
  background: rgba(251,191,36,0.14);
  color: #fbbf24;
}

.nv2-mob-more {
  padding: 11px 18px; font-size: 17px; font-weight: 600;
  color: var(--nv2-purple); text-decoration: none;
  margin-left: 14px;                         /* aligns with indented items */
}
.nv2-mob-more:hover { color: #c084fc; }

/* ─── Mobile CTA — align with scroll context ─── */
.nv2-mobile-scroll > .nv2-cta-btn.nv2-cta-sm {
  align-self: flex-start;
  margin: 4px 0 0 0;
}

/* ─── Mobile App Card — more breathing room ─── */
.nv2-mob-app-card {
  margin-top: 32px;                          /* was 20px */
  padding: 20px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(158,83,236,0.08), rgba(109,40,217,0.04));
  border: 1px solid rgba(158,83,236,0.12);   /* slightly stronger border */
}
.nv2-mob-app-links { display: flex; gap: 8px; margin-top: 12px; }
.nv2-mob-app-links .nv2-store-btn { font-size: 15px; padding: 8px 16px; }


/* Scrollbar */
.nv2-mega-items::-webkit-scrollbar, .nv2-mobile-scroll::-webkit-scrollbar { width: 3px; }
.nv2-mega-items::-webkit-scrollbar-track, .nv2-mobile-scroll::-webkit-scrollbar-track { background: transparent; }
.nv2-mega-items::-webkit-scrollbar-thumb, .nv2-mobile-scroll::-webkit-scrollbar-thumb { background: rgba(158,83,236,0.25); border-radius: 4px; }


/* Override original header bleed-through */
body.nav-v2-active header.nv2-header { background: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
body.nav-v2-active header.nv2-header .navbar { display: none !important; }
body.nav-v2-active header.nv2-header > .container { max-width: none; padding: 0; }


@media (max-width: 575px) {
  .gtranslate_wrapper {
    position: inherit !important;
  }
}


/* ━━━ SCROLL TO TOP BUTTON ━━━ */
.nv2-scroll-top {
  position: fixed; bottom: 100px; right: 32px; z-index: 998;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(168,85,247,0.4);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s ease;
  pointer-events: none;
}
.nv2-scroll-top.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nv2-scroll-top:hover {
  box-shadow: 0 6px 28px rgba(168,85,247,0.6);
  transform: translateY(-2px);
}
.nv2-scroll-top svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2.5; }
@media (max-width: 575px) { .nv2-scroll-top { bottom: 20px; right: 16px; } }


/* ━━━ REDUCED MOTION ━━━ */
@media (prefers-reduced-motion: reduce) {
  .nv2-pill { animation: none; }
  .nv2-pill,
  .nv2-nav-link,
  .nv2-nav-link::after,
  .nv2-mega,
  .nv2-mobile-overlay,
  .nv2-scroll-top,
  .nv2-logo-img,
  .nv2-logo-img-ai,
  .nv2-cat-btn,
  .nv2-mega-item,
  .nv2-mega-more,
  .nv2-hamburger span,
  .nv2-mob-chevron { transition: none !important; }
  .nv2-mobile-overlay { transform: none; }
}

@media only screen and (max-width: 1148px) { .nv2-mega { width: min(97vw, 1090px); } .nv2-mega-grid {grid-template-columns: 260px 1fr 302px;} .nv2-cat-btn,.nv2-mega-item,.nv2-cta-btn,#nv2PreviewTitle { font-size: 17px; } .nv2-store-btn{ font-size: 12px; } }
@media only screen and (max-width: 1024px) { .nv2-mega { width: min(98vw, 1090px); } .nv2-mega-grid {grid-template-columns: 255px 1fr 310px;} .nv2-cat-btn,.nv2-mega-item,.nv2-cta-btn,#nv2PreviewTitle { font-size: 16px; } .nv2-store-btn{ font-size: 11px; } }