/* ==============================================================
   Chrasherout Theme — SellAuth Custom CSS
   ============================================================== */

/* ---- Google Font Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --nc-bg:            #09090b;
  --nc-bg-card:       #0f0f10;
  --nc-bg-card-hover: #141416;
  --nc-bg-glass:      rgba(9, 9, 11, 0.72);
  --nc-blue:          #fafafa;
  --nc-blue-dark:     #e4e4e7;
  --nc-blue-glow:     rgba(255, 255, 255, 0.12);
  --nc-border:        rgba(255, 255, 255, 0.12);
  --nc-border-blue:   rgba(255, 255, 255, 0.22);
  --nc-text:          #fafafa;
  --nc-text-muted:    rgba(255, 255, 255, 0.64);
  --nc-radius:        0.5rem;
  --nc-radius-sm:     0.375rem;
  --nc-radius-pill:   9999px;
  --zh-primary-fg:    #09090b;
}

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

html,
body {
  background-color: var(--nc-bg) !important;
  color: var(--nc-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   ANNOUNCEMENT BAR
================================================================ */
.nc-announcement {
  background-color: #09091a;
  border-bottom: 1px solid var(--nc-border);
  color: var(--nc-text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.01em;
}

.nc-announcement a {
  color: var(--nc-blue);
  text-decoration: none;
}

.nc-announcement a:hover {
  text-decoration: underline;
}

/* ================================================================
   NAVBAR
================================================================ */
.nc-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nc-border);
}

.nc-nav-wrap {
  max-width: 85rem;
  margin: 0 auto;
}

.nc-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--nc-radius-sm);
  color: var(--nc-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s, transform 0.1s, opacity 0.15s;
}

.nc-nav-link:hover {
  color: var(--nc-text);
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nc-nav-link:active {
  transform: scale(0.93);
  opacity: 0.75;
}

.nc-nav-link-active {
  color: var(--nc-text) !important;
  background-color: rgba(79, 123, 248, 0.12);
}

.nc-nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--nc-radius-sm);
  background-color: transparent;
  color: var(--nc-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s, transform 0.1s, opacity 0.15s;
}

.nc-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--nc-text);
  text-decoration: none;
}

.nc-nav-btn:active {
  transform: scale(0.93);
  opacity: 0.75;
}

.nc-nav-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--nc-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nc-border);
  color: var(--nc-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s;
}

.nc-nav-cart-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.nc-nav-icon-btn {
  border-radius: var(--nc-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nc-border);
  color: var(--nc-text);
  transition: background-color 0.15s;
  cursor: pointer;
}

.nc-nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

.nc-nav-mobile-link {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--nc-radius-sm);
  color: var(--nc-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
}

.nc-nav-mobile-link:hover,
.nc-nav-mobile-link-active {
  color: var(--nc-text);
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* ================================================================
   HERO SECTION
================================================================ */
.nc-hero {
  position: relative;
  overflow: hidden;
}

.nc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 40%, rgba(79, 123, 248, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 60%, rgba(79, 123, 248, 0.06) 0%, transparent 70%);
}

.nc-hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.nc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--nc-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nc-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--nc-text);
}

.nc-trust-divider {
  width: 1px;
  height: 24px;
  background: var(--nc-border);
  display: inline-block;
  flex-shrink: 0;
}

.nc-hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nc-hero-gfx-box {
  width: 380px;
  height: 260px;
  border-radius: var(--nc-radius);
  border: 1px solid var(--nc-border-blue);
  background: linear-gradient(135deg, rgba(79, 123, 248, 0.08) 0%, rgba(6, 8, 18, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-hero-gfx-inner {
  text-align: center;
}

.nc-hero-img {
  border-radius: var(--nc-radius);
  filter: drop-shadow(0 0 40px rgba(79, 123, 248, 0.35));
  max-width: 480px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ================================================================
   BUTTONS
================================================================ */
.nc-btn {
  border-radius: var(--nc-radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.nc-btn-filled {
  background-color: var(--nc-blue);
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(79, 123, 248, 0.3);
}

.nc-btn-filled:hover {
  background-color: var(--nc-blue-dark);
  box-shadow: 0 0 28px rgba(79, 123, 248, 0.45);
  color: #ffffff !important;
  text-decoration: none;
}

.nc-btn-outline {
  background-color: transparent;
  color: var(--nc-text) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.nc-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--nc-text) !important;
  text-decoration: none;
}

/* ================================================================
   SECTION HEADERS
================================================================ */
.nc-section-header {
  text-align: center;
}

.nc-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nc-blue);
  background: rgba(79, 123, 248, 0.1);
  border: 1px solid rgba(79, 123, 248, 0.25);
  border-radius: var(--nc-radius-pill);
  padding: 4px 14px;
  margin-bottom: 12px;
}

.nc-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.nc-section-subtitle {
  font-size: 15px;
  color: var(--nc-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.nc-section-divider {
  width: 48px;
  height: 3px;
  border-radius: var(--nc-radius-pill);
  background: var(--nc-blue);
  margin: 18px auto 0;
  opacity: 0.65;
}

/* ================================================================
   PRODUCT CARDS
================================================================ */
.nc-product-card {
  border-radius: var(--nc-radius);
  border: 1px solid var(--nc-border);
  background-color: var(--nc-bg-card);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.nc-product-card:hover {
  border-color: var(--nc-border-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(79, 123, 248, 0.15);
  text-decoration: none;
}

.nc-product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #08091a;
}

.nc-product-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b0c1f 0%, #07080f 100%);
}

/* Badges */
.nc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: var(--nc-radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

.nc-badge-popular {
  background: rgba(251, 146, 60, 0.9);
  color: #ffffff;
}

.nc-badge-green {
  background: rgba(34, 197, 94, 0.9);
  color: #ffffff;
}

.nc-badge-red {
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
}

.nc-badge-blue {
  background: rgba(79, 123, 248, 0.9);
  color: #ffffff;
}

.nc-badge-orange {
  background: rgba(251, 146, 60, 0.9);
  color: #ffffff;
}

/* Buy Now button */
.nc-buy-btn {
  border-radius: var(--nc-radius-sm);
  background-color: var(--nc-blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s, box-shadow 0.15s;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nc-product-card:hover .nc-buy-btn {
  background-color: var(--nc-blue-dark);
  box-shadow: 0 4px 16px rgba(79, 123, 248, 0.4);
}

/* ================================================================
   FEATURES SECTION
================================================================ */
.nc-feature-card {
  padding: 24px;
  border-radius: var(--nc-radius);
  border: 1px solid var(--nc-border);
  background-color: var(--nc-bg-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nc-feature-card:hover {
  border-color: var(--nc-border-blue);
  box-shadow: 0 8px 30px rgba(79, 123, 248, 0.08);
}

.nc-feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--nc-radius-sm);
  background: rgba(79, 123, 248, 0.1);
  border: 1px solid rgba(79, 123, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.nc-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.nc-feature-desc {
  font-size: 13px;
  color: var(--nc-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   STATS SECTION
================================================================ */
.nc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--nc-border);
  border-radius: var(--nc-radius);
  overflow: hidden;
  border: 1px solid var(--nc-border);
}

@media (min-width: 768px) {
  .nc-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nc-stat-item {
  background: var(--nc-bg-card);
  padding: 32px 24px;
  text-align: center;
}

.nc-stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--nc-blue);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1;
}

.nc-stat-label {
  font-size: 12px;
  color: var(--nc-text-muted);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================================
   FOOTER
================================================================ */
.nc-footer {
  background-color: #040509;
}

.nc-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--nc-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nc-border);
  color: var(--nc-text-muted);
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
  text-decoration: none;
}

.nc-social-link:hover {
  color: var(--nc-blue);
  border-color: var(--nc-border-blue);
  background: rgba(79, 123, 248, 0.08);
  text-decoration: none;
}

.nc-footer-copy {
  font-size: 13px;
  color: var(--nc-text-muted);
  margin: 0;
}

.nc-footer-link {
  font-size: 13px;
  color: var(--nc-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nc-footer-link:hover {
  color: var(--nc-text);
  text-decoration: none;
}

/* ================================================================
   CONTAINER
================================================================ */
.container {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   FORM INPUTS
================================================================ */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea,
select {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--nc-border) !important;
  border-radius: var(--nc-radius-sm) !important;
  color: var(--nc-text) !important;
  font-family: 'Inter', sans-serif !important;
  transition: border-color 0.15s !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--nc-blue) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(79, 123, 248, 0.15) !important;
}

/* ================================================================
   SCROLLBAR
================================================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--nc-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ================================================================
   UTILITY OVERRIDES
================================================================ */
.text-accent-500 {
  color: var(--nc-blue) !important;
}

.bg-accent-500 {
  background-color: var(--nc-blue) !important;
}

.border-accent-500 {
  border-color: var(--nc-blue) !important;
}

.nc-text-gradient {
  background: linear-gradient(135deg, var(--nc-blue) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================================================
   MODAL / OVERLAY
================================================================ */
[class*="modal-backdrop"],
.modal-overlay {
  background: rgba(6, 8, 18, 0.85);
  backdrop-filter: blur(8px);
}

/* ================================================================
   PAGINATION
================================================================ */
.pagination .page-link {
  background: var(--nc-bg-card);
  border-color: var(--nc-border);
  color: var(--nc-text-muted);
  border-radius: var(--nc-radius-sm);
  margin: 0 2px;
}

.pagination .active .page-link,
.pagination .page-link:hover {
  background: var(--nc-blue);
  border-color: var(--nc-blue);
  color: #ffffff;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 640px) {
  .nc-hero-title {
    font-size: 2.1rem;
  }

  .nc-hero-gfx-box {
    width: 260px;
    height: 180px;
  }

  .nc-trust-pill {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* ================================================================
   REVIEWS MARQUEE — scrolling reviews
================================================================ */
.nc-reviews-wrapper {
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.nc-reviews-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: nc-marquee 40s linear infinite;
}

.nc-reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes nc-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nc-review-card {
  flex-shrink: 0;
  width: 280px;
  padding: 18px 20px;
  border-radius: var(--nc-radius);
  border: 1px solid var(--nc-border);
  background-color: var(--nc-bg-card);
  transition: border-color 0.2s;
}

.nc-review-card:hover {
  border-color: var(--nc-border-blue);
}

.nc-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(79, 123, 248, 0.15);
  border: 1px solid var(--nc-border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--nc-blue);
  flex-shrink: 0;
}

/* ================================================================
   CTA SECTION — "Ready to Dominate?" 
================================================================ */
.nc-cta {
  padding-top: 0;
}

.nc-cta-inner {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(79, 123, 248, 0.25);
  background: linear-gradient(135deg, rgba(79, 123, 248, 0.08) 0%, rgba(11, 12, 26, 0.95) 60%);
  padding: 60px 32px;
  overflow: hidden;
  text-align: center;
}

.nc-cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(79, 123, 248, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .nc-reviews-marquee {
    animation-duration: 30s;
  }

  .nc-review-card {
    width: 240px;
  }

  .nc-cta-inner {
    padding: 40px 20px;
  }
}


/* ================================================================
   ANIMATIONS — SCROLL-IN REVEAL
================================================================ */

/* Fade up on scroll */
@keyframes nc-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade in */
@keyframes nc-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scale in */
@keyframes nc-scale-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* Glow pulse on accent elements */
@keyframes nc-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79, 123, 248, 0); }
  50%       { box-shadow: 0 0 24px 4px rgba(79, 123, 248, 0.35); }
}

/* Shimmer sweep */
@keyframes nc-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Floating bob */
@keyframes nc-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* Gradient border rotate */
@keyframes nc-border-spin {
  from { --nc-border-angle: 0deg; }
  to   { --nc-border-angle: 360deg; }
}

/* Scroll-reveal base state */
.nc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.nc-reveal.nc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.nc-reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.nc-reveal-stagger.nc-visible > *:nth-child(1)  { transition-delay: 0.05s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(2)  { transition-delay: 0.10s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(3)  { transition-delay: 0.15s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(4)  { transition-delay: 0.20s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(5)  { transition-delay: 0.25s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(6)  { transition-delay: 0.30s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(7)  { transition-delay: 0.35s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(8)  { transition-delay: 0.40s; opacity: 1; transform: none; }
.nc-reveal-stagger.nc-visible > *:nth-child(n+9) { transition-delay: 0.45s; opacity: 1; transform: none; }

/* ================================================================
   GROUP CARD — IMAGE ONLY WITH NAME OVERLAY
================================================================ */

.nc-group-card {
  border-radius: var(--nc-radius);
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nc-group-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(79, 123, 248, 0.2);
  text-decoration: none;
}

.nc-group-card-img-wrap {
  position: relative;
  overflow: hidden;
  /* Portrait aspect ratio — controlled by SellAuth group_card_image_aspect_ratio setting */
  aspect-ratio: var(--group-card-image-aspect-ratio, 3/4);
  background: #08091a;
}

.nc-group-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.nc-group-card:hover .nc-group-card-img {
  transform: none;
}

.nc-group-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b0c1f 0%, #07080f 100%);
}

/* Bottom gradient + name overlay */
.nc-group-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(
    to top,
    rgba(4, 5, 14, 0.92) 0%,
    rgba(4, 5, 14, 0.6) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;
}

.nc-group-card-name {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.nc-group-card-count {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

/* ================================================================
   PRODUCT CARD — ENHANCED HOVER ANIMATIONS
================================================================ */

.nc-product-card {
  animation: nc-scale-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Shimmer effect on buy button hover */
.nc-buy-btn {
  position: relative;
  overflow: hidden;
}
.nc-buy-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
  pointer-events: none;
}
.nc-product-card:hover .nc-buy-btn::before {
  animation: nc-shimmer-btn 0.6s ease forwards;
}
@keyframes nc-shimmer-btn {
  from { left: -100%; }
  to   { left: 160%; }
}

/* Price glow on hover */
.nc-product-card:hover .text-accent-500,
.nc-product-card:hover .text-xl {
  text-shadow: 0 0 16px rgba(79, 123, 248, 0.6);
  transition: text-shadow 0.3s ease;
}

/* ================================================================
   GROUP MODAL — PRODUCT LIST WITH PRICES
================================================================ */

.nc-group-modal-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius-sm);
  text-decoration: none;
  color: var(--nc-text);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}
.nc-group-modal-product:hover {
  background: rgba(79, 123, 248, 0.07);
  border-color: var(--nc-border-blue);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--nc-text);
}
.nc-group-modal-product-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--nc-radius-sm);
  object-fit: cover;
  background: #0a0b1a;
}
.nc-group-modal-product-img-placeholder {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--nc-radius-sm);
  background: linear-gradient(135deg, #0b0c1f 0%, #07080f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nc-group-modal-product-info {
  flex: 1;
  min-width: 0;
}
.nc-group-modal-product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--nc-text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nc-group-modal-product-stock {
  font-size: 11px;
  color: var(--nc-text-muted);
  margin-bottom: 0;
}
.nc-group-modal-product-price {
  text-align: right;
  flex-shrink: 0;
}
.nc-group-modal-product-price-label {
  font-size: 10px;
  color: var(--nc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}
.nc-group-modal-product-price-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--nc-blue);
  line-height: 1;
}
.nc-group-modal-product-price-slash {
  font-size: 11px;
  color: var(--nc-text-muted);
  text-decoration: line-through;
  margin-top: 2px;
}
.nc-group-modal-product-arrow {
  color: var(--nc-text-muted);
  flex-shrink: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}
.nc-group-modal-product:hover .nc-group-modal-product-arrow {
  color: var(--nc-blue);
  transform: translateX(3px);
}

/* Modal entrance animation */
.nc-group-modal-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 4px;
}
.nc-group-modal-grid::-webkit-scrollbar {
  width: 4px;
}
.nc-group-modal-grid::-webkit-scrollbar-track {
  background: transparent;
}
.nc-group-modal-grid::-webkit-scrollbar-thumb {
  background: rgba(79, 123, 248, 0.3);
  border-radius: 9999px;
}

/* ================================================================
   HERO — ANIMATED PARTICLES / ORB
================================================================ */
.nc-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0;
  animation: nc-orb-in 1.2s ease forwards;
}
@keyframes nc-orb-in {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.nc-hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79, 123, 248, 0.22) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0.2s;
}
.nc-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79, 123, 248, 0.10) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation-delay: 0.5s;
}

/* Floating particles */
.nc-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--nc-blue);
  opacity: 0;
  pointer-events: none;
  animation: nc-particle-float linear infinite;
}
@keyframes nc-particle-float {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: translateY(-10px) scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80px) scale(0.5); }
}

/* ================================================================
   SECTION HEADER ANIMATIONS
================================================================ */
.nc-section-label {
  animation: nc-fade-in 0.5s ease both;
}
.nc-section-title {
  animation: nc-fade-up 0.6s ease both 0.1s;
}
.nc-section-subtitle {
  animation: nc-fade-up 0.6s ease both 0.2s;
}
.nc-section-divider {
  animation: nc-scale-in 0.5s ease both 0.3s;
}

/* ================================================================
   STAT COUNTER PULSE
================================================================ */
.nc-stat-value {
  display: inline-block;
  animation: nc-fade-up 0.7s ease both;
}
.nc-stat-value.nc-counted {
  animation: nc-glow-pulse 1.5s ease 1;
}


/* ================================================================
   CHRASHEROUT OVERRIDES — navbar, grid, footer, dynamic stats
================================================================ */

/* ── Compact Navbar ─────────────────────────────────────────── */
.nc-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 18, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nc-border);
  width: 100%;
}

