/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
 */

:root {
  /* Purple and Cyan Theme Palette */
  --neon-cyan: #00f0ff;
  --neon-purple: #bd00ff;
  --neon-purple-dim: rgba(189, 0, 255, 0.15);
  --neon-cyan-dim: rgba(0, 240, 255, 0.15);
  
  --deep-space: #070313;
  --panel-space: #12092a;
  --panel-border: rgba(189, 0, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #e2e0e7;
  --text-muted: #8b859e;
  
  /* Bootstrap overrides */
  --bs-primary: var(--neon-cyan) !important;
  --bs-primary-rgb: 0, 240, 255 !important;
  --bs-body-bg: var(--deep-space) !important;
  --bs-body-bg-rgb: 7, 3, 19 !important;
  --bs-gray-bg: var(--panel-space) !important;
  --bs-gray-bg-rgb: 18, 9, 42 !important;
  --bs-border-color: var(--panel-border) !important;
  --bs-border-color-rgb: 189, 0, 255 !important;
  --bs-border-radius: 12px !important;
  
  --cl-accent: var(--neon-cyan) !important;
  --cl-accent-rgb: 0, 240, 255 !important;
  --cl-background-primary: var(--deep-space) !important;
  --cl-background-primary-rgb: 7, 3, 19 !important;
  --cl-background-secondary: var(--panel-space) !important;
  --cl-background-secondary-rgb: 18, 9, 42 !important;
  --cl-border: var(--panel-border) !important;
  --cl-border-rgb: 189, 0, 255 !important;
}

/* Background Glowing Aura */
body {
  position: relative;
  background-color: var(--deep-space) !important;
  color: var(--text-secondary) !important;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(189, 0, 255, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--deep-space);
}
::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 4px;
  border: 1px solid var(--deep-space);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* Gradient Typography */
.hero .content h1,
.section-title h1,
.section-title h2,
.footer h5,
.modal-title,
.cta-text-image .content .title,
.cta-text-center .content .title,
.hero-color {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Glassmorphic Navigation Bar */
.navbar {
  background: rgba(7, 3, 19, 0.8) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15) !important;
  transition: all 0.3s ease;
}

.navbar .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* Glassmorphic & Glowing Cards */
.products .card,
.testimonial,
.features .list .feature,
.socials .list .social,
.dropdown-menu,
.modal-content,
.addon-item {
  background: rgba(18, 9, 42, 0.45) !important;
  border: 1px solid rgba(189, 0, 255, 0.18) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.products .card:hover,
.testimonial:hover,
.features .list .feature:hover,
.socials .list .social:hover,
.addon-item:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 240, 255, 0.5) !important;
  box-shadow: 0 12px 30px rgba(0, 240, 255, 0.15), 0 0 15px rgba(189, 0, 255, 0.1) !important;
}

/* Card image enhancements */
.products .card .card-img-top {
  background: rgba(7, 3, 19, 0.5) !important;
  border-radius: 16px 16px 0 0 !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(189, 0, 255, 0.1) !important;
}

.products .card .card-img-top img {
  transition: transform 0.5s ease !important;
}

.products .card:hover .card-img-top img {
  transform: scale(1.06) !important;
}

/* Glowing Neon Buttons */
.btn-primary,
.navbar .cart .btn .count {
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25) !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%) !important;
  box-shadow: 0 0 25px rgba(189, 0, 255, 0.45) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-outline-primary {
  border: 1px solid var(--neon-cyan) !important;
  color: var(--neon-cyan) !important;
  background: transparent !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.btn-outline-primary:hover {
  background: rgba(0, 240, 255, 0.1) !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3) !important;
  color: #ffffff !important;
  border-color: var(--neon-cyan) !important;
  transform: translateY(-1px);
}

/* Glassmorphic Badges */
.products .card .card-img-top .badges div,
.product-wrapper .badges div,
.product-wrapper .badges a {
  background: rgba(0, 240, 255, 0.12) !important;
  border: 1px solid rgba(0, 240, 255, 0.35) !important;
  color: var(--neon-cyan) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.08) !important;
}

