/* ================================================================
   CULTURE CAVE — VENDOR ROSTER
   ================================================================ */

/* ── WRAP ─────────────────────────────────────────── */
.ccvr-wrap {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 56px 48px 48px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  text-align: center !important;
  border-radius: 20px;
}

/* Cave edges drawn by JS canvas — no CSS pseudo-elements needed */

/* ── PARTICLES ────────────────────────────────────── */
.ccvr-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ccvr-hero,
.ccvr-section,
.ccvr-footer {
  position: relative;
  z-index: 1;
}

/* ── HERO ─────────────────────────────────────────── */
.ccvr-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 16px;
}

.ccvr-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7c3aed;
  animation: ccvr-blink 1.4s ease-in-out infinite;
}
.ccvr-dot:last-child { animation-delay: 0.7s; }

@keyframes ccvr-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

.ccvr-hero-title {
  text-align: center;
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  margin: 0 0 18px;
  color: #0f0a1e;
}

.ccvr-hw {
  display: inline-block;
  margin: 0 10px;
  animation: ccvr-drop 0.7s cubic-bezier(.22,1,.36,1) both;
  animation-delay: calc(attr(data-i number, 0) * 0.15s + 0.1s);
}
.ccvr-hw[data-i="0"] { animation-delay: 0.10s; }
.ccvr-hw[data-i="1"] { animation-delay: 0.25s; }
.ccvr-hw[data-i="2"] { animation-delay: 0.40s; }

.ccvr-hw--accent {
  background: linear-gradient(90deg, #c084fc, #22d3ee, #f472b6, #c084fc);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ccvr-drop 0.7s cubic-bezier(.22,1,.36,1) 0.25s both,
             ccvr-pan 4s linear infinite;
}

@keyframes ccvr-drop {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ccvr-pan {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.ccvr-hero-sub {
  text-align: center !important;
  font-size: clamp(13px, 2.2vw, 17px);
  color: #475569;
  margin: 0 auto 52px;
  max-width: 500px;
  width: 100%;
  line-height: 1.55;
  animation: ccvr-fade-up 0.8s ease 0.55s both;
}

@keyframes ccvr-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── DIVIDER LINE between hero and sections ─────── */
.ccvr-hero::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #22d3ee);
  margin: 0 auto 52px;
  border-radius: 2px;
  animation: ccvr-fade-up 0.6s ease 0.7s both;
}

/* ── SECTION HEADER ───────────────────────────────── */
.ccvr-section {
  margin-bottom: 56px;
}

.ccvr-section-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(168,85,247,0.2);
}

.ccvr-section-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.ccvr-section-title {
  font-size: clamp(18px, 3.5vw, 26px);
  font-weight: 800;
  color: #0f0a1e;
  margin: 0 0 2px;
  letter-spacing: -0.3px;
}

.ccvr-section-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7c3aed;
}

.ccvr-section-count {
  margin-left: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  flex-shrink: 0;
}