.nc-nav-inner {
  max-width: 85rem;
  margin: 0 auto;
  /* Escape SellAuth's outer p-4/p-6/p-8 wrapper with negative margin */
  padding: 0 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  width: calc(100% + 2rem);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

@media (min-width: 768px) {
  .nc-nav-inner {
    padding: 0 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
}

@media (min-width: 1024px) {
  .nc-nav-inner {
    padding: 0 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }
}

/* Nav links: smaller padding so more fit */
.nc-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: var(--nc-radius-sm);
  color: var(--nc-text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background-color 0.15s;
}
.nc-nav-link:hover {
  color: var(--nc-text);
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.nc-nav-link-active {
  color: var(--nc-text) !important;
  background-color: rgba(79, 123, 248, 0.12);
}

.nc-nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--nc-blue);
  border-radius: var(--nc-radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.nc-nav-login-btn:hover { background: var(--nc-blue-dark); color: #fff !important; }

.nc-nav-cart-btn { padding: 5px 12px; font-size: 12.5px; }

.nc-nav-mobile-menu {
  padding: 8px 1.25rem 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Force max-width wrapper not to crush nav into padded box */
.flex.flex-col.justify-between.max-w-\[85rem\] .nc-navbar,
.flex.flex-col.justify-between.max-w-\[85rem\] > div > .nc-navbar {
  margin-left: -1rem;
  margin-right: -1rem;
  width: calc(100% + 2rem);
}
@media (min-width: 768px) {
  .flex.flex-col.justify-between.max-w-\[85rem\] .nc-navbar,
  .flex.flex-col.justify-between.max-w-\[85rem\] > div > .nc-navbar {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
}
@media (min-width: 1024px) {
  .flex.flex-col.justify-between.max-w-\[85rem\] .nc-navbar,
  .flex.flex-col.justify-between.max-w-\[85rem\] > div > .nc-navbar {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }
}

/* ── 5-column portrait card grid ────────────────────────────── */
.nc-card-col-5 {
  width: 100%;
  flex-shrink: 0;
  min-width: 0;
}
@media (min-width: 480px)  { .nc-card-col-5 { width: calc((100% - 1rem) / 2); } }
@media (min-width: 768px)  { .nc-card-col-5 { width: calc((100% - 2rem) / 3); } }
@media (min-width: 1100px) { .nc-card-col-5 { width: calc((100% - 3rem) / 4); } }
@media (min-width: 1400px) { .nc-card-col-5 { width: calc((100% - 4rem) / 5); } }

/* ── Group card — portrait, variable aspect ratio ───────────── */
.nc-group-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--group-card-image-aspect-ratio, 3/4);
  background: #08091a;
}

/* ── Footer ─────────────────────────────────────────────────── */
.nc-footer {
  background: #040509;
  border-top: 1px solid rgba(79,123,248,0.20);
  margin-top: 0;
}

.nc-footer-top-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(79,123,248,0.6), transparent);
}

.nc-footer-body { padding: 40px 0 0; }

.nc-footer-container {
  max-width: 85rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) { .nc-footer-container { padding: 0 2rem; } }

.nc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 600px)  { .nc-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nc-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

/* Brand col */
.nc-footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 12px;
}
.nc-footer-logo-img { height: 28px; width: auto; object-fit: contain; }
.nc-footer-shop-name { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.nc-footer-desc { font-size: 12.5px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 260px; margin-bottom: 16px; }

/* Social row */
.nc-footer-socials { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }

/* Live stats strip */
.nc-footer-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nc-footer-stat { display: flex; flex-direction: column; gap: 1px; }
.nc-footer-stat-num { font-size: 14px; font-weight: 800; color: var(--nc-blue); line-height: 1; }
.nc-footer-stat-lbl { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.30); letter-spacing: 0.06em; text-transform: uppercase; }
.nc-footer-stat-div { width: 1px; height: 24px; background: rgba(255,255,255,0.08); }

/* Link columns */
.nc-footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
}
.nc-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.nc-footer-link {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.nc-footer-link:hover { color: #fff; text-decoration: none; }

/* Bottom bar */
.nc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
}
.nc-footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.25); }

