/* =====================================================
   AbyssianX IQ — Forge Design System
   Pure CSS port from Base44/JSX source
   Place in: site/assets/css/forge.css
   ===================================================== */

/* ── Variables ── */
:root {
  --acid-green: #39ff14;
  --safety-orange: #ff6b00;
  --electric-white: #f0fff4;
  --carbon-dark: #0a0a0a;
  --carbon-mid: #111111;
  --carbon-light: #1a1a1a;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #0a0a0a;
  color: #f0fff4;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Carbon Fiber Background ── */
.carbon-fiber {
  background-color: #0d0d0d;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 8px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 8px);
  background-size: 4px 4px, 4px 4px, 8px 8px, 8px 8px;
}

/* ── Scanlines overlay ── */
.scanlines::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px);
  pointer-events: none;
  z-index: 9999;
}

/* ── Glow Text ── */
.glow-green { color: #39ff14; text-shadow: 0 0 8px #39ff14, 0 0 20px rgba(57,255,20,0.4); }
.glow-orange { color: #ff6b00; text-shadow: 0 0 8px #ff6b00, 0 0 20px rgba(255,107,0,0.4); }
.glow-white  { color: #f0fff4; text-shadow: 0 0 6px rgba(240,255,244,0.7), 0 0 15px rgba(240,255,244,0.3); }

/* ── Cards ── */
.card-dormant {
  border: 1px solid rgba(57,255,20,0.15);
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  background: rgba(255,255,255,0.02);
}
.card-dormant:hover {
  border-color: #39ff14;
  box-shadow: 0 0 12px rgba(57,255,20,0.27), 0 0 30px rgba(57,255,20,0.13), inset 0 0 20px rgba(57,255,20,0.04);
  transform: translateY(-2px);
}
.card-ignite {
  border: 1px solid rgba(57,255,20,0.4);
  box-shadow: 0 0 40px rgba(57,255,20,0.08), inset 0 0 40px rgba(57,255,20,0.04);
}

/* ── Forge Buttons ── */
.btn-forge-orange,
.btn-forge-green,
.btn-forge-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: inherit;
}

/* Orange (primary) — solid fill, high contrast */
.btn-forge-orange {
  background: linear-gradient(135deg, #ff6b00 0%, #cc4f00 100%);
  border: 2px solid #ff6b00;
  color: #f0fff4;
  clip-path: none;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255,107,0,0.3);
}
.btn-forge-orange:hover {
  background: linear-gradient(135deg, #ff8533 0%, #ff6b00 100%);
  box-shadow: 0 0 24px rgba(255,107,0,0.6), 0 0 48px rgba(255,107,0,0.2);
  transform: translateY(-1px);
  color: #fff;
}
.btn-forge-orange:active { transform: translateY(0); }

/* Green (secondary) — outlined */
.btn-forge-green {
  background: transparent;
  border: 2px solid #39ff14;
  color: #39ff14;
  clip-path: none;
  border-radius: 2px;
}
.btn-forge-green:hover {
  background: rgba(57,255,20,0.1);
  box-shadow: 0 0 20px rgba(57,255,20,0.4), 0 0 40px rgba(57,255,20,0.15);
  color: #f0fff4;
  text-shadow: 0 0 6px #39ff14;
}

/* Ghost */
.btn-forge-ghost {
  background: transparent;
  border: 1px solid rgba(240,255,244,0.35);
  color: #f0fff4;
  clip-path: none;
  border-radius: 2px;
}
.btn-forge-ghost:hover {
  border-color: rgba(240,255,244,0.8);
  box-shadow: 0 0 12px rgba(240,255,244,0.2);
}

/* ── Nav ── */
#ticker-bar {
  width: 100%;
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(57,255,20,0.08);
  padding: 6px 0;
  overflow: hidden;
}
#ticker-bar p {
  font-size: 10px;
  text-align: center;
  color: rgba(57,255,20,0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

#main-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: all 0.3s ease;
}
#main-nav.nav-transparent { background: transparent; }
#main-nav.nav-scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(57,255,20,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-zap-icon {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 6px #39ff14);
}
.nav-logo:hover .nav-zap-icon { transform: scale(1.15); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-sub { font-size: 11px; color: rgba(240,255,244,0.5); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 500; }
.nav-logo-main { font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(240,255,244,0.6);
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: #39ff14;
  box-shadow: 0 0 6px #39ff14;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: #39ff14; text-shadow: 0 0 8px #39ff14; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-controls { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  background: transparent;
  border: none;
  color: rgba(240,255,244,0.7);
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.2s, filter 0.2s;
}
.cart-btn:hover { color: #39ff14; filter: drop-shadow(0 0 6px #39ff14); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  background: #ff6b00;
  color: #000;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: rgba(240,255,244,0.7);
  padding: 8px;
  transition: color 0.2s;
}
.mobile-menu-btn:hover { color: #39ff14; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid rgba(57,255,20,0.15);
  padding: 8px 24px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(240,255,244,0.6);
  border-bottom: 1px solid rgba(57,255,20,0.08);
  transition: color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: #39ff14; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ── Hex Overlay ── */
.hex-overlay {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-4L4 48.5V18.5L28 4l24 14.5v30L28 62z' fill='none' stroke='%2339ff1412' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}
.hero-accent-line-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #39ff14 40%, #39ff14 60%, transparent 100%);
  opacity: 0.7;
}
.hero-accent-line-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #ff6b00 40%, #ff6b00 60%, transparent 100%);
  opacity: 0.6;
}
.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(57,255,20,0.25);
  background: rgba(57,255,20,0.06);
  padding: 6px 16px;
  font-size: 10px;
  color: rgba(57,255,20,0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 32px;
}
.badge-zap { animation: pulse-glow 2s ease-in-out infinite; }

.hero-title { font-weight: 900; line-height: 0.9; margin-bottom: 24px; }
.hero-title-line1 {
  display: block;
  font-size: clamp(72px, 14vw, 160px);
  color: #f0fff4;
  letter-spacing: -0.04em;
  text-shadow: 0 0 60px rgba(240,255,244,0.1);
}
.hero-title-line2 {
  display: block;
  font-size: clamp(60px, 11vw, 120px);
  letter-spacing: -0.03em;
}
.hero-tagline {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-services {
  font-size: 11px;
  color: rgba(240,255,244,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-cta-primary { padding: 14px 32px; font-size: 13px; }
.hero-cta-secondary { padding: 13px 28px; font-size: 13px; }

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(57,255,20,0.5);
}
.scroll-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #39ff14 0%, transparent 100%);
  animation: scroll-fade 2s ease-in-out infinite;
}
@keyframes scroll-fade {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Feature Strip ── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(57,255,20,0.08);
  border-bottom: 1px solid rgba(57,255,20,0.08);
  background: rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .feature-strip { grid-template-columns: repeat(4, 1fr); }
}
.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #f0fff4; }
.feature-sub { font-size: 10px; color: rgba(240,255,244,0.4); margin-top: 2px; }

/* ── Section Divider ── */
.forge-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.27), rgba(255,107,0,0.27), transparent);
}

