/* ============================================================
   store.css — Magnify Store + Listing pages
   ============================================================ */

/* ── HERO ── */
.sh-hero {
  height: 100vh;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #060c19 0%, #0b1628 45%, #091422 100%);
  position: relative;
  overflow: hidden;
}
.sh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 25% 55%, rgba(37,99,235,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 70% 30%, rgba(99,102,241,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Two-column split */
.sh-hero-split {
  display: grid;
  grid-template-columns: 56% 44%;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px;
  gap: 72px;
  align-items: center;
}

/* LEFT column */
.sh-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) 0 80px;
  text-align: left;
  max-width: 560px;
  animation: heroFadeUp 0.7s ease both;
}

/* RIGHT column */
.sh-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) 0 80px;
  animation: heroFadeUp 0.7s 0.15s ease both;
}

/* Entrance animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll hint arrow */
.sh-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: default;
  z-index: 2;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

/* Sidebar head */
.sh-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-shrink: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sh-sidebar-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.1px;
}

/* Scrollable feed */
.sh-sidebar-feed {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 0;
  max-height: calc(100vh - var(--nav-h) - 160px);
}
.sh-sidebar-feed::-webkit-scrollbar { display: none; }
.sh-sidebar-feed::-webkit-scrollbar-track { display: none; }
.sh-sidebar-feed::-webkit-scrollbar-thumb { display: none; }

/* Sidebar cards */
.sh-sidebar-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.sh-sidebar-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(92,156,255,0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.sh-sidebar-card-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #0f1e32;
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sh-sidebar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-sidebar-card-body {
  flex: 1;
  min-width: 0;
}

.sh-sidebar-card-cat {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
  display: block;
  margin-bottom: 4px;
  opacity: 0.85;
}

.sh-sidebar-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.1px;
}

.sh-sidebar-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sh-sidebar-card-loc {
  font-size: 11px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 3px;
}

.sh-sidebar-card-price {
  font-size: 13px;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: -0.2px;
}

.sh-hero-inner {
  max-width: 680px;
  width: 100%;
}

.sh-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 14px;
  opacity: 0.9;
}

.sh-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.sh-hero-sub {
  font-size: 15.5px;
  color: #7a90a8;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── SEARCH BAR ── */
.sh-search-bar {
  display: flex;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  overflow: hidden;
  max-width: 460px;
  margin: 0 0 18px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
}
.sh-search-bar:focus-within {
  background: rgba(255,255,255,0.11);
  border-color: rgba(92,156,255,0.7);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 3px rgba(37,99,235,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}

.sh-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 15px;
  padding: 16px 20px;
  outline: none;
  font-family: inherit;
  min-width: 0;
}
.sh-search-input::placeholder { color: rgba(255,255,255,0.45); }

.sh-search-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 10px 0;
}

.sh-search-loc {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 16px 18px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  appearance: none;
}
.sh-search-loc option { background: #1e293b; }

.sh-search-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  margin: 5px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(37,99,235,0.4);
}
.sh-search-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(37,99,235,0.6);
  transform: translateY(-1px);
}

/* Quick tags */
.sh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

@keyframes floatA {
  0%,100% { transform: translateY(0px) translateX(0px); }
  25%      { transform: translateY(-5px) translateX(2px); }
  50%      { transform: translateY(-3px) translateX(-2px); }
  75%      { transform: translateY(-7px) translateX(1px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px) translateX(0px); }
  30%      { transform: translateY(-6px) translateX(-3px); }
  60%      { transform: translateY(-2px) translateX(2px); }
  80%      { transform: translateY(-8px) translateX(-1px); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0px) translateX(0px); }
  20%      { transform: translateY(-4px) translateX(3px); }
  55%      { transform: translateY(-8px) translateX(-2px); }
  80%      { transform: translateY(-3px) translateX(1px); }
}

.sh-tags .sh-tag:nth-child(3n+1) { animation: floatA 5.2s ease-in-out infinite; }
.sh-tags .sh-tag:nth-child(3n+2) { animation: floatB 6.1s ease-in-out infinite; }
.sh-tags .sh-tag:nth-child(3n)   { animation: floatC 4.8s ease-in-out infinite; }

.sh-tags:has(.sh-tag:hover) .sh-tag:not(:hover) {
  transform: translateY(4px) scale(0.96);
  opacity: 0.65;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sh-tag {
  will-change: transform;
}

.sh-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sh-tag svg {
  flex-shrink: 0;
  display: block;
}
.sh-tag:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ── HIDE PAGE SCROLLBAR ── */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

/* ── CATEGORIES ── */
.sh-cats {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  background: #f1f5f9;
}

.sh-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.sh-cat-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}
.sh-cat-card:hover {
  border-color: var(--border-hover);
  background: rgba(92,156,255,0.04);
}