/* ── Feedbacks / Reviews ─────────────────────────────────────── */
.nc-reviews-wrapper {
  overflow: hidden;
  position: relative;
}
.nc-reviews-wrapper::before,
.nc-reviews-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.nc-reviews-wrapper::before { left: 0; background: linear-gradient(to right, var(--nc-bg, #060812), transparent); }
.nc-reviews-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--nc-bg, #060812), transparent); }

.nc-reviews-marquee {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: nc-marquee-scroll 40s linear infinite;
}
.nc-reviews-wrapper:hover .nc-reviews-marquee { animation-play-state: paused; }

@keyframes nc-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nc-review-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--nc-bg-card, #0B0C1A);
  border: 1px solid var(--nc-border, rgba(255,255,255,0.065));
  border-radius: var(--nc-radius, 12px);
  padding: 16px 18px;
  transition: border-color 0.2s;
}
.nc-review-card:hover { border-color: var(--nc-border-blue, rgba(79,123,248,0.35)); }

.nc-review-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--nc-blue, #4F7BF8);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

/* ── Trust pills in hero ─────────────────────────────────────── */
.nc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 9999px;
  font-size: 11.5px;
}
.nc-trust-divider {
  display: inline-block;
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
}
.nc-hero-stars { display: inline-flex; align-items: center; gap: 1px; }

/* ── Section headers ─────────────────────────────────────────── */
.nc-section-header { text-align: center; }
.nc-section-divider {
  width: 36px; height: 3px;
  background: var(--nc-blue, #4F7BF8);
  border-radius: 3px;
  margin: 14px auto 0;
  opacity: 0.7;
}

/* ── Stats grid ─────────────────────────────────────────────── */
.nc-stat-number {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--nc-blue);
  letter-spacing: -0.02em;
  margin: 0 0 5px;
  line-height: 1;
}
.nc-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── CTA section ─────────────────────────────────────────────── */
.nc-cta-inner {
  border-radius: var(--nc-radius, 12px);
  border: 1px solid var(--nc-border-blue, rgba(79,123,248,0.35));
  padding: 52px 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,13,20,0.9) 0%, rgba(15,18,28,0.9) 100%);
  position: relative;
}
.nc-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(79,123,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Product page CSS ────────────────────────────────────────── */
.nc-pp-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 18px;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.nc-pp-bread-link { color: rgba(255,255,255,0.40); text-decoration: none; transition: color .15s; }
.nc-pp-bread-link:hover { color: #fff; }
.nc-pp-bread-current { color: rgba(255,255,255,0.70); font-weight: 600; }

.nc-pp-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .nc-pp-grid { grid-template-columns: 1fr 400px; gap: 28px; align-items: start; } }
.nc-pp-left { display: flex; flex-direction: column; }
.nc-pp-right { display: flex; flex-direction: column; }

.nc-pp-img-wrap {
  position: relative;
  border-radius: var(--nc-radius) var(--nc-radius) 0 0;
  overflow: hidden;
  border: 1px solid var(--nc-border);
  border-bottom: none;
  background: #08091a;
  aspect-ratio: var(--product-page-image-aspect-ratio, 4/5);
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  max-height: 480px;
}
.nc-pp-img { display: block; width: 100%; height: 100%; object-fit: contain; max-height: 480px; }

.nc-pp-status-badge {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 9999px; border: 1px solid;
  background: rgba(0,0,0,0.70); backdrop-filter: blur(6px);
  font-size: 11px; font-weight: 700;
}
.nc-pp-status-dot { width: 6px; height: 6px; border-radius: 50%; }

.nc-pp-tabs-wrap { border: 1px solid var(--nc-border); border-top: none; border-radius: 0 0 var(--nc-radius) var(--nc-radius); overflow: hidden; }
.nc-pp-tabs-nav {
  display: flex; align-items: center; flex-wrap: wrap; gap: 2px;
  padding: 10px 16px 0; border-bottom: 1px solid var(--nc-border);
  background: rgba(255,255,255,0.02);
}
.nc-pp-tab {
  padding: 6px 13px; font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,0.45); background: none; border: none;
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .15s, border-color .15s; font-family: inherit;
}
.nc-pp-tab:hover { color: rgba(255,255,255,0.80); }
.nc-pp-tab-active { color: var(--nc-blue) !important; border-bottom-color: var(--nc-blue) !important; }
.nc-pp-tab-body { padding: 18px; background: rgba(255,255,255,0.01); min-height: 60px; }
.nc-pp-description { font-size: 13.5px; color: rgba(255,255,255,0.70); line-height: 1.75; }
.nc-pp-description h1,.nc-pp-description h2,.nc-pp-description h3 { color:#fff; font-weight:700; margin:10px 0 5px; }
.nc-pp-description p { margin-bottom: 8px; }
.nc-pp-description ul,.nc-pp-description ol { padding-left: 18px; margin-bottom:8px; }
.nc-pp-description li { margin-bottom: 3px; }
.nc-pp-description a { color: var(--nc-blue); text-decoration: underline; }

.nc-pp-title-bar {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 14px 16px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--nc-border); border-radius: var(--nc-radius) var(--nc-radius) 0 0; border-bottom: none;
}
.nc-pp-title { font-size: 17px; font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -0.01em; margin: 0 0 5px; }
.nc-pp-category-pill {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px;
  background: rgba(79,123,248,0.12); border: 1px solid rgba(79,123,248,0.25);
  border-radius: 9999px; font-size: 10.5px; font-weight: 700; color: var(--nc-blue);
  text-decoration: none; transition: background .15s;
}
.nc-pp-status-inline {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px;
  border-radius: 9999px; border: 1px solid; font-size: 11px; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.nc-pp-status-dot-sm { width: 5px; height: 5px; border-radius: 50%; }

.nc-pp-price-box {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 12px 16px; border: 1px solid var(--nc-border); border-bottom: none;
  background: rgba(79,123,248,0.03);
}
.nc-pp-price-main { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.nc-pp-price-each { font-size: 11.5px; color: rgba(255,255,255,0.35); }
.nc-pp-stock-badge { margin-left: auto; }
.nc-pp-stock-in {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px;
  background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.25);
  border-radius: 9999px; font-size: 11.5px; font-weight: 700; color: #4ade80;
}
.nc-pp-stock-out {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px;
  background: rgba(239,68,68,0.10); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 9999px; font-size: 11.5px; font-weight: 700; color: #f87171;
}
.nc-pp-stock-hold {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px;
  background: rgba(251,191,36,0.10); border: 1px solid rgba(251,191,36,0.25);
  border-radius: 9999px; font-size: 11.5px; font-weight: 700; color: #fbbf24;
}

.nc-pp-badges {
  display: flex; align-items: center; flex-wrap: wrap; gap: 5px;
  padding: 9px 16px; border: 1px solid var(--nc-border); border-bottom: none;
}
.nc-pp-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 6px; border: 1px solid;
  font-size: 11px; font-weight: 700;
}

.nc-pp-live-stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 9px 16px; border: 1px solid var(--nc-border); border-top: none;
  background: rgba(255,255,255,0.01);
}
.nc-pp-live-stat { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: rgba(255,255,255,0.45); }
.nc-pp-live-stat strong { color: rgba(255,255,255,0.80); }

.nc-pp-features-section {
  border: 1px solid var(--nc-border); border-top: none;
  padding: 14px 16px;
  background: rgba(255,255,255,0.01);
  border-radius: 0 0 var(--nc-radius) var(--nc-radius);
}
.nc-pp-features-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 10px;
}
.nc-pp-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
@media (min-width: 480px) { .nc-pp-features-grid { grid-template-columns: repeat(3, 1fr); } }
.nc-pp-feature-card {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px;
  background: rgba(79,123,248,0.05); border: 1px solid rgba(79,123,248,0.12);
  border-radius: 7px; transition: background .15s, border-color .15s;
}
.nc-pp-feature-card:hover { background: rgba(79,123,248,0.10); border-color: rgba(79,123,248,0.28); }
.nc-pp-feature-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 5px;
  background: rgba(79,123,248,0.12);
  display: flex; align-items: center; justify-content: center;
}
.nc-pp-feature-text { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.75); line-height: 1.3; }


/* ================================================================
   ONLINE USERS BADGE (navbar)
================================================================ */
.nc-nav-online {
  align-items: center;
}
.nc-nav-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(74, 222, 128, 0.9);
  white-space: nowrap;
}
.nc-nav-online-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* ================================================================
   PRODUCTS PAGE — category tabs
================================================================ */
.nc-cat-tabs-wrap {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nc-cat-tabs-wrap::-webkit-scrollbar { display: none; }

.nc-cat-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  white-space: nowrap;
}

.nc-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
  white-space: nowrap;
}
.nc-cat-tab:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}
.nc-cat-tab-active {
  color: #fff !important;
  background: rgba(79,123,248,0.15) !important;
  font-weight: 600;
}

/* ================================================================
   PRODUCTS PAGE — search / topbar
================================================================ */
.nc-products-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nc-products-search-wrap {
  position: relative;
  flex: 1;
  min-width: 180px;
}

.nc-products-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,0.30);
  pointer-events: none;
  flex-shrink: 0;
}

.nc-products-search-input {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 34px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 13.5px !important;
  transition: border-color 0.15s !important;
}
.nc-products-search-input::placeholder { color: rgba(255,255,255,0.28); }
.nc-products-search-input:focus {
  border-color: var(--nc-blue) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(79,123,248,0.12) !important;
}

.nc-products-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 16px;
  background: var(--nc-blue);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.nc-products-search-btn:hover { background: var(--nc-blue-dark); }

.nc-products-clear-btn {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nc-products-clear-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.09);
  text-decoration: none;
}