/* ── SECTION TITLE SHIMMER ────────────────────────── */
.ccvr-section-title {
  background: linear-gradient(90deg, #0f0a1e 0%, #7c3aed 40%, #22d3ee 60%, #0f0a1e 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ccvr-title-pan 4s linear infinite;
}
@keyframes ccvr-title-pan {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* ── GRID ─────────────────────────────────────────── */
.ccvr-grid {
  display: grid;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  perspective: 1400px;
}

.ccvr-grid--single { grid-template-columns: minmax(0, 480px); justify-content: center; }
.ccvr-grid--two    { grid-template-columns: repeat(2, 1fr); }
.ccvr-grid--many   { grid-template-columns: repeat(3, 1fr); }

/* ── CARD ─────────────────────────────────────────── */
.ccvr-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 3/4;
  transform-style: preserve-3d;
  will-change: transform;
  animation: ccvr-card-in 0.75s cubic-bezier(.22,1,.36,1) var(--card-delay, 0.2s) both;
  transition: box-shadow 0.35s ease;
}

/* Ambient outer glow — activates on hover */
.ccvr-card::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  background: linear-gradient(135deg, #a855f7, #06b6d4, #f472b6);
  z-index: -1;
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ccvr-card:hover::after {
  opacity: 0.7;
  animation: ccvr-glow-pulse 2.5s ease-in-out infinite;
}
@keyframes ccvr-glow-pulse {
  0%, 100% { filter: blur(14px); opacity: 0.7; }
  50%       { filter: blur(22px); opacity: 1;   }
}

.ccvr-card:hover {
  box-shadow:
    0 30px 60px rgba(168,85,247,0.5),
    0 10px 30px rgba(6,182,212,0.3);
}

@keyframes ccvr-card-in {
  from { opacity: 0; transform: translateY(36px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Background image */
.ccvr-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.ccvr-card:hover .ccvr-card-bg { transform: scale(1.09); }

/* ── GLARE LAYER (injected by JS) ─────────────────── */
.ccvr-card-glare {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}

/* Gradient overlay */
.ccvr-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,3,15,0.10) 0%,
    rgba(5,3,15,0.05) 35%,
    rgba(5,3,15,0.88) 100%
  );
}

/* Shimmer border */
.ccvr-card-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #a855f7, #06b6d4, #f472b6, #a855f7);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ccvr-shimmer 4s linear infinite;
  pointer-events: none;
}

@keyframes ccvr-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Card inner content */
.ccvr-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 14px 22px;
  z-index: 2;
  transform: translateZ(18px);
  transform-style: preserve-3d;
}

/* ── CYCLING TAGLINE — sleek corner text ──────────── */
.ccvr-tagline { pointer-events: none; }

.ccvr-tagline-txt {
  display: inline-block;
  font-size: clamp(7px, 1.4vw, 10px);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c084fc, #22d3ee, #f9a8d4, #c084fc);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ccvr-tl-pan 3s linear infinite;
  white-space: nowrap;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.9)) drop-shadow(0 2px 4px rgba(0,0,0,0.95));
}

/* animated underline */
.ccvr-tagline-txt::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, #c084fc 40%, #22d3ee 60%, transparent);
  background-size: 200% auto;
  animation: ccvr-tl-line 2s linear infinite;
}

@keyframes ccvr-tl-pan {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
@keyframes ccvr-tl-line {
  0%   { background-position: -100% center; }
  100% { background-position: 200% center; }
}

/* ── LOCATION BADGE — static neon 3D ─────────────── */
.ccvr-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  backdrop-filter: blur(10px);
  /* 3D depth: top highlight + bottom shadow + drop */
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 3px 8px rgba(0,0,0,0.6),
    0 1px 2px rgba(0,0,0,0.8);
}

/* top gloss highlight — gives 3D rounded look */
.ccvr-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 45%;
  border-radius: 100px 100px 60% 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
  pointer-events: none;
}

/* USA — electric cyan */
.ccvr-badge--usa {
  background: linear-gradient(180deg, rgba(6,182,212,0.55) 0%, rgba(2,90,110,0.7) 100%);
  border: 1.5px solid #22d3ee;
  color: #fff;
  text-shadow: 0 0 10px rgba(6,182,212,0.9), 0 1px 0 rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,50,60,0.6),
    0 0 12px rgba(6,182,212,0.55),
    0 3px 8px rgba(0,0,0,0.6);
}

/* UK — hot pink */
.ccvr-badge--uk {
  background: linear-gradient(180deg, rgba(244,114,182,0.55) 0%, rgba(120,30,80,0.7) 100%);
  border: 1.5px solid #f472b6;
  color: #fff;
  text-shadow: 0 0 10px rgba(244,114,182,0.9), 0 1px 0 rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(80,0,40,0.5),
    0 0 12px rgba(244,114,182,0.5),
    0 3px 8px rgba(0,0,0,0.6);
}

/* EU — amber gold */
.ccvr-badge--eu {
  background: linear-gradient(180deg, rgba(251,191,36,0.6) 0%, rgba(120,80,0,0.7) 100%);
  border: 1.5px solid #fbbf24;
  color: #fff;
  text-shadow: 0 0 10px rgba(251,191,36,0.9), 0 1px 0 rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(80,50,0,0.5),
    0 0 12px rgba(251,191,36,0.5),
    0 3px 8px rgba(0,0,0,0.6);
}