/* Form inputs & search bar */
.hero .fake-searchbar input,
.hero .search-modal .searchbar input,
.form-control,
.form-select,
.choices__inner {
  background: rgba(18, 9, 42, 0.6) !important;
  border: 1px solid rgba(189, 0, 255, 0.25) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.hero .fake-searchbar input:focus,
.hero .search-modal .searchbar input:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25) !important;
  background: rgba(18, 9, 42, 0.8) !important;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Full Premium Redesign
   ═══════════════════════════════════════════════════════════ */
footer.footer {
  background: transparent !important;
  border-top: none !important;
  overflow: hidden;
  position: relative;
}

/* ── WHY US SECTION ─────────────────────────────────────── */
.footer-why-us {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(
    180deg,
    rgba(7, 3, 19, 0) 0%,
    rgba(12, 5, 28, 0.95) 15%,
    rgba(12, 5, 28, 0.98) 85%,
    rgba(7, 3, 19, 0) 100%
  );
  overflow: hidden;
}

/* Background glow orbs */
.footer-why-us__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}
.footer-why-us__glow--left {
  background: radial-gradient(circle, rgba(189, 0, 255, 0.5) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}
.footer-why-us__glow--right {
  background: radial-gradient(circle, rgba(0, 240, 255, 0.4) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
}

/* Header */
.footer-why-us__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.footer-why-us__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.footer-why-us__eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.footer-why-us__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.footer-why-us__title-accent {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-why-us__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature card grid */
.footer-why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.footer-feature-card {
  background: rgba(18, 9, 42, 0.55);
  border: 1px solid rgba(189, 0, 255, 0.18);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(189, 0, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.footer-feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 16px 40px rgba(0, 240, 255, 0.1), 0 0 20px rgba(189, 0, 255, 0.08);
}

.footer-feature-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(189, 0, 255, 0.2) 0%, rgba(0, 240, 255, 0.15) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.3s ease;
}

.footer-feature-card__icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.5));
}

.footer-feature-card:hover .footer-feature-card__icon-wrap {
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
}

.footer-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.footer-feature-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.footer-feature-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 999px;
  padding: 3px 10px;
}

.footer-feature-card__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 5px #00ff88;
  display: inline-block;
  animation: live-pulse 1.8s ease-in-out infinite;
}

/* Trust bar */
.footer-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(189, 0, 255, 0.2);
  border-radius: 18px;
  background: rgba(18, 9, 42, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  row-gap: 1.25rem;
}

.footer-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 2rem;
  flex: 1;
  min-width: 100px;
}

.footer-trust-num {
  font-size: 1.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-trust-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.footer-trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(189, 0, 255, 0.25);
  flex-shrink: 0;
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.footer-divider-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(189, 0, 255, 0.35) 25%,
    rgba(0, 240, 255, 0.35) 75%,
    transparent 100%
  );
  margin: 0 auto;
  max-width: 900px;
}

/* ── LINKS / SOCIALS ROW ──────────────────────────────────── */
.footer-links-row {
  /* Inherits Bootstrap row */
}

.footer-brand-col {
  margin-bottom: 1.5rem;
}

.footer-brand__logo {
  max-height: 40px;
  display: block;
}

.footer-brand__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.footer-brand__tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  line-height: 1.5;
}