/* ================================================================
   GROUP MODAL FIX — prevent full-screen stretch
================================================================ */
.nc-group-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}


/* ================================================================
   STATUS PAGE — fixes: image thumbnail, no corners, group heading border
================================================================ */

/* Status card: rounded corners */
.nc-status-card {
  border-radius: 14px !important;
  transition: border-color 0.15s, background 0.15s;
}
.nc-status-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

/* Product thumbnail in status card */
.nc-status-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #08091a;
}

.nc-status-thumb-placeholder {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Group heading with dark blue left border */
.nc-status-group-heading {
  padding-left: 10px;
  border-left: 3px solid rgba(30, 60, 180, 0.85);
  margin-bottom: 8px;
}

/* ================================================================
   SHOP / PRODUCTS PAGE — fix products appearing too high after category click
================================================================ */

/* Ensure the section itself doesn't cause the jump */
.component[data-component-id] {
  scroll-margin-top: 80px;
}

/* ================================================================
   PRODUCT PAGE — smaller image, no corners, no corners on description
================================================================ */

/* ================================================================
   PRODUCT PAGE — image with rounded corners, fits fully
================================================================ */

/* Rounded image wrap */
/* NOTE: nc-pp-img-wrap and nc-pp-img overrides moved to the FIX 2 block below */

/* Round the tabs/description wrapper */
.nc-pp-tabs-wrap {
  border-radius: 0 0 14px 14px !important;
}

.nc-pp-title-bar {
  border-radius: 14px 14px 0 0 !important;
}


/* nc-pp-section-heading styling — see FIX 3 block at end of file */

/* ================================================================
   PRODUCT PAGE — System Requirements
================================================================ */
.nc-pp-sysreq-wrap {
  width: 100%;
}
.nc-pp-sysreq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .nc-pp-sysreq-grid { grid-template-columns: repeat(4, 1fr); } }

.nc-pp-sysreq-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nc-pp-sysreq-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(79,123,248,0.12);
  border: 1px solid rgba(79,123,248,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nc-pp-sysreq-label {
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  font-weight: 500;
  margin-top: 2px;
}
.nc-pp-sysreq-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ================================================================
   PRODUCT PAGE — Features Accordion
================================================================ */
.nc-pp-feats-wrap {
  width: 100%;
}
.nc-pp-feats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) { .nc-pp-feats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nc-pp-feats-grid { grid-template-columns: repeat(3, 1fr); } }

.nc-pp-feat-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.nc-pp-feat-item.nc-pp-feat-open {
  border-color: rgba(79,123,248,0.35);
}
.nc-pp-feat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.nc-pp-feat-header:hover { background: rgba(255,255,255,0.04); }
.nc-pp-feat-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.nc-pp-feat-icon-wrap {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(79,123,248,0.12);
  border: 1px solid rgba(79,123,248,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nc-pp-feat-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  truncate: true;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nc-pp-feat-chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,0.30);
  transition: transform 0.2s ease;
}
.nc-pp-feat-open .nc-pp-feat-chevron {
  transform: rotate(180deg);
  color: var(--nc-blue, #4f7bf8);
}
.nc-pp-feat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.2s ease;
  padding: 0 14px;
}
.nc-pp-feat-open .nc-pp-feat-body {
  max-height: 120px;
  padding: 10px 14px;
}
.nc-pp-feat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ================================================================
   PRODUCT PAGE — Menu Preview (draggable)
================================================================ */
.nc-pp-preview-wrap { width: 100%; }

.nc-pp-preview-stage {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.nc-pp-preview-desktop {
  position: relative;
  width: 100%;
  height: 420px;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(20,50,120,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(10,25,80,0.4) 0%, transparent 50%),
    linear-gradient(160deg, #07091e 0%, #0b1230 40%, #060915 100%);
  overflow: hidden;
}

/* Subtle grid dot pattern like Windows wallpaper */
.nc-pp-preview-desktop::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(79,123,248,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.nc-pp-preview-taskbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: rgba(5,8,24,0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  z-index: 2;
}
.nc-pp-preview-time {
  font-size: 11.5px;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Draggable menu window */
.nc-pp-menu-window {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 92%);
  background: rgba(8, 11, 28, 0.96);
  border: 1px solid rgba(79,123,248,0.25);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  z-index: 10;
  cursor: default;
}

.nc-pp-menu-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(79,123,248,0.10);
  border-bottom: 1px solid rgba(79,123,248,0.15);
  cursor: grab;
  user-select: none;
}
.nc-pp-menu-titlebar:active { cursor: grabbing; }

.nc-pp-menu-win-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.nc-pp-win-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.nc-pp-win-dot-red { background: #ff5f57; }
.nc-pp-win-dot-yellow { background: #febc2e; }
.nc-pp-win-dot-green { background: #28c840; }

.nc-pp-menu-win-title {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  flex: 1;
  text-align: center;
  margin-right: 30px; /* offset for dots */
}

.nc-pp-menu-content { }
.nc-pp-menu-preview-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}
.nc-pp-menu-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.nc-pp-menu-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.nc-pp-preview-hint {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  pointer-events: none;
}

/* ================================================================
   PRODUCT PAGE — Unified Showcase (Preview + Video tabs)
================================================================ */
.nc-pp-showcase-wrap { width: 100%; }

.nc-pp-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.nc-pp-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--nc-blue, #4f7bf8);
  border-radius: 9999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nc-pp-watch-btn:hover { background: var(--nc-blue-dark, #3a66e0); text-decoration: none; color: #fff; }

/* Tab nav pill */
.nc-pp-showcase-tab-nav {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  width: fit-content;
  margin-bottom: 16px;
}
.nc-pp-stab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.nc-pp-stab:hover { color: rgba(255,255,255,0.80); background: rgba(255,255,255,0.05); }
.nc-pp-stab-active {
  background: rgba(79,123,248,0.18) !important;
  color: #fff !important;
  font-weight: 600;
}

/* Shared stage container — same size for both tabs */
.nc-pp-showcase-stage {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #07091e;
}

/* Background layer — fills the entire stage */
.nc-pp-showcase-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.nc-pp-showcase-bg--default {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(20,50,120,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(10,25,80,0.4) 0%, transparent 50%),
    linear-gradient(160deg, #07091e 0%, #0b1230 40%, #060915 100%);
}

/* Menu window sits above background */
.nc-pp-showcase-stage .nc-pp-menu-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 92%);
  max-height: 90%;
  z-index: 10;
  cursor: default;
  overflow: visible;
}

/* Hint text at bottom */
.nc-pp-showcase-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
}

/* Improved sales notification bottom left - softer rounded corners, better card */
.fixed.z-50 .flex.items-center.gap-4 {
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

/* Video stage — iframe fills it */
.nc-pp-showcase-stage--video {
  padding: 0;
}
.nc-pp-showcase-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Legacy selectors kept for compatibility */
.nc-pp-showcase-video-wrap {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: 8px; overflow: hidden; background: #000;
  border: 1px solid rgba(255,255,255,0.07);
}
.nc-pp-showcase-preview-wrap { border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); background: #08091a; }
.nc-pp-showcase-img { display: block; width: 100%; height: auto; max-height: 480px; object-fit: contain; }
.nc-pp-showcase-placeholder { padding: 40px; text-align: center; color: rgba(255,255,255,0.25); font-size: 13px; }


/* ================================================================
   FIX 1 — PRODUCTS PAGE: consistent vertical positioning
   Ensures product grid sits at the same vertical rhythm whether
   reached from the homepage or via Navbar → Browse Products → category
================================================================ */
.nc-products-page-wrap {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

/* Grid container: always centered horizontally */
.nc-products-page-wrap .flex.flex-wrap {
  justify-content: center;
}

/* Give the category + search bar area consistent top breathing room */
.nc-cat-tabs-wrap {
  margin-bottom: 20px !important;
}

/* ================================================================
   FIX 2 — PRODUCT IMAGE: fills container properly, no distortion
================================================================ */

/* Override the duplicate rule lower in the file */
.nc-pp-img-wrap {
  border-radius: var(--nc-radius) var(--nc-radius) 0 0 !important;
  overflow: hidden !important;
  background: #08091a !important;
  border: 1px solid var(--nc-border) !important;
  border-bottom: none !important;
  position: relative !important;
  width: 100% !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-height: 480px !important;
  aspect-ratio: var(--product-page-image-aspect-ratio, 4/5) !important;
}

.nc-pp-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 480px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

/* Single-image path (no splide) */
.nc-pp-img-wrap > img.nc-pp-img {
  width: 100% !important;
  height: 100% !important;
  max-height: 480px !important;
  object-fit: contain !important;
}

/* Splide track fills the capped wrapper */
.nc-pp-img-wrap .splide,
.nc-pp-img-wrap .splide__track {
  height: 100% !important;
  max-height: 480px !important;
}
.nc-pp-img-wrap .splide__list,
.nc-pp-img-wrap .splide__slide {
  height: 100% !important;
}
.nc-pp-img-wrap .splide__slide img {
  width: 100% !important;
  height: 100% !important;
  max-height: 480px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ================================================================
   FIX 3 — PRODUCT PAGE UI: Preview / Features / System Requirements
   Noble-style card layout: rounded, dark, hover animations
================================================================ */

/* ── Section heading ── */
.nc-pp-section-heading {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 16px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nc-pp-section-heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--nc-blue);
  border-radius: 99px;
  flex-shrink: 0;
}

/* ── System Requirements — improved card ── */
.nc-pp-sysreq-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--nc-border);
  border-radius: 14px;
  padding: 20px 22px;
}
.nc-pp-sysreq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) {
  .nc-pp-sysreq-grid { grid-template-columns: repeat(4, 1fr); }
}
.nc-pp-sysreq-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.nc-pp-sysreq-card:hover {
  background: rgba(79,123,248,0.07);
  border-color: rgba(79,123,248,0.25);
  transform: translateY(-2px);
}
.nc-pp-sysreq-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,123,248,0.10);
  border: 1px solid rgba(79,123,248,0.20);
  border-radius: 9px;
  flex-shrink: 0;
}
.nc-pp-sysreq-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.nc-pp-sysreq-value {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

/* ── Features — improved accordion ── */
.nc-pp-feats-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--nc-border);
  border-radius: 14px;
  padding: 20px 22px;
}
.nc-pp-feats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 640px)  { .nc-pp-feats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nc-pp-feats-grid { grid-template-columns: repeat(3, 1fr); } }