/* Canada — emerald */
.ccvr-badge--canada {
  background: linear-gradient(180deg, rgba(52,211,153,0.55) 0%, rgba(10,80,50,0.7) 100%);
  border: 1.5px solid #34d399;
  color: #fff;
  text-shadow: 0 0 10px rgba(52,211,153,0.9), 0 1px 0 rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,50,30,0.5),
    0 0 12px rgba(52,211,153,0.5),
    0 3px 8px rgba(0,0,0,0.6);
}

/* South Africa — lime green */
.ccvr-badge--southafrica {
  background: linear-gradient(180deg, rgba(74,222,128,0.55) 0%, rgba(10,70,20,0.7) 100%);
  border: 1.5px solid #4ade80;
  color: #fff;
  text-shadow: 0 0 10px rgba(74,222,128,0.9), 0 1px 0 rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,40,10,0.5),
    0 0 12px rgba(74,222,128,0.5),
    0 3px 8px rgba(0,0,0,0.6);
}

/* AUS — orange */
.ccvr-badge--aus {
  background: linear-gradient(180deg, rgba(251,146,60,0.6) 0%, rgba(120,50,0,0.7) 100%);
  border: 1.5px solid #fb923c;
  color: #fff;
  text-shadow: 0 0 10px rgba(251,146,60,0.9), 0 1px 0 rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(80,30,0,0.5),
    0 0 12px rgba(251,146,60,0.5),
    0 3px 8px rgba(0,0,0,0.6);
}

/* Ireland — shamrock green */
.ccvr-badge--ireland {
  background: linear-gradient(180deg, rgba(22,163,74,0.6) 0%, rgba(5,60,20,0.75) 100%);
  border: 1.5px solid #16a34a;
  color: #fff;
  text-shadow: 0 0 10px rgba(22,163,74,0.95), 0 1px 0 rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(5,40,15,0.5),
    0 0 14px rgba(22,163,74,0.55),
    0 3px 8px rgba(0,0,0,0.6);
}

/* Default — purple */
.ccvr-badge {
  background: linear-gradient(180deg, rgba(168,85,247,0.55) 0%, rgba(70,20,120,0.7) 100%);
  border: 1.5px solid #a855f7;
  color: #fff;
  text-shadow: 0 0 10px rgba(168,85,247,0.9), 0 1px 0 rgba(0,0,0,0.5);
}

/* ── LOGO — full card overlay ─────────────────────── */
.ccvr-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.ccvr-logo {
  height: auto;
  width: 65%;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: ccvr-logo-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(168,85,247,0.65))
          drop-shadow(0 0 60px rgba(6,182,212,0.3));
}

/* Per-vendor size overrides — match the logo in each background image */
.ccvr-card[data-vendor="twisted"] .ccvr-logo { width: 68%; }
.ccvr-card[data-vendor="sporeworks"] .ccvr-logo { width: 58%; }

@keyframes ccvr-logo-pulse {
  0%, 100% { opacity: 0.82; filter: drop-shadow(0 0 28px rgba(168,85,247,0.65)) drop-shadow(0 0 60px rgba(6,182,212,0.3)); }
  50%       { opacity: 0.96; filter: drop-shadow(0 0 44px rgba(168,85,247,0.9))  drop-shadow(0 0 80px rgba(6,182,212,0.5)); }
}

/* ── BOTTOM GROUP (name + shipping) ──────────────── */
.ccvr-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ── VENDOR NAME ──────────────────────────────────── */
.ccvr-card-name {
  font-size: clamp(15px, 2.8vw, 22px);
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* ── FOOTER ───────────────────────────────────────── */
.ccvr-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding-top: 8px;
}

.ccvr-footer-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4));
}
.ccvr-footer-line:last-child {
  background: linear-gradient(90deg, rgba(168,85,247,0.4), transparent);
}

.ccvr-footer-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(15,10,30,0.3);
  white-space: nowrap;
}