.sh-cat-icon {
  font-size: 22px;
  line-height: 1;
}

.sh-cat-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
}

/* ── BROWSE CONTROLS (marketplace.php top) ── */
.sh-browse-header {
  background: linear-gradient(160deg, #f0f4ff 0%, #f8fafc 100%);
  padding: calc(var(--nav-h) + 36px) 24px 32px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.sh-browse-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.sh-browse-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 860px;
}

.sh-browse-controls input[type="text"],
.sh-browse-controls select {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  padding: 9px 13px;
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition);
}
.sh-browse-controls input[type="text"] { flex: 1 1 180px; min-width: 0; }
.sh-browse-controls input:focus, .sh-browse-controls select:focus { border-color: var(--accent); }
.sh-browse-controls select option { background: #1e293b; }
.sh-browse-controls .sh-search-btn { border-radius: var(--radius); padding: 9px 18px; }

.sh-browse-body {
  padding: 36px 0 80px;
  background: #f8fafc;
}

/* Filter pills */
.sh-active-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sh-pill {
  background: rgba(92,156,255,0.1);
  border: 1px solid rgba(92,156,255,0.25);
  color: #93c5fd;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.sh-pill-x { color: var(--text-3); font-size: 15px; line-height: 1; }

/* Count */
.sh-count {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}

/* ── LISTING DETAIL ── */
.sh-detail {
  max-width: 920px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 36px) 24px 80px;
}

.sh-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.sh-detail-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}

.sh-detail-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.sh-detail-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: 13px;
}

/* Price card */
.sh-price-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 210px;
  max-width: 240px;
  flex-shrink: 0;
  text-align: center;
}

.sh-price-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.sh-price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

/* Listing thumbnail */
.sh-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  max-height: 460px;
}
.sh-detail-img img { width: 100%; height: 100%; object-fit: cover; }

/* Description block */
.sh-detail-block {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 20px;
}

.sh-detail-block-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 14px;
}

.sh-detail-desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-line;
}

/* Provider card */
.sh-provider-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: border-color var(--transition);
}
.sh-provider-card:hover { border-color: var(--border-hover); }

.sh-provider-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(92,156,255,0.12);
  border: 1px solid rgba(92,156,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}
.sh-provider-avatar img { width: 100%; height: 100%; object-fit: cover; }

.sh-provider-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.sh-provider-loc { font-size: 13px; color: var(--text-3); }
.sh-provider-verified { font-size: 12px; color: var(--green); margin-top: 2px; }

/* Contact form section */
.sh-contact {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.sh-contact-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

/* Form fields for listing form */
.sh-form-section {
  margin-bottom: 36px;
}

.sh-form-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(92,156,255,0.15);
}

.sh-field {
  margin-bottom: 16px;
}

.sh-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sh-field input,
.sh-field textarea,
.sh-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  font-family: inherit;
  box-sizing: border-box;
}

.sh-field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}
.sh-field input:focus, .sh-field textarea:focus, .sh-field select:focus {
  border-color: var(--accent);
  background: rgba(92,156,255,0.04);
}
.sh-field select option { background: #1e293b; }

.sh-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sh-price-wrap { position: relative; }
.sh-price-wrap .sh-dollar {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  font-size: 14px;
  pointer-events: none;
}
.sh-price-wrap input { padding-left: 26px !important; }

.sh-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}
.sh-submit-btn:hover { background: var(--accent-hover); }