.footer-col-heading {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-nav .nav-link {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.25s ease, gap 0.25s ease;
  padding: 0 !important;
}

.footer-nav .nav-link:hover {
  color: var(--neon-cyan) !important;
  gap: 0.55rem;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.footer-nav__arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-nav .nav-link:hover .footer-nav__arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ── BOTTOM BAR ──────────────────────────────────────────── */
.footer-bottom-bar {
  border-top: 1px solid rgba(189, 0, 255, 0.12);
  padding: 1.1rem 0;
  background: rgba(7, 3, 19, 0.5);
}

.footer-bottom-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-bar__copy,
.footer-bottom-bar__disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
}

@media (max-width: 576px) {
  .footer-trust-sep { display: none; }
  .footer-trust-bar { gap: 0.5rem; padding: 1.25rem 1rem; }
  .footer-trust-item { padding: 0 0.75rem; }
  .footer-bottom-bar__inner { flex-direction: column; text-align: center; }
  .footer-why-us { padding: 3rem 0 2.5rem; }
}

/* Reviews and Feedback styling */
.testimonial .content .reply {
  background: rgba(7, 3, 19, 0.4) !important;
  border-left: 3px solid var(--neon-cyan) !important;
}

.testimonial .footer {
  background: rgba(7, 3, 19, 0.3) !important;
  border-top: 1px solid rgba(189, 0, 255, 0.1) !important;
}

/* Product Info Card */
.products .card .info .price {
  color: var(--neon-cyan) !important;
  font-weight: 600;
}

.products .card .card-title {
  color: #ffffff;
  font-weight: 500;
}

/* Social icons layout */
.socials .list .social .left svg {
  background-color: var(--neon-purple) !important;
  box-shadow: 0 0 10px rgba(189, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.socials .list .social:hover .left svg {
  background-color: var(--neon-cyan) !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  color: var(--deep-space) !important;
}

/* Hero stats wrapper */
.hero .content .stats {
  background: rgba(18, 9, 42, 0.6) !important;
  border: 1px solid rgba(189, 0, 255, 0.2) !important;
  backdrop-filter: blur(8px);
}

.hero .content .stats div .value {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

/* Announcement Bar */
.announcement {
  background: linear-gradient(90deg, var(--neon-purple) 0%, var(--neon-cyan) 100%) !important;
  color: #ffffff !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-bottom: none !important;
}

.announcement a {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Table styling for customer panels */
.table {
  --bs-table-bg: transparent !important;
  --bs-table-border-color: rgba(189, 0, 255, 0.15) !important;
  color: var(--text-secondary) !important;
}

.table th {
  color: var(--neon-cyan) !important;
  font-weight: 600;
}

/* List group style */
.list-group-item {
  background-color: rgba(18, 9, 42, 0.4) !important;
  border: 1px solid rgba(189, 0, 255, 0.15) !important;
  color: var(--text-secondary) !important;
}

.list-group-item.active {
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%) !important;
  border: none !important;
  color: #ffffff !important;
}

/* Status Indicator rings */
.status-indicator {
  box-shadow: 0 0 10px currentColor;
}

/* ═══════════════════════════════════════════════════════════
   LIVE COUNTER BAR
   ═══════════════════════════════════════════════════════════ */
.live-counter-bar {
  width: 100%;
  background: linear-gradient(90deg,
    rgba(189, 0, 255, 0.08) 0%,
    rgba(7, 3, 19, 0.85) 40%,
    rgba(7, 3, 19, 0.85) 60%,
    rgba(0, 240, 255, 0.08) 100%
  );
  border-bottom: 1px solid rgba(189, 0, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* Subtle shimmer sweep */
.live-counter-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(0, 240, 255, 0.04) 50%,
    transparent 60%
  );
  animation: live-shimmer 4s linear infinite;
  pointer-events: none;
}

@keyframes live-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.live-counter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.live-counter-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2px 1.25rem;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.live-counter-stat:hover {
  background: rgba(0, 240, 255, 0.05);
}

/* Pulsing green dot for "live visitors" */
.live-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 6px #00ff88;
  flex-shrink: 0;
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.live-counter-icon {
  width: 14px;
  height: 14px;
  color: var(--neon-cyan);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.5));
}

.live-counter-label {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.live-counter-value {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 2.5rem;
  text-align: right;
  display: inline-block;
}

/* Vertical divider between stats */
.live-counter-divider {
  width: 1px;
  height: 18px;
  background: rgba(189, 0, 255, 0.3);
  margin: 0 0.25rem;
  flex-shrink: 0;
}

/* Number flip animation */
@keyframes live-flip {
  0%   { opacity: 1;   transform: translateY(0) scale(1); }
  45%  { opacity: 0;   transform: translateY(-6px) scale(0.9); }
  55%  { opacity: 0;   transform: translateY(6px) scale(0.9); }
  100% { opacity: 1;   transform: translateY(0) scale(1); }
}

.live-counter-flip {
  animation: live-flip 0.35s ease forwards;
}

/* Flash on new purchase */
@keyframes live-sale-flash {
  0%   { background: rgba(0, 240, 255, 0); }
  25%  { background: rgba(0, 240, 255, 0.12); }
  100% { background: rgba(0, 240, 255, 0); }
}

.live-counter-sale-flash {
  animation: live-sale-flash 1s ease forwards;
}

/* Mobile: stack vertically if very tight */
@media (max-width: 360px) {
  .live-counter-inner {
    flex-direction: column;
    gap: 4px;
    padding: 4px 1rem;
  }
  .live-counter-divider {
    width: 40px;
    height: 1px;
    margin: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM MENU PAGE  (.cm-*)
   ═══════════════════════════════════════════════════════════ */

/* Page wrapper */
.cm-page {
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* navbar height offset */
}

/* Ambient orbs */
.cm-orb {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.18;
  z-index: 0;
}
.cm-orb--tl {
  background: radial-gradient(circle, rgba(189, 0, 255, 1) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}
.cm-orb--br {
  background: radial-gradient(circle, rgba(0, 240, 255, 1) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
}

/* Section header shared */
.cm-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cm-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.cm-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cm-grad {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ────────────────────────────────────────────────── */
.cm-hero {
  padding: 3.5rem 0 5rem;
  position: relative;
}

.cm-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 1.25rem;
}

.cm-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 6px #00ff88;
  animation: live-pulse 1.8s ease-in-out infinite;
}

.cm-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.cm-hero__title-grad {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.cm-hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.cm-hero__cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.cm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
}

.cm-btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cm-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.35);
  filter: brightness(1.1);
  color: #fff !important;
}

.cm-btn-large {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

.cm-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: rgba(255, 255, 255, 0.65) !important;
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 0.7rem 1.25rem;
  background: transparent;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.cm-btn-outline svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.cm-btn-outline:hover {
  border-color: var(--neon-cyan);
  color: #fff !important;
  background: rgba(0, 240, 255, 0.06);
}

.cm-btn-outline:hover svg {
  transform: translateX(3px);
}

/* Preview frame */
.cm-hero__preview {
  position: relative;
  display: flex;
  justify-content: center;
}

.cm-preview-frame {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(7, 3, 19, 0.8);
  box-shadow:
    0 0 0 1px rgba(189, 0, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 240, 255, 0.08);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
}

.cm-preview-frame__glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, transparent 50%, rgba(189, 0, 255, 0.1) 100%);
  pointer-events: none;
  z-index: 0;
}

.cm-preview-frame__dots {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(7, 3, 19, 0.7);
  border-bottom: 1px solid rgba(189, 0, 255, 0.12);
  position: relative;
  z-index: 1;
}

.cm-preview-frame__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.cm-preview-frame__dots span:nth-child(1) { background: #ff5f57; }
.cm-preview-frame__dots span:nth-child(2) { background: #febc2e; }
.cm-preview-frame__dots span:nth-child(3) { background: #28c840; }

.cm-preview-frame__img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.cm-preview-frame__badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(7, 3, 19, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.cm-preview-frame__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 5px #00ff88;
  animation: live-pulse 1.8s ease-in-out infinite;
}

/* ── FEATURES ────────────────────────────────────────────── */
.cm-features {
  padding: 5rem 0;
}

.cm-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.cm-feat-card {
  background: rgba(18, 9, 42, 0.5);
  border: 1px solid rgba(189, 0, 255, 0.16);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.cm-feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 240, 255, 0.08);
}

.cm-feat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(189, 0, 255, 0.18) 0%, rgba(0, 240, 255, 0.12) 100%);
  border: 1px solid rgba(0, 240, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.cm-feat-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 3px rgba(0, 240, 255, 0.45));
}

.cm-feat-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.55rem;
}

.cm-feat-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.65;
  margin: 0;
}

/* ── PRICING ─────────────────────────────────────────────── */
.cm-pricing {
  padding: 5rem 0;
}

.cm-pricing__wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.cm-pricing__card-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
}