.nc-pp-feat-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.15s, background 0.15s;
}
.nc-pp-feat-item.nc-pp-feat-open {
  border-color: rgba(79,123,248,0.30);
  background: rgba(79,123,248,0.05);
}
.nc-pp-feat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s;
}
.nc-pp-feat-header:hover { background: rgba(255,255,255,0.04); }
.nc-pp-feat-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nc-pp-feat-icon-wrap {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,123,248,0.10);
  border-radius: 7px;
  flex-shrink: 0;
}
.nc-pp-feat-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.nc-pp-feat-chevron {
  color: rgba(255,255,255,0.30);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nc-pp-feat-open .nc-pp-feat-chevron { transform: rotate(180deg); }

.nc-pp-feat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.2s ease;
  padding: 0 14px;
}
.nc-pp-feat-open .nc-pp-feat-body {
  max-height: 200px;
  padding: 0 14px 12px;
}
.nc-pp-feat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  margin: 0;
}

/* ── Menu Preview — polished desktop mockup ── */
.nc-pp-preview-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--nc-border);
  border-radius: 14px;
  padding: 20px 22px;
}
.nc-pp-preview-stage {
  border-radius: 10px;
  overflow: hidden;
}
.nc-pp-preview-desktop {
  position: relative;
  background: linear-gradient(135deg, #0a0b1e 0%, #0e102a 50%, #060812 100%);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 320px;
  overflow: hidden;
}
.nc-pp-preview-desktop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(79,123,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.nc-pp-preview-taskbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: rgba(10,11,30,0.92);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  padding: 0 14px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.nc-pp-preview-time {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-variant-numeric: tabular-nums;
}
.nc-pp-menu-window {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(340px, 90%);
  background: rgba(13,14,30,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.70), 0 0 0 1px rgba(79,123,248,0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
  cursor: default;
  z-index: 10;
}
.nc-pp-menu-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(20,22,40,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: grab;
  user-select: none;
}
.nc-pp-menu-titlebar:active { cursor: grabbing; }
.nc-pp-menu-win-dots { display: flex; align-items: center; gap: 5px; }
.nc-pp-win-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: opacity 0.15s;
}
.nc-pp-win-dot:hover { opacity: 0.75; }
.nc-pp-win-dot-red    { background: #ff5f57; }
.nc-pp-win-dot-yellow { background: #febc2e; }
.nc-pp-win-dot-green  { background: #28c840; }
.nc-pp-menu-win-title {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  flex: 1;
  text-align: center;
  margin-right: 36px; /* balance the dots */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nc-pp-menu-content { padding: 0; }
.nc-pp-menu-preview-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}
.nc-pp-menu-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 24px;
}
.nc-pp-menu-placeholder-inner { text-align: center; }
.nc-pp-preview-hint {
  position: absolute;
  bottom: 40px;
  right: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.20);
  pointer-events: none;
  z-index: 3;
}

/* showcase styles consolidated above */

/* ── What's Included feature cards (right panel) ── */
.nc-pp-features-section {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--nc-border);
  border-radius: 12px;
}
.nc-pp-features-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.nc-pp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
@media (min-width: 480px) {
  .nc-pp-features-grid { grid-template-columns: repeat(3, 1fr); }
}
.nc-pp-feature-card {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.nc-pp-feature-card:hover {
  background: rgba(79,123,248,0.10);
  border-color: rgba(79,123,248,0.28);
}
.nc-pp-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,123,248,0.10);
  border-radius: 6px;
  flex-shrink: 0;
}
.nc-pp-feature-text {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}


/* ================================================================
   GLOBAL ROUNDED CORNERS — no sharp edges anywhere
================================================================ */

/* Group modal panel */
.nc-group-modal-panel {
  background: var(--nc-bg-card, #0B0C1A);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
}

/* Choices.js dropdown — round container, list, items */
.choices {
  border-radius: 10px !important;
  overflow: visible !important;
}
.choices__inner {
  border-radius: 10px !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.choices__list--dropdown,
.choices[data-type*=select-one] .choices__list--dropdown {
  border-radius: 12px !important;
  overflow: hidden !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.choices__list--dropdown .choices__item {
  border-radius: 0 !important;
}
.choices__list--dropdown .choices__item--selectable:first-child {
  border-radius: 12px 12px 0 0 !important;
}
.choices__list--dropdown .choices__item--selectable:last-child {
  border-radius: 0 0 12px 12px !important;
}
.choices__input {
  border-radius: 8px !important;
}

/* Product form — variant buttons, quantity inputs */
.bg-white\/\[0\.025\] {
  border-radius: var(--nc-radius-sm);
}

/* Inputs / textareas / selects inside product form */
.nc-pp-tabs-wrap,
.nc-pp-tab-panel {
  border-radius: 0 0 var(--nc-radius) var(--nc-radius) !important;
}

/* Searchbar trigger outer wrap — handled in njk; belt-and-suspenders */
.nc-searchbar-trigger {
  border-radius: var(--nc-radius) !important;
  overflow: hidden;
}

/* Product page image wrapper */
.nc-pp-img-wrap {
  border-radius: var(--nc-radius) !important;
}

/* Product form card container */
.bg-card\/75 {
  border-radius: var(--nc-radius);
}

/* Category tabs — already 7px, bump to pill-ish */
.nc-cat-tab {
  border-radius: 9999px !important;
}
.nc-cat-tabs {
  border-radius: 9999px !important;
}

/* Currency selector */
.currency-selector select {
  border-radius: 10px !important;
}

/* Cart / login nav buttons */
.nc-nav-cart-btn,
.nc-nav-login-btn,
.nc-nav-btn {
  border-radius: 9999px !important;
}

/* Online badge */
.nc-nav-online-badge {
  border-radius: 9999px !important;
}

/* Products page search elements — already 8px, keep consistent */
.nc-products-search-wrap,
.nc-products-search-input,
.nc-products-search-btn,
.nc-products-clear-btn {
  border-radius: 10px !important;
}

/* Group modal overlay fix — ensure it centers properly */
.nc-group-modal-panel .nc-group-modal-product {
  border-radius: 10px !important;
}
.nc-group-modal-product-img,
.nc-group-modal-product-img-placeholder {
  border-radius: 8px !important;
}

/* Feedback / status / blog cards */
.nc-feedback-card,
.nc-blog-card,
.nc-status-card {
  border-radius: var(--nc-radius) !important;
}

/* Modals (login, ticket, etc.) */
.nc-modal-panel,
.nc-modal-inner {
  border-radius: var(--nc-radius) !important;
}




/* ================================================================
   FEATURES ACCORDION (JS-built, Nunjucks renders flat divs)
================================================================ */
.nc-pp-feats-flat { display: none; } /* hidden — JS rebuilds it */

.nc-pp-feats-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nc-feat-group {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.nc-feat-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(79,123,248,0.08);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-align: left;
  transition: background 0.15s;
}
.nc-feat-header:hover { background: rgba(79,123,248,0.14); }

.nc-feat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.nc-feat-header-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nc-feat-header-name { flex: 1; min-width: 0; }

.nc-feat-hdr-svg {
  width: 16px;
  height: 16px;
  color: var(--nc-blue, #4f7bf8);
}

.nc-feat-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  transition: transform 0.22s ease;
}

.nc-feat-body {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
}

.nc-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nc-feat-item:last-child { border-bottom: none; }
.nc-feat-item:hover { background: rgba(255,255,255,0.03); }

.nc-feat-item-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(79,123,248,0.7);
}

/* Interactive feature demo — toggles + sliders */
.nc-feat-item-interactive {
  align-items: center;
  gap: 14px;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.nc-feat-item-interactive.nc-feat-item-off {
  opacity: 0.45;
}

.nc-feat-item-interactive.nc-feat-item-off .nc-feat-item-name {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.35);
}

.nc-feat-item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nc-feat-item-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.nc-feat-toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
}

.nc-feat-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nc-feat-toggle-track {
  display: block;
  width: 38px;
  height: 22px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.nc-feat-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.2s ease;
}

.nc-feat-toggle-input:checked + .nc-feat-toggle-track {
  background: rgba(79, 123, 248, 0.55);
  border-color: rgba(79, 123, 248, 0.7);
  box-shadow: 0 0 12px rgba(79, 123, 248, 0.25);
}

.nc-feat-toggle-input:checked + .nc-feat-toggle-track .nc-feat-toggle-thumb {
  transform: translateX(16px);
  background: #fff;
}

.nc-feat-toggle:hover .nc-feat-toggle-track {
  border-color: rgba(255, 255, 255, 0.28);
}

.nc-feat-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nc-feat-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.nc-feat-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nc-blue);
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(79, 123, 248, 0.5);
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nc-feat-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(79, 123, 248, 0.7);
}

.nc-feat-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nc-blue);
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(79, 123, 248, 0.5);
  cursor: grab;
}

.nc-feat-slider-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--nc-blue);
  min-width: 34px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.nc-feat-item-off .nc-feat-slider {
  opacity: 0.35;
  pointer-events: none;
}

/* ================================================================
   SHARP CORNER FIXES — comprehensive, high-specificity overrides
================================================================ */

/* Group modal: ensure rounded panel even when CSS order varies */
.nc-group-modal-panel {
  border-radius: 20px !important;
  overflow: hidden;
}

/* Product cards */
.nc-product-card,
.nc-group-card {
  border-radius: var(--nc-radius) !important;
  overflow: hidden;
}

/* The group modal outer wrapper — force rounded on the animated div */
[x-show][x-transition].relative.inline-block {
  border-radius: 20px !important;
  overflow: hidden;
}

/* Product form variant buttons */
.nc-variant-btn,
button[type="button"].flex.items-center.justify-between {
  border-radius: var(--nc-radius-sm) !important;
}

/* Inputs everywhere */
input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select {
  border-radius: 8px !important;
}

/* Choices.js — ensure inner box is rounded */
.choices__inner {
  border-radius: 10px !important;
}
.choices__list--dropdown {
  border-radius: 12px !important;
  overflow: hidden !important;
}

/* Nav buttons */
.nc-nav-cart-btn,
.nc-nav-login-btn,
.nc-nav-btn,
.nc-nav-online-badge {
  border-radius: 9999px !important;
}

/* Currency select */
.currency-selector select,
select.bg-transparent {
  border-radius: 10px !important;
}

/* Searchbar modal panel */
.bg-background.overflow-hidden {
  border-radius: 16px !important;
}

/* Category tabs — pill shape */
.nc-cat-tab   { border-radius: 9999px !important; }
.nc-cat-tabs  { border-radius: 9999px !important; }


/* ================================================================
   CHRASHEROUT THEME — animations and effects
================================================================ */

