/* ─────────────────────────────────────────────────────────────────────────────
   The Real Dev Shop — Landing Page Styles
───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: var(--space-20) 0 var(--space-24);
  overflow: hidden;
  position: relative;
}

/* Grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grey-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey-200) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, black 50%, transparent 90%);
  pointer-events: none;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}
.hero-headline .highlight {
  color: #2f5fff;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 640px;
}

/* ─── Search row ─────────────────────────────────────────────────────────── */
.hero-search-row {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  width: 100%;
  margin-bottom: var(--space-8);
}

.hero-search-wrap {
  height: 56px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 560px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-search-wrap:focus-within {
  border-color: #2f5fff;
  box-shadow: 0 0 0 3px rgba(47, 95, 255, 0.12);
}

.hero-search-icon {
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.hero-search-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0 16px;
}
.hero-search-input::placeholder {
  color: var(--text-muted);
}

.hero-browse-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  background: #2f5fff;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.hero-browse-btn:hover {
  background: #1a46e0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(47, 95, 255, 0.35);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hero-stat strong {
  color: var(--text-primary);
  font-weight: 700;
}
.hero-stat-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* ─── Trust Bar ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ─── WHY THE REAL DEV SHOP Section ────────────────────────────────────────────────────── */
.why-section { background: var(--grey-50); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: border-color var(--duration-md) var(--ease), box-shadow var(--duration-md) var(--ease), transform var(--duration-md) var(--ease);
}
.why-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 24px rgb(37 99 235 / 0.08);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: var(--space-5);
}

.why-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.why-vs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.why-vs-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
}
.why-vs-item--them { color: var(--danger); }
.why-vs-item--us   { color: var(--success); font-weight: 600; }

/* ─── Featured Products Section ──────────────────────────────────────────── */
.featured-section { background: #0a0d15; }

.featured-section .section-label { color: #3b82f6; }
.featured-section .h2            { color: #ffffff; }
.featured-section .btn-ghost {
  color: rgba(255,255,255,.65);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.featured-section .btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* ─── How It Works Section ───────────────────────────────────────────────── */
.how-section { background: var(--grey-50); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-300), var(--blue-200));
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.how-step-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--blue-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.how-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.how-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Seller CTA Section ─────────────────────────────────────────────────── */
.seller-cta-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E293B 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.seller-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.seller-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

.seller-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.seller-cta-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(37,99,235,0.2);
  color: #93C5FD;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37,99,235,0.3);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seller-cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: var(--space-5);
}

.seller-cta-sub {
  font-size: 1.125rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.seller-cta-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  margin-bottom: var(--space-8);
}

.seller-cta-perk {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: #CBD5E1;
  font-weight: 500;
}
.seller-cta-perk svg { color: var(--success); flex-shrink: 0; }

.seller-url-preview {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  margin-bottom: var(--space-8);
  font-size: 0.9rem;
  color: #94A3B8;
  gap: 0;
}
.seller-url-preview .url-base { color: #ffffff; }
.seller-url-preview .url-slug {
  color: #60A5FA;
  font-weight: 700;
  border-bottom: 1px dashed #60A5FA;
}

.seller-cta-btns {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ─── Categories Grid ────────────────────────────────────────────────────── */
.categories-section { background: var(--white); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-5) var(--space-3);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--duration-md) var(--ease);
  gap: var(--space-3);
}
.category-card:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgb(37 99 235 / 0.1);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--duration-md) var(--ease);
}
.category-card:hover .category-icon { background: var(--blue-100); }

.category-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.category-card:hover .category-name { color: var(--blue-700); }

.category-count {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ─── Social Proof Section ───────────────────────────────────────────────── */
.proof-section { background: var(--grey-50); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.proof-stars {
  display: flex;
  gap: 3px;
  color: var(--warning);
  margin-bottom: var(--space-4);
}

.proof-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.proof-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.proof-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-700);
  flex-shrink: 0;
}