.cm-pricing__card {
  position: relative;
  background: rgba(18, 9, 42, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px rgba(189, 0, 255, 0.1), 0 24px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.cm-pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
}

.cm-pricing__header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(189, 0, 255, 0.15);
  margin-bottom: 2rem;
}

.cm-pricing__game-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
}

.cm-pricing__game-badge svg {
  width: 14px;
  height: 14px;
}

.cm-pricing__price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.cm-pricing__currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 0.6rem;
}

.cm-pricing__amount {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, rgba(0, 240, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.cm-pricing__includes {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

.cm-pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cm-pricing__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.cm-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(0, 240, 255, 0.05) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.cm-pricing__cta {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.cm-pricing__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

/* ── HOW IT WORKS STEPS ──────────────────────────────────── */
.cm-steps {
  padding: 5rem 0;
}

.cm-steps__list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.cm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  flex: 1;
  min-width: 150px;
}

.cm-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(189, 0, 255, 0.18) 0%, rgba(0, 240, 255, 0.12) 100%);
  border: 1px solid rgba(0, 240, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.1);
  flex-shrink: 0;
}

.cm-step__body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cm-step__body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  margin: 0;
}

.cm-step__connector {
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.3), rgba(189, 0, 255, 0.3));
  align-self: 28px;
  margin-top: 27px;
}