/* ── SHIPPING LABEL ───────────────────────────────── */
.ccvr-shipping {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ── EMPTY CATEGORY STATE ─────────────────────────── */
.ccvr-empty {
  text-align: center;
  padding: 48px 24px;
  color: #334155;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px dashed rgba(168,85,247,0.2);
  border-radius: 16px;
}

/* ══════════════════════════════════════════════════
   LAB TESTING SECTION — Tryptomics bespoke layout
   ══════════════════════════════════════════════════ */
.ccvr-lab-section {
  position: relative;
  background: linear-gradient(135deg, #020d0f 0%, #041218 40%, #060d18 70%, #020a0c 100%);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
  border: 1px solid rgba(0,255,180,0.15);
  box-shadow: 0 0 60px rgba(0,200,150,0.08), inset 0 0 80px rgba(0,0,0,0.4);
}

/* scanline overlay */
.ccvr-lab-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,255,180,0.015) 2px,
    rgba(0,255,180,0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.ccvr-lab-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 56px 48px;
}

/* LEFT — text content */
.ccvr-lab-left {
  flex: 1;
  min-width: 0;
}

.ccvr-lab-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,255,180,0.7);
  margin-bottom: 16px;
}

.ccvr-lab-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  color: #e2f8f4;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  text-align: left;
}

.ccvr-lab-accent {
  background: linear-gradient(90deg, #00ffb4, #00e5ff, #00ffb4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ccvr-tl-pan 3s linear infinite;
}

.ccvr-lab-tagline {
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(180,220,210,0.8);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 420px;
  text-align: left;
}

.ccvr-lab-services {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ccvr-lab-services li {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  color: rgba(200,240,230,0.85);
  letter-spacing: 0.5px;
  padding: 8px 14px;
  background: rgba(0,255,180,0.06);
  border: 1px solid rgba(0,255,180,0.12);
  border-radius: 8px;
  text-align: left;
}

.ccvr-lab-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(0,255,180,0.15), rgba(0,229,255,0.1));
  border: 1.5px solid rgba(0,255,180,0.5);
  border-radius: 50px;
  color: #00ffb4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0,255,180,0.15);
}

.ccvr-lab-cta:hover {
  background: linear-gradient(135deg, rgba(0,255,180,0.25), rgba(0,229,255,0.2));
  box-shadow: 0 0 30px rgba(0,255,180,0.3);
  color: #00ffb4;
  text-decoration: none;
}

/* RIGHT — card */
.ccvr-lab-right {
  flex: 0 0 340px;
  width: 340px;
}

.ccvr-lab-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3/4;
  border: 1.5px solid rgba(0,255,180,0.2);
  box-shadow: 0 0 40px rgba(0,255,180,0.1), 0 20px 40px rgba(0,0,0,0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ccvr-lab-card:hover {
  box-shadow: 0 0 60px rgba(0,255,180,0.2), 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}

.ccvr-lab-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ccvr-lab-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,10,8,0.2) 0%, rgba(0,10,8,0.7) 100%);
}

.ccvr-lab-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.ccvr-lab-badge {
  align-self: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00ffb4;
  background: rgba(0,20,16,0.85);
  border: 1px solid rgba(0,255,180,0.4);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(0,255,180,0.2);
}

.ccvr-lab-card-name {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(0,255,180,0.4);
  margin: 0;
  letter-spacing: 1px;
}

/* mobile lab section */
@media (max-width: 700px) {
  .ccvr-lab-inner { flex-direction: column; padding: 36px 20px; gap: 32px; }
  .ccvr-lab-right { flex: none; width: 100%; max-width: 320px; align-self: center; }
  .ccvr-lab-title { font-size: clamp(24px, 8vw, 36px); }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 700px) {
  .ccvr-wrap { padding: 40px 16px 36px; }

  .ccvr-grid--two,
  .ccvr-grid--many { grid-template-columns: 1fr; max-width: 420px; }

  .ccvr-card { aspect-ratio: 4/5; }

  .ccvr-section-count { display: none; }
}

@media (min-width: 701px) and (max-width: 960px) {
  .ccvr-grid--many { grid-template-columns: repeat(2, 1fr); }
}