.proof-name  { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.proof-role  { font-size: 0.75rem; color: var(--text-muted); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid      { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .why-grid > .why-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .products-row  { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid    { grid-template-columns: 1fr 1fr; }
  .proof-grid > .proof-card:last-child { display: none; }
}

@media (max-width: 768px) {
  .hero          { padding: var(--space-16) 0; }
  .hero-headline { font-size: 2.25rem; }
  .hero-sub      { font-size: 1rem; }
  .hero-search-row  { flex-direction: column; gap: 10px; }
  .hero-search-wrap { max-width: 100%; width: 100%; }
  .hero-browse-btn  { width: 100%; justify-content: center; }

  .why-grid      { grid-template-columns: 1fr; }
  .why-grid > .why-card:last-child { grid-column: auto; max-width: none; }
  .products-row  { grid-template-columns: repeat(2, 1fr); }
  .how-steps     { grid-template-columns: 1fr; gap: var(--space-6); }
  .how-steps::before { display: none; }
  .trust-bar-inner { gap: var(--space-6); }
  .trust-divider { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > .proof-card:last-child { display: block; }
}

@media (max-width: 480px) {
  .products-row  { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .seller-cta-btns { flex-direction: column; align-items: center; }
  .seller-cta-btns .btn { width: 100%; max-width: 280px; }
}

/* ─── Game Selector (header) ─────────────────────────────────────────────── */
.game-selector {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 var(--space-3);
  flex-shrink: 0;
}

.game-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-md) var(--ease);
  white-space: nowrap;
  font-family: var(--font);
}
.game-tab:hover {
  border-color: var(--border);
  color: var(--text-secondary);
}
.game-tab--active {
  background: #0D0D0D;
  border-color: #0D0D0D;
  color: white;
}
.game-tab--active:hover {
  background: #0D0D0D;
  border-color: #0D0D0D;
  color: white;
}
.game-tab--inactive {
  opacity: 0.55;
}
.game-tab--inactive:hover {
  opacity: 0.55;
}

/* ─── Big Featured Carousel ──────────────────────────────────────────────── */
.bfc-section {
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.bfc-wrap {
  display: grid;
  grid-template-columns: 1fr 288px;
  min-height: 460px;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ── Main showcase panel ── */
.bfc-main {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  background: #ffffff;
  min-height: 460px;
  padding: var(--space-10) var(--space-8) var(--space-10) var(--space-12);
  overflow: hidden;
}

.bfc-content {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bfc-img-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

.bfc-img-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,0.08);
}

.bfc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 400ms ease;
}

.bfc-img-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42%;
  background: linear-gradient(to bottom, transparent 0%, #f1f5f9 100%);
  pointer-events: none;
}

.bfc-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: var(--space-3);
}

.bfc-name {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: var(--space-3);
  max-width: 300px;
}

.bfc-price-line {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: var(--space-6);
}

.bfc-cta {
  font-size: 0.9rem;
  padding: 11px 22px;
  box-shadow: none;
}
.bfc-cta:hover {
  box-shadow: none;
  transform: none;
}

/* Navigation arrows */
.bfc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bfc-arrow:hover {
  background: rgba(0,0,0,0.12);
  transform: translateY(-50%) scale(1.06);
}
.bfc-arrow--prev { left: var(--space-3); }
.bfc-arrow--next { right: var(--space-3); }

/* Dot indicators */
.bfc-dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.bfc-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
  transition: all 250ms ease;
  padding: 0;
  flex-shrink: 0;
}
.bfc-dot.active {
  background: #2563eb;
  width: 22px;
}

/* ── Sidebar trending panel ── */
.bfc-sidebar {
  background: #f8fafc;
  border-left: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 6px;
}

.bfc-sidebar-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.08);
  cursor: pointer;
  text-decoration: none;
  transition: background 280ms ease, border-color 280ms ease;
  flex: 1;
  min-height: 0;
}
.bfc-sidebar-item:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.14);
}
.bfc-sidebar-item.active {
  background: rgba(37,99,235,0.10);
  border-color: rgba(37,99,235,0.35);
}
.bfc-sidebar-item.active .bfc-sidebar-thumb {
  border-color: rgba(37,99,235,0.45);
}
.bfc-sidebar-item--skeleton {
  pointer-events: none;
  border-color: transparent;
}

.bfc-sidebar-thumb {
  width: 70px;
  height: 52px;
  border-radius: 7px;
  background: #e2e8f0;
  border: 1px solid rgba(0,0,0,0.10);
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color 280ms ease;
}
.bfc-sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bfc-sidebar-thumb.skeleton { height: 56px; }

/* Dark-background skeleton for spotlight cards */
.spc-skel {
  background: linear-gradient(90deg, #1a2238 25%, #232e45 50%, #1a2238 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 4px;
}

.bfc-sidebar-placeholder-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(37,99,235,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bfc-sidebar-meta { flex: 1; min-width: 0; }

.bfc-sidebar-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 4px;
}

.bfc-sidebar-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bfc-sidebar-price {
  font-size: 0.73rem;
  color: #64748b;
  margin-top: 4px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bfc-wrap    { grid-template-columns: 1fr 240px; }
  .bfc-main    { gap: var(--space-6); padding: var(--space-8) var(--space-6) var(--space-8) var(--space-8); }
  .bfc-content { flex: 0 0 260px; }
}

@media (max-width: 768px) {
  .game-selector { margin: 0 var(--space-2); }
  .bfc-wrap    { grid-template-columns: 1fr; }
  .bfc-sidebar { display: none; }
  .bfc-main    { flex-direction: column; align-items: stretch; min-height: auto; padding: var(--space-8) var(--space-6); gap: var(--space-6); }
  .bfc-content { flex: none; }
}

@media (max-width: 480px) {
  .game-selector { display: none; }
  .bfc-main    { padding: var(--space-6) var(--space-4); }
}

/* ─── Spotlight Card Grid (Trending Now section) ─────────────────────────── */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.spotlight-card {
  width: auto;
  border-radius: 14px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #1d2330;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  background: radial-gradient(120% 80% at 50% 0%, #141a2b 0%, #0a0d15 60%);
  position: relative;
  font-family: 'Sora', 'Inter', sans-serif;
}

.spc-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 10px;
  font-family: 'Sora', 'Inter', sans-serif;
}