/* ── BOTTOM CTA ──────────────────────────────────────────── */
.cm-bottom-cta {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.cm-bottom-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(189, 0, 255, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  border-radius: 50%;
}

.cm-bottom-cta__inner {
  position: relative;
  z-index: 1;
}

.cm-bottom-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cm-bottom-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cm-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cm-hero__title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .cm-hero__preview {
    order: -1;
  }

  .cm-step__connector {
    display: none;
  }

  .cm-steps__list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .cm-step {
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .cm-page {
    padding-top: 60px;
  }

  .cm-hero {
    padding: 2rem 0 3rem;
  }

  .cm-hero__cta-row {
    flex-direction: column;
  }

  .cm-btn-primary,
  .cm-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .cm-pricing__card {
    padding: 1.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   GSXR MOD MENU — INSTRUCTIONS SECTION  (.instr-*)
   ═══════════════════════════════════════════════════════════ */

.instr-section {
  padding: 5rem 0 6rem;
  position: relative;
}

.instr-section__sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.5rem;
  margin-bottom: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Grid layout ─────────────────────────────────────────── */
.instr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* ── Base card ───────────────────────────────────────────── */
.instr-card {
  background: rgba(18, 9, 42, 0.55);
  border: 1px solid rgba(189, 0, 255, 0.18);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.6rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.instr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.instr-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.38);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.08),
              0 0 0 1px rgba(0, 240, 255, 0.06);
}

.instr-card:hover::before {
  opacity: 1;
}

/* ── Accent card (BattlEye step) ─────────────────────────── */
.instr-card--accent {
  border-color: rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.04);
  grid-column: span 2;
}

.instr-card--accent::before {
  opacity: 0.85;
}

@media (max-width: 700px) {
  .instr-card--accent {
    grid-column: span 1;
  }
}

/* ── Warning card (money cap) ────────────────────────────── */
.instr-card--warning {
  border-color: rgba(255, 193, 7, 0.28);
  background: rgba(255, 193, 7, 0.04);
}