.sh-form-note {
  background: rgba(92,156,255,0.07);
  border: 1px solid rgba(92,156,255,0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #93c5fd;
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── EARN / CTA BANNER ── */
.sh-cta-band {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.sh-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sh-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.sh-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.sh-cta-desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.sh-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sh-cta-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.sh-cta-btn-primary { background: var(--accent); color: #fff; }
.sh-cta-btn-primary:hover { background: var(--accent-hover); }

.sh-cta-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
}
.sh-cta-btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

/* Steps */
.sh-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.sh-step:last-child { margin-bottom: 0; }

.sh-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(92,156,255,0.1);
  border: 1px solid rgba(92,156,255,0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sh-step strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 3px;
}

.sh-step p {
  color: var(--text-3);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .sh-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sh-detail-header { flex-direction: column; }

  .sh-price-card {
    width: 100%;
    max-width: none;
    min-width: unset;
  }

  .sh-field-row { grid-template-columns: 1fr; }

  .sh-browse-controls { flex-direction: column; }
  .sh-browse-controls input,
  .sh-browse-controls select,
  .sh-browse-controls .sh-search-btn { width: 100%; flex: unset; }
}

@media (max-width: 480px) {
  .sh-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── HERO TWO-COLUMN RESPONSIVE ── */
@media (max-width: 1024px) {
  .sh-hero-split {
    grid-template-columns: 54% 46%;
    padding: 0 32px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .sh-hero {
    min-height: auto;
  }
  .sh-hero-split {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 0;
  }
  .sh-hero-left {
    padding: calc(var(--nav-h) + 40px) 0 36px;
    text-align: center;
    max-width: 100%;
  }
  .sh-search-bar {
    max-width: 100%;
    margin: 0 auto 18px;
  }
  .sh-tags { justify-content: center; }
  .sh-hero-right {
    padding: 0 0 48px;
  }
  .sh-sidebar-feed {
    max-height: 320px;
  }
}

/* ── JUST CREATED BANNER ── */
.sh-success-banner {
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ── RECENTLY LISTED DARK BAND (legacy — hidden, now in hero sidebar) ── */
.sh-recent-band {
  display: none;
}

.sh-recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.sh-recent-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sh-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  flex-shrink: 0;
}

.sh-recent-see-all {
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  text-decoration: none;
}
.sh-recent-see-all:hover { text-decoration: underline; }

.sh-recent-fade-wrap { position: relative; }

.sh-recent-fade {
  height: 100px;
  background: linear-gradient(transparent, var(--bg-dark));
  margin-top: -100px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.sh-recent-browse-row {
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  padding: 16px 0 48px;
}

.sh-recent-browse-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
  font-family: inherit;
}
.sh-recent-browse-btn:hover { border-color: rgba(255,255,255,0.3); color: #f1f5f9; }

/* Dark card variants (for the dark band) */
.mn-card-dark {
  background: #1e293b !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}
.mn-card-dark:hover { border-color: rgba(92,156,255,0.3) !important; }

.mn-card-img-dark { background: #162032 !important; }

.mn-card-cat-dark { color: #60a5fa !important; }

.mn-card-title-dark { color: #f1f5f9 !important; }

.mn-card-footer-dark { border-top-color: rgba(255,255,255,0.06) !important; }

.mn-empty-dark { color: #475569; }
.mn-empty-dark a { color: #60a5fa; }

/* ── CATEGORIES light mode update ── */
.sh-cat-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.sh-cat-card:hover {
  border-color: rgba(37,99,235,0.25);
  background: #eff6ff;
}
.sh-cat-name { color: #475569; }

/* ── CTA BAND white variant ── */
.sh-cta-band-blue {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

/* Animated background blobs */
.sh-cta-band-blue::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: ctaBlobDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.sh-cta-band-blue::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
  bottom: -80px;
  left: 10%;
  animation: ctaBlobDrift 11s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
@keyframes ctaBlobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}

.sh-cta-band-blue .sh-cta-eyebrow { color: #2563eb; }
.sh-cta-band-blue .sh-cta-title   { color: #0f172a; }
.sh-cta-band-blue .sh-cta-desc    { color: #475569; }

.sh-cta-band-blue .sh-cta-btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37,99,235,0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.sh-cta-band-blue .sh-cta-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.45);
}

.sh-cta-band-blue .sh-cta-btn-ghost {
  border-color: #cbd5e1;
  color: #475569;
}
.sh-cta-band-blue .sh-cta-btn-ghost:hover { border-color: #94a3b8; color: #1e293b; }

/* Steps — white bg version */
.sh-cta-band-blue .sh-step {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: stepSlideIn 0.5s ease both;
}
.sh-cta-band-blue .sh-step:nth-child(1) { animation-delay: 0.05s; }
.sh-cta-band-blue .sh-step:nth-child(2) { animation-delay: 0.15s; }
.sh-cta-band-blue .sh-step:nth-child(3) { animation-delay: 0.25s; }
@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.sh-cta-band-blue .sh-step:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.sh-cta-band-blue .sh-step:last-child { margin-bottom: 0; }

.sh-cta-band-blue .sh-step-num {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
  font-weight: 800;
}
.sh-cta-band-blue .sh-step strong { color: #0f172a; }
.sh-cta-band-blue .sh-step p      { color: #64748b; }

/* FREE badge on step 1 */
.sh-step-free-badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  border: 1px solid #bbf7d0;
  animation: freePulse 2.5s ease-in-out infinite;
}
@keyframes freePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.0); }
  50%       { box-shadow: 0 0 0 4px rgba(22,163,74,0.15); }
}