/* ---- Chrasherout animations ---- */
@keyframes fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slide-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  opacity: 0;
  animation: fade-in 0.5s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slide-up 0.5s ease-out forwards;
}

/* ---- Layout ---- */
.zh-theme {
  background-color: var(--nc-bg) !important;
}

.zh-page {
  position: relative;
  z-index: 1;
}

.zh-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .zh-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.text-muted-foreground {
  color: rgba(255, 255, 255, 0.64);
}

.zh-bg-layer {
  background: var(--nc-bg);
  overflow: hidden;
}

.zh-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 110%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 110%);
  opacity: 0.35;
}

.zh-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.18), rgba(168, 85, 247, 0.18));
  filter: blur(100px);
}

.zh-stars-canvas,
#zh-stars-canvas {
  z-index: 0 !important;
  opacity: 1 !important;
}

.zh-page,
.zh-page main {
  background: transparent !important;
}

/* Crosshair & mouse glow removed */

/* ---- Scroll reveal (slide-up on scroll) ---- */
.zh-reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.zh-reveal.nc-visible,
.zh-reveal.zh-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.zh-reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.zh-reveal-stagger.nc-visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0.05s; }
.zh-reveal-stagger.nc-visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.10s; }
.zh-reveal-stagger.nc-visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.15s; }
.zh-reveal-stagger.nc-visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.20s; }
.zh-reveal-stagger.nc-visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.25s; }
.zh-reveal-stagger.nc-visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 0.30s; }
.zh-reveal-stagger.nc-visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: 0.35s; }

/* ---- Navbar ---- */
.zh-navbar {
  background: rgba(9, 9, 11, 0.7) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease;
  overflow: visible !important;
}

.zh-navbar .zh-container {
  overflow: visible;
  max-width: 80rem;
}

.zh-navbar-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.5rem;
  row-gap: 0;
  min-height: 3.5rem;
  padding: 0.45rem 0;
  overflow: visible;
}

.zh-navbar-row::-webkit-scrollbar {
  display: none;
}

.zh-navbar-start,
.zh-navbar-nav,
.zh-navbar-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  min-height: 2.125rem;
}

.zh-navbar-nav {
  justify-content: flex-start;
  overflow-x: visible;
  overflow-y: visible;
  min-width: 0;
}

.zh-navbar-nav::-webkit-scrollbar {
  display: none;
}

.zh-navbar-actions {
  justify-content: flex-end;
  flex-shrink: 0;
  flex-wrap: nowrap;
  overflow: visible;
}

.zh-nav-logo-btn {
  gap: 0.5rem !important;
  border-color: transparent !important;
  background: transparent !important;
  padding-left: 0.65rem !important;
  padding-right: 0.85rem !important;
  min-height: 2.125rem !important;
  align-self: center !important;
}

.zh-nav-logo-btn:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.zh-nav-icon-pill {
  padding: 0.4rem 0.65rem !important;
  min-width: 2.25rem;
  justify-content: center;
}

.zh-nav-login-pill {
  gap: 0.35rem;
}

@media (min-width: 768px) {
  .zh-nav-pill-btn {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .zh-navbar-nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .zh-navbar-actions {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 52vw;
  }

  .zh-nav-pill-btn {
    font-size: 11px;
    padding: 0.32rem 0.6rem;
  }

  .zh-nav-currency-btn {
    font-size: 9px;
    padding: 3px 6px;
  }

  .zh-nav-login-pill span,
  .zh-nav-logo-btn span {
    font-size: 11px;
  }
}

.zh-navbar .nc-nav-online {
  display: none;
}

.zh-nav-logo {
  position: relative;
}

.zh-nav-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nc-text);
  transition: width 0.3s ease;
}

.zh-nav-logo:hover::after {
  width: 100%;
}

.zh-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--nc-text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.zh-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nc-text);
  transition: width 0.3s ease;
}

.zh-nav-link:hover {
  color: var(--nc-text);
  text-decoration: none;
}

.zh-nav-link:hover::after,
.zh-nav-link-active::after {
  width: 100%;
}

.zh-nav-link-active {
  color: var(--nc-text) !important;
}

/* Navbar pill buttons (all nav items are buttons, no dropdowns) */
.zh-nav-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-shrink: 0;
  min-height: 2.125rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.zh-nav-pill-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.zh-nav-pill-btn-active {
  color: #fff !important;
  border-color: rgba(79, 123, 248, 0.45) !important;
  background: rgba(79, 123, 248, 0.18) !important;
}

.zh-nav-pill-btn-mobile {
  width: 100%;
  justify-content: flex-start;
  padding: 0.55rem 0.85rem;
}

.zh-nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 11, 0.8);
  color: var(--nc-text);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  font-family: inherit;
}

.zh-nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--nc-text);
  text-decoration: none;
}

.zh-nav-icon-btn-wrap select.zh-nav-icon-btn {
  padding: 0 8px;
  width: auto;
  min-width: 40px;
  font-size: 11px;
}

.zh-nav-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 11, 0.8);
  color: var(--nc-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh-nav-discord-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--nc-text);
  text-decoration: none;
}

.zh-nav-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 0.375rem;
  border: none;
  background: var(--nc-blue);
  color: var(--zh-primary-fg);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.zh-nav-login-btn:hover {
  background: var(--nc-blue-dark);
  color: var(--zh-primary-fg);
}

.zh-nav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 9999px;
  background: var(--nc-blue);
  color: var(--zh-primary-fg);
  font-size: 9px;
  font-weight: 700;
}

.zh-nav-mobile-link {
  display: block;
  padding: 8px 12px;
  border-radius: 0.375rem;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.zh-nav-mobile-link:hover,
.zh-nav-mobile-link-active {
  color: var(--nc-text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* ---- Hero ---- */
.zh-hero {
  overflow: visible;
}

.zh-hero-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: var(--nc-text);
  margin: 0;
}

.zh-hero-subtitle,
.zh-section-subtitle {
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.64);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .zh-hero-subtitle { font-size: 1.25rem; }
}

/* ---- Buttons ---- */
.zh-btn {
  border-radius: 9999px !important;
  height: 44px !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  transition: all 0.2s ease !important;
  white-space: nowrap;
}

.zh-btn-primary,
.nc-btn-filled.zh-btn {
  background: var(--nc-blue) !important;
  color: var(--zh-primary-fg) !important;
  border: none !important;
  box-shadow: none !important;
}

.zh-btn-primary:hover,
.nc-btn-filled.zh-btn:hover {
  background: rgba(250, 250, 250, 0.9) !important;
  color: var(--zh-primary-fg) !important;
  box-shadow: none !important;
}

.zh-btn-outline,
.nc-btn-outline.zh-btn {
  background: rgba(9, 9, 11, 0.8) !important;
  color: var(--nc-text) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.zh-btn-outline:hover,
.nc-btn-outline.zh-btn:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--nc-text) !important;
}

/* Button hover animation */
.zh-btn-crosshair,
.nc-buy-btn.zh-btn-crosshair,
.zh-nav-login-btn.zh-btn-crosshair,
button.zh-btn-crosshair {
  transition: transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.22s ease,
              background 0.2s ease,
              border-color 0.2s ease !important;
}

.zh-btn-crosshair:hover,
.nc-buy-btn.zh-btn-crosshair:hover,
.zh-nav-login-btn.zh-btn-crosshair:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 0 24px rgba(79, 123, 248, 0.3), 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.zh-btn-crosshair:active {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 0.1s !important;
}

/* ---- Sections ---- */
.zh-section-header {
  text-align: center;
}

.zh-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--nc-text);
  margin: 0;
  line-height: 1.2;
}

.zh-section-subtitle {
  margin: 12px auto 0;
}

.nc-section-label,
.nc-section-divider {
  display: none;
}

/* ---- Why Choose Us / Feature Cards ---- */
.zh-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .zh-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .zh-features-grid { grid-template-columns: repeat(4, 1fr); }
}

.zh-features-grid.zh-reveal-stagger > .zh-feature-card {
  opacity: 0;
  transform: translateY(48px) scale(0.92);
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.zh-features-grid.nc-visible > .zh-feature-card:nth-child(1) { opacity: 1; transform: none; filter: none; transition-delay: 0.05s; }
.zh-features-grid.nc-visible > .zh-feature-card:nth-child(2) { opacity: 1; transform: none; filter: none; transition-delay: 0.14s; }
.zh-features-grid.nc-visible > .zh-feature-card:nth-child(3) { opacity: 1; transform: none; filter: none; transition-delay: 0.23s; }
.zh-features-grid.nc-visible > .zh-feature-card:nth-child(4) { opacity: 1; transform: none; filter: none; transition-delay: 0.32s; }
.zh-features-grid.nc-visible > .zh-feature-card:nth-child(n+5) { opacity: 1; transform: none; filter: none; transition-delay: 0.4s; }

.zh-feature-card {
  position: relative;
  border-radius: 0.75rem;
  height: 100%;
}

.zh-feature-card-inner {
  position: relative;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(14, 14, 20, 0.9) 0%, rgba(9, 9, 11, 0.65) 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    background 0.35s ease;
}

.zh-feature-card:hover .zh-feature-card-inner {
  transform: translateY(-8px);
  border-color: rgba(79, 123, 248, 0.42);
  background: linear-gradient(145deg, rgba(20, 22, 36, 0.95) 0%, rgba(12, 12, 18, 0.8) 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(79, 123, 248, 0.12),
    0 0 32px rgba(79, 123, 248, 0.14);
}

.zh-feature-glow {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 123, 248, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
}

.zh-feature-card:hover .zh-feature-glow {
  opacity: 1;
  transform: translate(12px, -8px) scale(1.15);
}

.zh-feature-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.07) 50%, transparent 70%);
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.zh-feature-card:hover .zh-feature-card-inner::after {
  left: 140%;
}

.zh-feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(79, 123, 248, 0.25);
  background: rgba(79, 123, 248, 0.1);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.zh-feature-card:hover .zh-feature-icon-wrap {
  transform: translateY(-3px) scale(1.1) rotate(-6deg);
  border-color: rgba(79, 123, 248, 0.5);
  background: rgba(79, 123, 248, 0.18);
  box-shadow: 0 8px 22px rgba(79, 123, 248, 0.22);
}

.zh-feature-icon {
  font-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--nc-blue);
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zh-feature-card:hover .zh-feature-icon {
  color: #fff;
  transform: scale(1.08);
}