.instr-card--warning::before {
  background: linear-gradient(90deg, #ff9800, #ffc107);
  opacity: 0.7;
}

.instr-card--warning:hover {
  border-color: rgba(255, 193, 7, 0.55);
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.07);
}

/* ── Card header row ─────────────────────────────────────── */
.instr-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

/* ── Step number badge ───────────────────────────────────── */
.instr-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(189, 0, 255, 0.2) 0%, rgba(0, 240, 255, 0.14) 100%);
  border: 1px solid rgba(0, 240, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.instr-step-badge--warn {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 193, 7, 0.14) 100%);
  border-color: rgba(255, 193, 7, 0.35);
  color: #ffc107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.12);
}

/* ── Icon box ────────────────────────────────────────────── */
.instr-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(189, 0, 255, 0.16) 0%, rgba(0, 240, 255, 0.1) 100%);
  border: 1px solid rgba(0, 240, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instr-card__icon svg {
  width: 19px;
  height: 19px;
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 3px rgba(0, 240, 255, 0.4));
}

.instr-card__icon--warn {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.16) 0%, rgba(255, 193, 7, 0.1) 100%);
  border-color: rgba(255, 193, 7, 0.25);
}

.instr-card__icon--warn svg {
  color: #ffc107;
  filter: drop-shadow(0 0 3px rgba(255, 193, 7, 0.45));
}

/* ── Card heading ────────────────────────────────────────── */
.instr-card__header h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

/* ── Card body text ──────────────────────────────────────── */
.instr-card__body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
  margin: 0;
}

/* ── Highlighted inline text ─────────────────────────────── */
.instr-highlight {
  color: var(--neon-cyan);
  font-weight: 600;
}

.instr-card--warning .instr-highlight,
.instr-card--warning strong {
  color: #ffc107;
}

/* ── Numbered ordered list (BattlEye steps) ──────────────── */
.instr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  counter-reset: instr-counter;
}

.instr-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
  counter-increment: instr-counter;
}

.instr-list li::before {
  content: counter(instr-counter);
  min-width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.22);
  color: var(--neon-cyan);
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .instr-section {
    padding: 3rem 0 4rem;
  }

  .instr-grid {
    grid-template-columns: 1fr;
  }

  .instr-card--accent {
    grid-column: span 1;
  }
}

/* ── Product Page: Images Flush & Perfectly Contained ────── */

/* carousel-inner: just clips and adds the border/shadow */
.product-wrapper #productImageCarousel .carousel-inner {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.2),
    0 0 32px rgba(0, 240, 255, 0.1),
    0 10px 40px rgba(0, 0, 0, 0.55);
}

/* carousel-item: let Bootstrap handle positioning, just match height */
.product-wrapper #productImageCarousel .carousel-item {
  position: relative;
}

/* The image itself defines its own square shape — simplest reliable approach */
.product-wrapper #productImageCarousel .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  max-height: none;
  min-height: unset;
}

/* Kill any conflicting rules from the aspect-ratio utility class on the img */
.product-wrapper #productImageCarousel img.aspect-product-page-image {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
}

/* ── Thumbnails ───────────────────────────────────────────── */
.product-wrapper .thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.product-wrapper .thumbnails button {
  display: block;
  padding: 0;
  background: none;
  border: 1.5px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  transition: border-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.product-wrapper .thumbnails button.active {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
  opacity: 1;
}

.product-wrapper .thumbnails button:not(.active) {
  opacity: 0.5;
}

.product-wrapper .thumbnails button:not(.active):hover {
  opacity: 0.8;
  border-color: rgba(0, 240, 255, 0.35);
}

.product-wrapper .thumbnails button img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* ── Single image (no carousel) ───────────────────────────── */
.product-wrapper .card-img-top.aspect-product-page-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.2),
    0 0 32px rgba(0, 240, 255, 0.1),
    0 10px 40px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .product-wrapper .thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
}