/* ── Category Section ── */
.category-section { padding: 64px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-line { flex: 1; max-width: 40px; height: 1px; background: #ff6b00; }
.section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 16px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
}
.category-icon { font-size: 28px; }
.category-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #f0fff4; }
.category-sub { font-size: 10px; color: rgba(240,255,244,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: -6px; }

/* ── CTA Section ── */
.cta-section { padding: 64px 24px; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(57,255,20,0.04) 0px, rgba(57,255,20,0.04) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.cta-inner { max-width: 768px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-box {
  display: inline-block;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 40px 32px;
  border-radius: 2px;
}
.cta-title { font-size: clamp(22px, 4vw, 32px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-sub { font-size: 11px; color: rgba(240,255,244,0.5); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 28px; }
.cta-btn { padding: 14px 36px; font-size: 13px; }

/* ── Footer ── */
#site-footer,
.site-footer {
  border-top: 1px solid rgba(57,255,20,0.1);
  background: #050505;
  padding: 48px 24px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 12px; color: rgba(240,255,244,0.4); line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-heading { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(57,255,20,0.7); margin-bottom: 8px; }
.footer-nav-link { font-size: 12px; color: rgba(240,255,244,0.5); transition: color 0.2s; }
.footer-nav-link:hover { color: #f0fff4; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { font-size: 12px; color: rgba(240,255,244,0.5); }
.footer-contact-link { font-size: 12px; color: rgba(240,255,244,0.5); transition: color 0.2s; }
.footer-contact-link:hover { color: #f0fff4; }

.pong-footer {
  border-top: 1px solid rgba(57,255,20,0.08);
  position: relative;
  overflow: hidden;
  height: 60px;
}
.pong-label {
  font-size: 10px;
  color: rgba(240,255,244,0.3);
  letter-spacing: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: rgba(6,6,6,0.82);
  border: 1px solid rgba(57,255,20,0.18);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.pong-label-text {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,255,244,0.55);
  font-weight: 600;
}
.pong-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.pong-brand-abyss { color: #39ff14; text-shadow: 0 0 8px #39ff14; }
.pong-brand-x { color: #ff6b00; text-shadow: 0 0 8px #ff6b00; }
.pong-brand-iq { color: #f0fff4; text-shadow: 0 0 6px rgba(240,255,244,0.5); }
.pong-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
}
.pong-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}
.pong-dot.green { background: #39ff14; box-shadow: 0 0 6px #39ff14; }
.pong-dot.orange { background: #ff6b00; box-shadow: 0 0 6px #ff6b00; }
.pong-dot.pale { background: rgba(240,255,244,0.18); box-shadow: 0 0 5px rgba(240,255,244,0.4); }
#pong-canvas { display: block; width: 100%; height: 60px; }

.footer-bottom {
  border-top: 1px solid rgba(57,255,20,0.06);
  padding: 16px 0;
  text-align: center;
  font-size: 10px;
  color: rgba(240,255,244,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px; max-width: 95vw;
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid rgba(57,255,20,0.2);
  z-index: 50;
  transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(57,255,20,0.1);
}
.cart-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.cart-close {
  background: transparent; border: none;
  color: rgba(240,255,244,0.5); padding: 4px;
  transition: color 0.2s;
}
.cart-close:hover { color: #f0fff4; }

.cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 48px 0; color: rgba(240,255,244,0.4); }
.cart-empty p { font-size: 13px; margin-bottom: 20px; }
.cart-items { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(57,255,20,0.08); }
.cart-item-img { width: 56px; height: 56px; object-fit: cover; border: 1px solid rgba(57,255,20,0.15); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 12px; font-weight: 600; color: #f0fff4; margin-bottom: 4px; }
.cart-item-meta { font-size: 11px; color: rgba(240,255,244,0.4); }
.cart-item-price { font-size: 13px; font-weight: 700; color: #39ff14; align-self: flex-start; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(57,255,20,0.1);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 700;
  margin-bottom: 16px;
  color: #f0fff4;
}
.checkout-btn { width: 100%; justify-content: center; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(57,255,20,0.4); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #39ff14; }

/* ── Animations ── */
@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes forge-in {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
.forge-in { animation: forge-in 0.6s cubic-bezier(0.25,0.46,0.45,0.94) both; }

/* ── Variant Pills (for Shop) ── */
.variant-pill {
  border: 1px solid rgba(57,255,20,0.3);
  color: rgba(240,255,244,0.7);
  background: transparent;
  padding: 4px 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 1px;
}
.variant-pill:hover, .variant-pill.active {
  border-color: #39ff14;
  color: #39ff14;
  background: rgba(57,255,20,0.08);
  box-shadow: 0 0 8px rgba(57,255,20,0.27);
}

/* ── Measurements Table ── */
.measurements-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.measurements-table th {
  color: rgba(57,255,20,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-bottom: 1px solid rgba(57,255,20,0.15);
  text-align: left;
}
.measurements-table td {
  padding: 6px 10px;
  color: rgba(240,255,244,0.7);
  border-bottom: 1px solid rgba(57,255,20,0.06);
}
.measurements-table tr.active-row td { color: #39ff14; background: rgba(57,255,20,0.06); }

/* ── Shop Page ── */
.shop-hero {
  padding: 48px 24px 32px;
  border-bottom: 1px solid rgba(57,255,20,0.08);
}
.shop-title { font-size: clamp(28px, 5vw, 48px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; }
.shop-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(57,255,20,0.08);
  background: rgba(0,0,0,0.3);
  max-width: 1280px; margin: 0 auto;
}
.filter-btn {
  padding: 6px 16px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid rgba(57,255,20,0.2);
  background: transparent; color: rgba(240,255,244,0.5);
  cursor: pointer; transition: all 0.2s; border-radius: 1px;
}
.filter-btn:hover, .filter-btn.active {
  border-color: #39ff14; color: #39ff14;
  background: rgba(57,255,20,0.07);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1280px; margin: 0 auto;
  padding: 32px 24px;
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 12px;
  }
}

.product-card {
  border: 1px solid rgba(57,255,20,0.12);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
  cursor: pointer; overflow: hidden;
}
.product-card:hover {
  border-color: rgba(57,255,20,0.5);
  box-shadow: 0 0 20px rgba(57,255,20,0.1);
  transform: translateY(-2px);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  background: #111; aspect-ratio: 1;
}
.product-img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 8px; left: 8px;
  background: #ff6b00; color: #000;
  font-size: 9px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 8px;
}
.product-info { padding: 16px; }
.product-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #f0fff4; margin-bottom: 4px; }
.product-brand { font-size: 10px; color: rgba(240,255,244,0.35); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.product-price { font-size: 14px; font-weight: 700; color: #39ff14; }

/* ── Custom Orders Page ── */
.custom-hero { padding: 64px 24px 48px; text-align: center; }
.custom-form { max-width: 680px; margin: 0 auto; padding: 0 24px 64px; }

/* Main layout container */
.custom-order-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* Form element */
.custom-order-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Form sections (fieldsets) */
.form-section {
  border: none;
  margin: 0 0 32px;
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(57,255,20,0.1);
  border-radius: 4px;
}
.form-section-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  padding: 0;
  float: none;
  display: block;
  width: 100%;
}

/* 2-column row */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

/* Form groups */
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

/* Labels */
.form-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(57,255,20,0.7); margin-bottom: 8px; }
.req { color: #ff6b00; }

/* Inputs, selects, textareas */
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(57,255,20,0.2);
  color: #f0fff4;
  padding: 12px 16px;
  font-size: 13px; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 2px;
  appearance: none;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #39ff14;
  box-shadow: 0 0 12px rgba(57,255,20,0.2);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-select option { background: #111; color: #f0fff4; }

/* Hint text */
.form-hint {
  font-size: 10px;
  color: rgba(240,255,244,0.35);
  margin-top: 5px;
  letter-spacing: 0.05em;
}

/* Checkbox */
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: rgba(240,255,244,0.7);
}
.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #ff6b00;
  cursor: pointer;
  flex-shrink: 0;
}

/* Service type radio grid */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 500px) {
  .service-select-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 700px) {
  .service-select-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-option {
  display: block;
  cursor: pointer;
}
.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
}
.service-option-label:hover {
  border-color: rgba(57,255,20,0.4);
  background: rgba(57,255,20,0.05);
}
.service-option.selected .service-option-label,
.service-option input[type="radio"]:checked ~ .service-option-label {
  border-color: #39ff14;
  background: rgba(57,255,20,0.08);
  box-shadow: 0 0 10px rgba(57,255,20,0.15);
}
.service-option-icon { font-size: 22px; line-height: 1; }
.service-option-name { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #f0fff4; }
.service-option-desc { font-size: 9px; color: rgba(240,255,244,0.4); line-height: 1.3; }

/* Validation error */
.form-error {
  font-size: 11px;
  color: #ff4d4d;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}

/* Submit row — centered */
.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  text-align: center;
}
.form-submit-btn {
  min-width: 240px;
  font-size: 14px;
  padding: 16px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-privacy-note {
  font-size: 10px;
  color: rgba(240,255,244,0.3);
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Success / confirmation message */
.form-success {
  background: rgba(57,255,20,0.05);
  border: 1px solid rgba(57,255,20,0.3);
  border-radius: 6px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 32px;
}
.success-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 16px #ff6b00);
}
.form-success h2 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.form-success p {
  font-size: 13px;
  color: rgba(240,255,244,0.65);
  margin: 0 0 8px;
}
.success-order-id {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px !important;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  display: inline-block;
}

/* Confirmation note under success */
.form-success-note {
  font-size: 11px;
  color: rgba(240,255,244,0.4);
  margin-top: 20px !important;
  letter-spacing: 0.05em;
}

/* ── Designer Page ── */
.designer-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 100px);
}
@media (min-width: 1024px) {
  .designer-layout { grid-template-columns: 300px 1fr; }
}
.designer-sidebar {
  background: rgba(0,0,0,0.6);
  border-right: 1px solid rgba(57,255,20,0.1);
  padding: 20px;
  overflow-y: auto;
}
.designer-canvas-wrap {
  display: flex; align-items: center; justify-content: center;
  background: #111; padding: 32px;
}
#designer-canvas { border: 1px solid rgba(57,255,20,0.2); }

/* ═══════════════════════════════════════════════════════════
   NITRO PRODUCT CARD
   Based on abyssian.ink design, converted to Nitro palette
   ═══════════════════════════════════════════════════════════ */

.nitro-card {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(57, 255, 20, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.nitro-card:hover {
  border-color: var(--acid-green);
  box-shadow: 
    0 0 0 1px var(--acid-green),
    0 0 30px rgba(57, 255, 20, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* ── Image Container ── */
.nitro-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
}

.nitro-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nitro-card:hover .nitro-card__img {
  transform: scale(1.08);
}

.nitro-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
}

.nitro-card__img-placeholder svg {
  opacity: 0.3;
}

/* ── Brand Badge ── */
.nitro-card__brand-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 255, 244, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

/* ── Stock Indicator ── */
.nitro-card__stock {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(240, 255, 244, 0.7);
  z-index: 2;
}

.nitro-card__stock.stock--low {
  border-color: rgba(255, 107, 0, 0.3);
}

.nitro-card__stock.stock--out {
  border-color: rgba(255, 68, 68, 0.3);
}
.nitro-card__stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid-green);
  box-shadow: 0 0 6px var(--acid-green);
}

.nitro-card__stock.stock--low .nitro-card__stock-dot {
  background: var(--safety-orange);
  box-shadow: 0 0 6px var(--safety-orange);
}

.nitro-card__stock.stock--out .nitro-card__stock-dot {
  background: #ff4444;
  box-shadow: 0 0 6px #ff4444;
}
.nitro-card__stock-dot.low {
  background: var(--safety-orange);
  box-shadow: 0 0 6px var(--safety-orange);
}

.nitro-card__stock-dot.out {
  background: #ff4444;
  box-shadow: 0 0 6px #ff4444;
}

/* ── Front/Back Toggle ── */
.nitro-card__view-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  padding: 4px;
  border-radius: 6px;
  border: 1px solid rgba(57, 255, 20, 0.15);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 2;
}

.nitro-card:hover .nitro-card__view-toggle {
  opacity: 1;
  transform: translateY(0);
}

.nitro-card__view-btn {
  padding: 6px 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  background: transparent;
  color: rgba(240, 255, 244, 0.5);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nitro-card__view-btn:hover {
  color: var(--electric-white);
}

.nitro-card__view-btn.active {
  background: rgba(57, 255, 20, 0.15);
  color: var(--acid-green);
}

/* ── Hover Overlay ── */
.nitro-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1;
}

.nitro-card:hover .nitro-card__overlay {
  opacity: 1;
}

.nitro-card__action {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  transform: translateY(20px);
  opacity: 0;
  text-decoration: none;
}

.nitro-card:hover .nitro-card__action {
  transform: translateY(0);
  opacity: 1;
}

.nitro-card:hover .nitro-card__action:nth-child(1) { transition-delay: 0.05s; }
.nitro-card:hover .nitro-card__action:nth-child(2) { transition-delay: 0.1s; }

.nitro-card__action--primary {
  background: linear-gradient(135deg, var(--safety-orange) 0%, #cc4f00 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.nitro-card__action--primary:hover {
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.7);
  transform: scale(1.1) translateY(0) !important;
}

.nitro-card__action--secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nitro-card__action--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.nitro-card__action svg {
  width: 20px;
  height: 20px;
}

/* ── Info Section ── */
.nitro-card__info {
  padding: 16px;
}

.nitro-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--electric-white);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.nitro-card:hover .nitro-card__title {
  color: var(--acid-green);
}

.nitro-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--acid-green);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
  margin-bottom: 16px;
}

.nitro-card__msrp {
  font-size: 14px;
  font-weight: 400;
  color: rgba(240, 255, 244, 0.5);
  text-decoration: line-through;
  text-shadow: none;
  margin-right: 6px;
}

.nitro-card__price-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(240, 255, 244, 0.5);
  margin-left: 8px;
  text-decoration: line-through;
  text-shadow: none;
}
.nitro-card__price-label::before {
  content: 'MSRP ';
  text-decoration: none;
  font-weight: 500;
}

/* ── Variants Section ── */
.nitro-card__variants {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Colors ── */
.nitro-card__colors-header {
  font-size: 10px;
  color: rgba(240, 255, 244, 0.4);
  margin-bottom: 8px;
}

.nitro-card__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.nitro-card__color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(57, 255, 20, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  background: #333;
  padding: 0;
}

.nitro-card__color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nitro-card__color-swatch:hover {
  transform: scale(1.15);
  border-color: rgba(57, 255, 20, 0.5);
}

.nitro-card__color-swatch.active {
  border-color: var(--acid-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.nitro-card__color-overflow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(57, 255, 20, 0.15);
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: rgba(240, 255, 244, 0.5);
}

.nitro-card__color-name {
  font-size: 11px;
  color: rgba(240, 255, 244, 0.6);
  margin-top: 6px;
}

/* ── Sizes ── */
.nitro-card__sizes-header {
  font-size: 10px;
  color: rgba(240, 255, 244, 0.4);
  margin-bottom: 8px;
}

.nitro-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nitro-card__size-pill {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(57, 255, 20, 0.2);
  background: transparent;
  color: rgba(240, 255, 244, 0.6);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nitro-card__size-pill:hover {
  border-color: rgba(57, 255, 20, 0.5);
  color: rgba(240, 255, 244, 0.9);
}

.nitro-card__size-pill.active {
  border-color: var(--acid-green);
  background: rgba(57, 255, 20, 0.1);
  color: var(--acid-green);
}

/* ── Size Table (Waist × Inseam grid for pants/overalls) ── */
.nitro-card__size-table-wrap {
  margin-top: 4px;
}

.nitro-card__size-table-wrap summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nitro-card__size-table-wrap summary::-webkit-details-marker {
  display: none;
}

.nitro-card__size-expand {
  font-size: 9px;
  color: var(--acid-green);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nitro-card__size-table-wrap[open] .nitro-card__size-expand {
  transform: rotate(90deg);
  display: inline-block;
}

.nitro-card__size-table-wrap:hover .nitro-card__size-expand {
  opacity: 1;
}

.nitro-card__size-table {
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 10px;
  width: 100%;
  max-width: 280px;
}

.nitro-card__size-table th,
.nitro-card__size-table td {
  padding: 4px 6px;
  text-align: center;
  border: 1px solid rgba(57, 255, 20, 0.15);
}

.nitro-card__size-table thead th {
  background: rgba(57, 255, 20, 0.08);
  color: var(--acid-green);
  font-weight: 600;
  font-size: 9px;
}

.nitro-card__size-table tbody th {
  background: rgba(57, 255, 20, 0.05);
  color: rgba(240, 255, 244, 0.7);
  font-weight: 600;
  text-align: right;
  padding-right: 8px;
}

.nitro-card__size-cell {
  background: transparent;
  border: none;
  color: var(--acid-green);
  cursor: pointer;
  font-size: 11px;
  padding: 2px 4px;
  transition: all 0.15s;
}

.nitro-card__size-cell:hover {
  background: rgba(57, 255, 20, 0.2);
  transform: scale(1.1);
}

.nitro-card__size-cell--empty {
  color: rgba(240, 255, 244, 0.2);
  font-size: 9px;
}

/* ── Nitro Card Responsive ── */
@media (max-width: 640px) {
  .nitro-card__info {
    padding: 12px;
  }

  .nitro-card__title {
    font-size: 12px;
  }

  .nitro-card__price {
    font-size: 15px;
  }

  .nitro-card__color-swatch {
    width: 22px;
    height: 22px;
  }

  .nitro-card__size-pill {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.max-w-site { max-width: 1280px; margin: 0 auto; }

.status-indicator {
  display: inline-flex;
  gap: 6px;
  margin-left: 6px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.green {
  background-color: #39ff14;
  box-shadow: 0 0 6px #39ff14;
}

.status-dot.orange {
  background-color: #ff6b00;
  box-shadow: 0 0 6px #ff6b00;
}

.status-dot.red {
  background-color: #ff0000;
  box-shadow: 0 0 6px #ff0000;
}

/* ── Designer View Toggle ── */
.designer-view-btn {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  border: 1px solid rgba(240, 255, 244, 0.15);
  color: rgba(240, 255, 244, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}
.designer-view-btn:hover {
  border-color: rgba(57, 255, 20, 0.3);
  color: rgba(240, 255, 244, 0.8);
}
.designer-view-btn.active {
  background: rgba(57, 255, 20, 0.15);
  border-color: rgba(57, 255, 20, 0.5);
  color: var(--acid-green);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
}


/* ── Designer Color Swatches ── */
.designer-color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(57, 255, 20, 0.2);
  cursor: pointer;
  overflow: hidden;
  background: #333;
  padding: 0;
  transition: all 0.2s ease;
}

.designer-color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-color-swatch:hover {
  transform: scale(1.15);
  border-color: rgba(57, 255, 20, 0.5);
}

.designer-color-swatch.active {
  border-color: var(--acid-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}