.spc-heading {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 24px;
  font-family: 'Sora', 'Inter', sans-serif;
}

.spc-heading-gradient {
  background: linear-gradient(90deg, #5b8cff, #2e6bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Image block */
.spc-image-block {
  position: relative;
  margin-bottom: 12px;
}

.spc-frame {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a3344;
}

.spc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 74%;
  transition: transform 350ms ease;
}
.spotlight-card:hover .spc-img {
  transform: scale(1.08);
}

.spc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #141a2b 0%, #1a2340 100%);
}

.spc-badge-new {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: #2e6bff;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(46,107,255,.5);
  font-family: 'Sora', 'Inter', sans-serif;
}

/* Product has a running time-limited sale — sits below the NEW badge when
   both show. Warm amber→red gradient: colorful, attention-grabbing, no neon. */
.spc-badge-sale {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 55%, #DC2626 100%);
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(220,38,38,.4);
  font-family: 'Sora', 'Inter', sans-serif;
  white-space: nowrap;
}
.spc-badge-new + .spc-badge-sale {
  top: 52px;
}

.spc-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(8,11,18,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  font-family: 'Sora', 'Inter', sans-serif;
}

.spc-star { color: #5b8cff; }

/* Store attribution row */
.spc-store {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 6px;
}

.spc-store-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #2e6bff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spc-store-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spc-store-avatar-initial {
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.spc-store-name {
  font-size: 11px;
  color: #8a8f99;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Sora', 'Inter', sans-serif;
  text-decoration: none;
}
a.spc-store { text-decoration: none; }
a.spc-store:hover .spc-store-name { color: #c0c4d0; }

/* Info row */
.spc-info-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.spc-info-left { min-width: 0; }

.spc-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Sora', 'Inter', sans-serif;
}

.spc-price {
  font-size: 16px;
  color: #8a8f99;
  font-family: 'Sora', 'Inter', sans-serif;
}

.spc-price-val {
  color: #5b8cff;
  font-weight: 700;
  font-size: 16px;
}

.spc-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #2e6bff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
  font-family: 'Sora', 'Inter', sans-serif;
  white-space: nowrap;
  margin-top: 10px;
}
.spc-btn:hover {
  background: #1f5bf0;
  transform: translateY(-1px);
  color: #fff;
}

/* Dots */
.spc-dots {
  margin-top: 12px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.spc-dot {
  height: 5px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  background: #2c3343;
  transition: all 220ms ease;
  padding: 0;
}
.spc-dot.active {
  width: 22px;
  background: #2e6bff;
}
.spc-dot:not(.active) { width: 8px; }

/* Spotlight pagination */
.spc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.spc-pg-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  flex-shrink: 0;
}
.spc-pg-arrow:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
}

.spc-pg-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.spc-pg-dot {
  width: 8px;
  height: 5px;
  border-radius: 99px;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 200ms ease;
  padding: 0;
}
.spc-pg-dot.active {
  width: 22px;
  background: #2e6bff;
}

/* Responsive */
@media (max-width: 768px) {
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .spotlight-grid { grid-template-columns: 1fr; gap: 12px; }
  .spotlight-card { padding: 12px; }
  .spc-frame      { height: 140px; }
}

/* ─── Verified Stores: layout classes (moved from inline styles) ─────────── */
.vs-section { padding: 56px 40px 80px; }

.vs-card-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.vs-card-sidebar {
  border-right: 1px solid #ECEFF4;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-logo-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vs-card-products-panel { padding: 22px 24px; }

.vs-prods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Top Picks section header — flex that wraps on mobile */
.spc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8);
}

/* ─── Responsive: Verified Stores + Top Picks ────────────────────────────── */
@media (max-width: 900px) {
  .vs-card-grid { grid-template-columns: 200px 1fr; }
  .vs-prods-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .vs-section { padding: 40px 20px 56px; }
  .vs-card-grid { grid-template-columns: 1fr; }
  .vs-card-sidebar {
    border-right: none;
    border-bottom: 1px solid #ECEFF4;
    padding: 20px;
    flex-direction: column;
  }
  .vs-logo-circle { width: 80px; height: 80px; }
  .vs-card-products-panel { padding: 16px 20px; }
  .vs-prods-grid { grid-template-columns: repeat(2, 1fr); }
  .spc-section-header { flex-wrap: wrap; gap: var(--space-4); align-items: flex-start; }
}

@media (max-width: 480px) {
  .vs-section { padding: 28px 16px 40px; }
}