.zh-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nc-text);
  margin: 0 0 0.55rem;
  line-height: 1.3;
  transition: color 0.3s ease, transform 0.35s ease;
}

.zh-feature-card:hover .zh-feature-title {
  color: #fff;
  transform: translateX(2px);
}

.zh-feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s ease;
}

.zh-feature-card:hover .zh-feature-desc {
  color: rgba(255, 255, 255, 0.78);
}

/* ---- Game / Product compact grid ---- */
.zh-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px)  { .zh-game-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .zh-game-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .zh-game-grid { grid-template-columns: repeat(6, 1fr); } }

.zh-game-card {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 11, 0.4);
  padding: 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--nc-text);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.zh-game-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(9, 9, 11, 0.6);
  text-decoration: none;
  color: var(--nc-text);
}

.zh-game-card-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}

.zh-game-card:hover .zh-game-card-name {
  color: var(--nc-text);
}

.zh-game-card-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.64);
  margin-top: 0.25rem;
}

.zh-game-card-img-wrap {
  width: 100%;
  aspect-ratio: var(--zh-compact-product-aspect, 3 / 4);
  min-height: 13rem;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
}

.zh-game-card-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

[data-compact-products="true"] .zh-game-card-img-wrap {
  aspect-ratio: var(--zh-compact-product-aspect, 3 / 4);
  min-height: 15rem;
  padding: 0.15rem;
}

@media (min-width: 768px) {
  [data-compact-products="true"] .zh-game-card-img-wrap {
    min-height: 16.5rem;
  }
}

[data-compact-products="true"] .zh-game-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.zh-game-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- How it Works ---- */
.zh-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(9, 9, 11, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.zh-step-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(9, 9, 11, 0.2);
}

.zh-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--nc-text);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.zh-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--nc-text);
  text-align: center;
  margin: 0 0 0.5rem;
}

.zh-step-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.zh-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nc-text);
  text-decoration: none;
  transition: color 0.2s;
}

.zh-link-arrow:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.zh-link-arrow-icon {
  transition: transform 0.2s;
}

.zh-link-arrow:hover .zh-link-arrow-icon {
  transform: translateX(4px);
}

.zh-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 11, 0.4);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.875rem;
}

.zh-search-wrap:focus-within {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ---- Product Cards ---- */
.nc-product-card,
.nc-group-card {
  background: rgba(9, 9, 11, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--nc-radius) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nc-product-card:hover,
.nc-group-card:hover {
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-3px);
}

.nc-product-card .text-accent-500,
.nc-group-modal-product-price-value {
  color: var(--nc-text) !important;
}

.nc-buy-btn {
  background: var(--nc-blue) !important;
  color: var(--zh-primary-fg) !important;
  border-radius: 9999px !important;
}

.nc-buy-btn:hover,
.nc-product-card:hover .nc-buy-btn {
  background: var(--nc-blue-dark) !important;
  box-shadow: none !important;
}

/* ---- Stats ---- */
.nc-stats-grid {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: var(--nc-radius) !important;
}

.nc-stat-item {
  background: rgba(9, 9, 11, 0.6) !important;
}

.nc-stat-number,
.nc-stat-value {
  color: var(--nc-text) !important;
}

/* ---- CTA ---- */
.zh-cta-inner {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(9, 9, 11, 0.6) !important;
  border-radius: var(--nc-radius) !important;
  padding: 48px 28px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nc-cta-glow {
  display: none;
}

/* ---- Footer ---- */
.zh-footer {
  position: relative;
  margin-top: 4rem;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.98) 0%, rgba(9, 9, 11, 0.75) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.zh-footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}

.zh-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px)  { .zh-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .zh-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; } }

.zh-footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.zh-footer-logo-img { height: 28px; width: auto; object-fit: contain; }

.zh-footer-shop-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--nc-text);
  letter-spacing: -0.01em;
}

.zh-footer-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1rem;
}

.zh-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.zh-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.zh-social-link:hover {
  color: var(--nc-text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.zh-footer-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.zh-footer-stat { display: flex; flex-direction: column; gap: 2px; }

.zh-footer-stat-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--nc-text);
  line-height: 1;
}

.zh-footer-stat-lbl {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zh-footer-stat-div {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.zh-footer-col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nc-text);
  margin-bottom: 0.875rem;
}

.zh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zh-footer-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

.zh-footer-link:hover {
  color: var(--nc-text);
  text-decoration: none;
}

.zh-footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.zh-footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.zh-footer-legal-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zh-footer-legal-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.zh-footer-legal-link:hover {
  color: var(--nc-text);
  text-decoration: none;
}

.zh-footer-legal-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.zh-footer-disclaimer {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 28rem;
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

/* ---- Login modal ---- */
.zh-login-modal {
  background: rgba(12, 12, 14, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.75rem !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.zh-login-input,
.zh-login-otp {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.zh-login-input:focus,
.zh-login-otp:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.zh-login-btn {
  background: var(--nc-blue);
  color: var(--zh-primary-fg);
  border: none;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.15s;
}

.zh-login-btn:hover:not(:disabled) {
  background: var(--nc-blue-dark);
  transform: translateY(-1px);
}

/* ---- Products page (full image cards) ---- */
.zh-products-page .nc-product-card,
.zh-products-page .nc-group-card {
  animation: slide-up 0.5s ease-out both;
}

.zh-products-page .nc-card-col-5 {
  animation: slide-up 0.5s ease-out both;
}

.zh-products-page .nc-card-col-5:nth-child(1)  { animation-delay: 0.03s; }
.zh-products-page .nc-card-col-5:nth-child(2)  { animation-delay: 0.06s; }
.zh-products-page .nc-card-col-5:nth-child(3)  { animation-delay: 0.09s; }
.zh-products-page .nc-card-col-5:nth-child(4)  { animation-delay: 0.12s; }
.zh-products-page .nc-card-col-5:nth-child(5)  { animation-delay: 0.15s; }
.zh-products-page .nc-card-col-5:nth-child(n+6) { animation-delay: 0.18s; }

/* ---- Plain images (no zoom / scale on hover) ---- */
img.zh-game-card-img,
.nc-product-card-img-wrap img,
.nc-group-card-img,
.nc-pp-img,
.nc-group-modal-product-img,
.zh-review-avatar-img {
  transition: none !important;
}

.nc-product-card:hover img,
.nc-group-card:hover .nc-group-card-img,
.zh-game-card:hover .zh-game-card-img,
.group:hover img,
.group-hover\:scale-105 {
  transform: none !important;
}

/* Crosshair image cursor override removed */

/* ---- Extra hover animations ---- */
.zh-game-card {
  transition: border-color 0.25s, background 0.25s, color 0.25s !important;
}

.zh-game-card:hover {
  transform: none;
}

.zh-step-card:hover {
  transform: translateY(-3px);
}

.zh-nav-link,
.zh-nav-logo {
  transition: color 0.2s ease;
}

.zh-nav-icon-btn {
  transition: background 0.2s, border-color 0.2s, transform 0.15s ease;
}

.zh-nav-icon-btn:hover {
  transform: translateY(-1px);
}

.zh-nav-login-btn {
  transition: background 0.2s, transform 0.15s ease;
}

.zh-nav-login-btn:hover {
  transform: translateY(-1px);
}

/* ---- Announcement ---- */
.zh-announcement-inner,
.nc-announcement {
  background: rgba(9, 9, 11, 0.95) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.nc-announcement a {
  color: var(--nc-text) !important;
}

/* ---- Feedback cards ---- */
.zh-section .bg-card,
.feedback-card,
[class*="feedback"] {
  border-radius: 0.5rem;
}

/* ---- Trust pills ---- */
.nc-trust-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Page fade-in ---- */
.zh-page.animate-fade-in {
  animation: fade-in 0.5s ease-out forwards;
}

/* ---- Accent color overrides for tailwind classes ---- */
.text-accent-500 {
  color: var(--nc-text) !important;
}

.bg-accent-500 {
  background-color: var(--nc-blue) !important;
  color: var(--zh-primary-fg) !important;
}

.border-accent-500 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ---- Review cards ---- */
.zh-review-card,
.nc-review-card {
  background: rgba(9, 9, 11, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.5rem !important;
  padding: 1.25rem !important;
  transition: border-color 0.3s ease !important;
}

.zh-review-card:hover,
.nc-review-card:hover {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.nc-review-avatar {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--nc-text) !important;
  border-radius: 9999px !important;
}

/* ---- Hide legacy elements on homepage ---- */
.zh-page .nc-hero-bg,
.zh-page .nc-hero-graphic,
.zh-page .nc-hero-gfx-box {
  display: none !important;
}

/* ---- Inner pages still usable ---- */
main .max-w-\[85rem\] {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ---- Navbar team buttons ---- */
.zh-nav-team {
  flex-wrap: nowrap;
  max-width: 42rem;
}

.zh-team-group-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.zh-team-group-nav + .zh-team-group-nav {
  padding-left: 10px;
  margin-left: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.zh-team-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  margin: 0;
}

.zh-team-group-members {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.zh-team-member-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px 3px 3px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.zh-team-member-nav:hover {
  border-color: rgba(79, 123, 248, 0.45);
  background: rgba(79, 123, 248, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(79, 123, 248, 0.18);
  color: #fff;
  text-decoration: none;
}

.zh-team-avatar-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
}

.zh-team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zh-team-member-name {
  white-space: nowrap;
  line-height: 1;
}

.zh-nav-team-mobile .zh-team-group-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0;
  margin-left: 0;
  border-left: none;
}

.zh-nav-team-mobile .zh-team-group-nav + .zh-team-group-nav {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zh-nav-team-mobile .zh-team-group-members {
  width: 100%;
}

.zh-nav-team-mobile .zh-team-member-nav {
  flex: 1 1 auto;
}

/* Navbar currency pill buttons (replaces dropdown) */
.zh-nav-currency {
  padding: 2px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.zh-nav-currency-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
}

.zh-nav-currency-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.zh-nav-currency-btn-active,
.zh-nav-currency-btn.zh-nav-currency-btn-active {
  background: rgba(79, 123, 248, 0.25);
  color: #fff;
}

/* ---- Team section — vertical list (homepage only) ---- */
.zh-team-members-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 40rem;
  margin: 0 auto;
}

.zh-team-members-list.zh-reveal-stagger > .zh-team-member-row {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.zh-team-members-list.nc-visible > .zh-team-member-row:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.zh-team-members-list.nc-visible > .zh-team-member-row:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.zh-team-members-list.nc-visible > .zh-team-member-row:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
.zh-team-members-list.nc-visible > .zh-team-member-row:nth-child(n+4) { opacity: 1; transform: none; transition-delay: 0.26s; }

.zh-team-member-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.zh-team-member-row:hover {
  border-color: rgba(79, 123, 248, 0.35);
  background: rgba(79, 123, 248, 0.08);
  transform: translateX(4px);
}

.zh-team-member-row .zh-team-member-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.zh-team-member-row .zh-team-member-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.zh-team-member-discord-tag {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  min-height: 1rem;
}

.zh-team-member-row .zh-team-socials {
  margin-left: auto;
}

.zh-team-group-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(9, 9, 11, 0.55);
  padding: 1.25rem;
}

.zh-team-group-section .zh-team-group-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.zh-team-group-section .zh-team-group-members {
  flex-direction: column;
  gap: 0.65rem;
}

.zh-team-avatar-wrap-lg {
  width: 48px;
  height: 48px;
}

.zh-team-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
}

.zh-team-avatar-loading {
  background: linear-gradient(110deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.06) 75%);
  background-size: 200% 100%;
  animation: zh-avatar-shimmer 1.2s ease-in-out infinite;
}

@keyframes zh-avatar-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.zh-team-member-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.zh-team-member-card:hover {
  border-color: rgba(79, 123, 248, 0.4);
  background: rgba(79, 123, 248, 0.08);
  transform: translateY(-2px);
}

.zh-team-member-card .zh-team-avatar-wrap {
  width: 48px;
  height: 48px;
}

.zh-team-member-card .zh-team-member-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.zh-team-member-card .zh-team-member-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.zh-team-member-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.zh-team-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.zh-team-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.zh-team-social-btn:hover {
  color: #fff;
  border-color: rgba(79, 123, 248, 0.45);
  background: rgba(79, 123, 248, 0.2);
  transform: translateY(-1px);
  text-decoration: none;
}

.zh-nav-currency-mobile {
  border: none;
  background: transparent;
  padding: 0;
}

/* ---- Navbar dropdown panels (Download, Colors) ---- */
.zh-nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
}

.zh-nav-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.zh-nav-panel-inner {
  padding: 1rem 0 1.25rem;
}

.zh-nav-colors-inner {
  width: 100%;
  max-width: 20rem;
  margin-left: auto;
}

.zh-nav-panel-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.75rem;
}

.zh-nav-panel-intro {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 48rem;
}

.zh-nav-download-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .zh-nav-download-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zh-nav-download-item {
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.zh-nav-download-item-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.zh-nav-download-item-icon {
  color: var(--nc-blue);
  font-size: 0.85rem;
}

.zh-nav-download-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.zh-nav-download-item-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  margin: 0 0 0.5rem;
}

.zh-nav-download-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nc-blue);
  text-decoration: none;
}

.zh-nav-download-item-link:hover {
  text-decoration: underline;
  color: #fff;
}

/* Color theme presets */
.zh-nav-color-presets {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.zh-nav-color-preset-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  font-family: inherit;
  text-align: left;
}

.zh-nav-color-preset-btn:hover,
.zh-nav-color-preset-btn.zh-nav-color-preset-active {
  border-color: rgba(79, 123, 248, 0.45);
  background: rgba(79, 123, 248, 0.12);
}

.zh-nav-color-swatch {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.zh-nav-color-swatch-accent,
.zh-nav-color-swatch-bg {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Currency dropdown (SellAuth default select + Choices.js) */
.zh-nav-currency-dropdown {
  flex-shrink: 0;
}

.zh-nav-currency-dropdown .choices {
  margin-bottom: 0;
  min-width: 5.5rem;
}

.zh-nav-currency-dropdown .choices__inner {
  min-height: auto !important;
  padding: 0.35rem 1.75rem 0.35rem 0.65rem !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.zh-nav-currency-dropdown .choices__list--dropdown {
  border-radius: 0.65rem !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: #0f0f10 !important;
  margin-top: 4px;
}

.zh-nav-currency-dropdown .choices__list--dropdown .choices__item {
  font-size: 12px !important;
}

.zh-nav-currency-select {
  display: none;
}

/* Buy Now highlight */
.zh-nav-buy-now-pill {
  background: var(--nc-blue) !important;
  color: var(--zh-primary-fg, #09090b) !important;
  border-color: transparent !important;
  font-weight: 700 !important;
}

.zh-nav-buy-now-pill:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  color: var(--zh-primary-fg, #09090b) !important;
}

/* Navbar native currency select */
.zh-nav-currency-native-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 70;
}

.zh-nav-currency-native {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  min-width: 4.75rem;
  max-width: 5.5rem;
  padding: 0.35rem 1.6rem 0.35rem 0.65rem;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 20 20' fill='rgba(255,255,255,0.5)'%3E%3Cpath d='M5.23 7.21l4.77 4.77 4.77-4.77'/%3E%3C/svg%3E") no-repeat right 0.5rem center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  cursor: pointer;
  outline: none;
}

.zh-nav-currency-native:hover,
.zh-nav-currency-native:focus {
  border-color: rgba(79, 123, 248, 0.4);
  background-color: rgba(255, 255, 255, 0.07);
}

.zh-nav-currency-native option {
  background: #0f0f10;
  color: #fff;
}

/* Product buy panel — unified card */
.nc-pp-buy-panel {
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.nc-pp-buy-panel .nc-pp-title-bar {
  border: none !important;
  border-bottom: 1px solid var(--nc-border) !important;
  border-radius: 0 !important;
}

.nc-pp-buy-panel .nc-pp-price-box {
  border: none !important;
  border-bottom: 1px solid var(--nc-border) !important;
}

.nc-pp-buy-panel .nc-pp-badges {
  border: none !important;
  border-bottom: 1px solid var(--nc-border) !important;
}

.nc-pp-buy-panel .nc-pp-live-stats {
  border: none !important;
  border-top: 1px solid var(--nc-border) !important;
}

.nc-pp-buy-panel .nc-pp-features-section {
  border: none !important;
  border-top: 1px solid var(--nc-border) !important;
  border-radius: 0 !important;
}

.nc-pp-buy-panel form > .bg-card\/75,
.nc-pp-buy-panel form > [class*="bg-card"] {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  border-top: 1px solid var(--nc-border) !important;
  border-bottom: 1px solid var(--nc-border) !important;
}

/* Product page — tighter layout, bigger image */
.nc-pp-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.nc-pp-grid {
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

@media (min-width: 1024px) {
  .nc-pp-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 340px) !important;
    gap: 24px !important;
    align-items: start !important;
  }
}

.nc-pp-img-wrap {
  max-width: 100% !important;
  max-height: 560px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.nc-pp-img,
.nc-pp-img-wrap > img.nc-pp-img,
.nc-pp-img-wrap .splide__slide img {
  max-height: 560px !important;
}

.nc-pp-right {
  max-width: 100%;
}

.nc-pp-showcase-wrap {
  max-width: 100%;
}

/* Team groups */
.zh-team-group-section {
  margin-bottom: 2rem;
}

.zh-team-group-section:last-child {
  margin-bottom: 0;
}

.zh-team-group-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================================================================
   EXECUTORS PAGE
================================================================ */
.zh-exec-page {
  min-height: 60vh;
  scroll-margin-top: 5rem;
}

#executors.zh-exec-page {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.zh-exec-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.zh-exec-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 52rem;
}

.zh-exec-intro {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0 0 0.65rem;
  max-width: 52rem;
}

.zh-exec-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(79, 123, 248, 0.25);
  background: linear-gradient(135deg, rgba(79, 123, 248, 0.12), rgba(255, 255, 255, 0.03));
}

.zh-exec-cta-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.35rem;
}

.zh-exec-cta-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
  max-width: 36rem;
  line-height: 1.6;
}

.zh-exec-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: var(--nc-blue);
  color: var(--zh-primary-fg, #09090b);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.zh-exec-cta-btn:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.zh-exec-section {
  margin-bottom: 2rem;
}

.zh-exec-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.85rem;
}

.zh-exec-recommended-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
}

.zh-exec-rec-card {
  padding: 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zh-exec-rec-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.zh-exec-rec-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.zh-exec-rec-price {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.zh-exec-versions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .zh-exec-versions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.zh-exec-version-card {
  padding: 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.zh-exec-version-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.zh-exec-version-updated {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.zh-exec-version-code {
  display: block;
  font-size: 0.75rem;
  color: var(--nc-blue);
  background: rgba(79, 123, 248, 0.1);
  padding: 0.35rem 0.5rem;
  border-radius: 0.35rem;
  word-break: break-all;
}

.zh-exec-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.zh-exec-stat {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.zh-exec-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.zh-exec-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.35rem;
}

.zh-exec-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.zh-exec-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.zh-exec-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.zh-exec-search {
  width: 100%;
  padding: 0.55rem 0.85rem 0.55rem 2.25rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

.zh-exec-search:focus {
  border-color: rgba(79, 123, 248, 0.45);
}

.zh-exec-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.zh-exec-filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 0.25rem;
}

.zh-exec-filter-select {
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
}

.zh-exec-category {
  margin-bottom: 2rem;
}

.zh-exec-category-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.zh-exec-category-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.zh-exec-category-count {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.zh-exec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .zh-exec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .zh-exec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zh-exec-card {
  padding: 0.9rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.zh-exec-card:hover {
  border-color: rgba(79, 123, 248, 0.28);
  background: rgba(79, 123, 248, 0.06);
}

.zh-exec-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.zh-exec-card-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.zh-exec-card-version {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}

.zh-exec-card-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.zh-exec-sunc-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zh-exec-status {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zh-exec-status-working {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.zh-exec-status-down {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.zh-exec-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.zh-exec-card-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.zh-exec-card-updated {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

.zh-exec-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.zh-exec-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border-radius: 0.25rem;
}

.zh-exec-tag-updated {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.zh-exec-tag-stale {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
}

.zh-exec-compat {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
}

.zh-exec-compat strong {
  color: var(--nc-blue);
}

.zh-exec-buy-btn,
.zh-exec-card-buy {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 0.4rem;
  background: rgba(79, 123, 248, 0.2);
  border: 1px solid rgba(79, 123, 248, 0.35);
  color: var(--nc-blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  margin-left: auto;
}

.zh-exec-buy-btn:hover,
.zh-exec-card-buy:hover {
  background: var(--nc-blue);
  color: var(--zh-primary-fg, #09090b);
}

.zh-exec-title-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.zh-exec-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.zh-exec-empty p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 28rem;
  margin-inline: auto;
}
