/* Depop-style marketplace shell — matte black chrome, scarlet CTAs, emerald for trust badges only */

:root {
  --depop-action: #ff2300;
  --depop-action-hover: #e01f00;
  --depop-ink: #ffffff;
  --depop-muted: #a1a1aa;
  --depop-surface: #000000;
  --depop-elevated: #09090b;
  --depop-accent: #09090b;
  --depop-border: #27272a;
  --depop-escrow: #34d399;
  --depop-on-action: #ffffff;
  /* Legacy aliases */
  --depop-red: var(--depop-action);
  --depop-black: var(--depop-surface);
  --depop-dark-bg: var(--depop-surface);
  --depop-card-dark: var(--depop-elevated);
  --depop-border-dark: var(--depop-border);
  --depop-gray-text: var(--depop-muted);
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 767px) {
  html {
    font-size: clamp(15px, 3.8vw, 17px);
  }
}

body.has-depop-shell {
  background: var(--depop-surface);
  color: var(--depop-ink);
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
}

@media (min-width: 768px) {
  body.has-depop-shell {
    padding-bottom: 0;
  }
}

/* Hide legacy chrome (keep browse drawer + educational sections visible) */
body.has-depop-shell .shop-mobile-bar,
body.has-depop-shell .depop-wa-float,
body.has-depop-shell #ai-nudge,
body.has-depop-shell .depop-legacy-header,
body.has-depop-shell .depop-marketing-extra {
  display: none !important;
}

/* ── Header ── */
.depop-shell-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.95);
  color: var(--depop-ink);
  border-bottom: 1px solid #18181b;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.depop-top-banner {
  display: none;
}

.depop-main-bar {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depop-logo {
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--depop-ink);
  text-decoration: none;
  flex-shrink: 0;
  text-transform: uppercase;
}

.depop-logo span,
.depop-logo .depop-logo-dot {
  font-weight: 900;
  opacity: 1;
  font-size: 1em;
  margin-left: 0;
  color: var(--depop-action);
}

.depop-logo .depop-logo-mall {
  display: none;
}

@media (min-width: 768px) {
  .depop-logo {
    font-size: 1.35rem;
  }
}

.depop-search-wrap {
  flex: 1;
  min-width: 0;
  max-width: 28rem;
  margin: 0 auto;
}

.depop-search-wrap form {
  position: relative;
}

.depop-search-wrap input {
  width: 100%;
  background: #18181b;
  border: 1px solid #27272a;
  color: var(--depop-ink);
  border-radius: var(--radius-pill, 9999px);
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  font-size: 0.875rem;
  outline: none;
  font-family: inherit;
}

.depop-search-wrap input:focus {
  border-color: #52525b;
  box-shadow: 0 0 0 2px rgba(255, 35, 0, 0.25);
}

.depop-search-wrap input::placeholder {
  color: var(--depop-muted);
}

.depop-search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  pointer-events: none;
  opacity: 0.7;
}

.depop-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.depop-btn-sell {
  background: var(--depop-action);
  color: var(--depop-on-action);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill, 9999px);
  text-decoration: none;
  white-space: nowrap;
  align-items: center;
}

.depop-btn-sell:hover {
  background: var(--depop-action-hover);
}

@media (min-width: 768px) {
  .depop-btn-sell {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.depop-icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--depop-ink);
  font-size: 1.125rem;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius-pill, 9999px);
}

.depop-icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.depop-icon-btn:focus-visible,
.depop-btn-sell:focus-visible,
.depop-cat-strip button:focus-visible,
.depop-collection-card:focus-visible,
.depop-bottom-nav__item:focus-visible,
.depop-hero-cta:focus-visible,
.depop-hero-dot:focus-visible {
  outline: 2px solid var(--depop-action);
  outline-offset: 2px;
}

.depop-cart-btn {
  position: relative;
  gap: 0.3rem;
  min-width: 2.75rem;
  padding-inline: 0.45rem;
}

.depop-cart-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  color: #fff;
  filter: invert(1);
}

.depop-cart-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

@media (max-width: 379px) {
  .depop-cart-label {
    display: none;
  }
}

.depop-bag-count {
  position: absolute;
  top: 0.15rem;
  right: 0.1rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  border-radius: 9999px;
  background: var(--depop-action);
  color: var(--depop-on-action);
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depop-bag-count.hidden {
  display: none;
}

.depop-cat-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.65rem 1rem 0.75rem;
  border-top: 1px solid var(--depop-border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--depop-muted);
  -webkit-overflow-scrolling: touch;
}

.depop-cat-strip::-webkit-scrollbar {
  display: none;
}

.depop-cat-strip a,
.depop-cat-strip button {
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0.25rem 0;
  min-height: 44px;
}

.depop-cat-strip a:hover,
.depop-cat-strip button:hover,
.depop-cat-strip .is-active {
  color: var(--depop-ink);
}

.depop-cat-strip .tag-new {
  color: var(--depop-escrow);
}

.depop-cat-strip .tag-thrift {
  color: var(--depop-escrow);
}

.depop-cat-strip .tag-sale {
  color: var(--depop-action);
}

/* Mobile search row (toggle) */
.depop-mobile-search-row {
  display: none;
  padding: 0 1rem 0.75rem;
}

.depop-mobile-search-row.is-open {
  display: block;
}

@media (min-width: 640px) {
  .depop-mobile-search-row {
    display: none !important;
  }
}

/* ── Brand hero carousel (matte black, no lockup graphic) ── */
/* When nested in .sokoni-hero-zone, border/height are controlled by the zone grid */
.depop-hero-carousel {
  position: relative;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  min-height: clamp(20rem, 48vh, 26rem);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #18181b;
  width: 100%;
}

.depop-hero-bleed {
  position: absolute;
  inset: 0;
  background: #09090b;
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease;
  overflow: hidden;
}

.depop-hero-bleed-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.depop-hero-bleed-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.72) 42%, rgba(9, 9, 11, 0.35) 72%, rgba(9, 9, 11, 0.55) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.2) 0%, rgba(9, 9, 11, 0.55) 100%);
  pointer-events: none;
}

.depop-hero-bleed--buyers .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 70% 80% at 90% 30%, rgba(16, 185, 129, 0.22), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.94) 0%, rgba(9, 9, 11, 0.7) 45%, rgba(9, 9, 11, 0.32) 100%),
    linear-gradient(180deg, transparent 40%, rgba(9, 9, 11, 0.55) 100%);
}

.depop-hero-bleed--sellers .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 60% 70% at 85% 40%, rgba(255, 35, 0, 0.16), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.94) 0%, rgba(9, 9, 11, 0.72) 48%, rgba(9, 9, 11, 0.4) 100%);
}

.depop-hero-bleed--escrow .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 65% 75% at 80% 35%, rgba(52, 211, 153, 0.18), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.94) 0%, rgba(9, 9, 11, 0.7) 45%, rgba(9, 9, 11, 0.38) 100%);
}

.depop-hero-bleed--circular .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 70% 70% at 88% 40%, rgba(16, 185, 129, 0.16), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.93) 0%, rgba(9, 9, 11, 0.68) 46%, rgba(9, 9, 11, 0.34) 100%);
}

.depop-hero-bleed--offers .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 55% 65% at 82% 30%, rgba(255, 35, 0, 0.14), transparent 50%),
    linear-gradient(90deg, rgba(24, 24, 27, 0.94) 0%, rgba(9, 9, 11, 0.7) 48%, rgba(9, 9, 11, 0.4) 100%);
}

.depop-hero-bleed--pickup .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 60% 70% at 85% 45%, rgba(52, 211, 153, 0.14), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.93) 0%, rgba(9, 9, 11, 0.7) 46%, rgba(9, 9, 11, 0.36) 100%);
}

.depop-hero-bleed--mashinani .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 65% 75% at 82% 40%, rgba(34, 197, 94, 0.2), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.93) 0%, rgba(9, 9, 11, 0.68) 46%, rgba(9, 9, 11, 0.34) 100%),
    linear-gradient(180deg, transparent 45%, rgba(9, 9, 11, 0.5) 100%);
}

.depop-hero-bleed--artisans .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 60% 70% at 80% 35%, rgba(245, 158, 11, 0.16), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.94) 0%, rgba(9, 9, 11, 0.7) 48%, rgba(9, 9, 11, 0.38) 100%);
}

.depop-hero-bleed--courier .depop-hero-bleed-veil {
  background:
    radial-gradient(ellipse 70% 70% at 85% 45%, rgba(251, 146, 60, 0.18), transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.93) 0%, rgba(9, 9, 11, 0.7) 45%, rgba(9, 9, 11, 0.36) 100%);
}

.depop-hero-carousel-inner,
.depop-hero-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  padding: 1.75rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: inherit;
}

@media (min-width: 768px) {
  .depop-hero-brand-inner {
    padding: 2.5rem 1.5rem 2.75rem;
  }
}

.depop-hero-brand-copy {
  max-width: 40rem;
}

.depop-hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
}

.depop-hero-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--depop-escrow);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 9999px;
  padding: 0.3rem 0.7rem;
}

.depop-hero-badge {
  font-size: 0.75rem;
  color: var(--depop-muted);
}

.depop-hero-brand-mark {
  display: none;
}

.depop-hero-carousel .depop-hero-title {
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(1.65rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: #ffffff;
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease;
}

.depop-hero-carousel .depop-hero-sub {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #a1a1aa;
  max-width: 34rem;
  margin: 0;
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease;
}

.depop-hero-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(39, 39, 42, 0.75);
}

@media (min-width: 640px) {
  .depop-hero-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.depop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  opacity: 1;
  transform: none;
}

.depop-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill, 9999px);
  text-decoration: none;
  min-height: 44px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.depop-hero-cta--primary {
  background: var(--depop-action);
  color: var(--depop-on-action);
}

.depop-hero-cta--primary:hover {
  background: var(--depop-action-hover);
}

.depop-hero-cta--ghost {
  background: #18181b;
  border: 1px solid #27272a;
  color: #ffffff;
}

.depop-hero-cta--ghost:hover {
  background: #27272a;
}

.depop-hero-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.depop-hero-dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: #27272a;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
  min-width: 0.5rem;
  min-height: 0.5rem;
}

.depop-hero-dot.is-active {
  width: 1.75rem;
  background: var(--depop-escrow);
}

.depop-hero-dot:hover {
  background: #52525b;
}

.depop-hero-brand-visual,
.depop-hero-brand-lockup {
  display: none !important;
}

.depop-hero-carousel.is-reduced-motion .depop-hero-title,
.depop-hero-carousel.is-reduced-motion .depop-hero-sub,
.depop-hero-carousel.is-reduced-motion .depop-hero-bleed {
  transition: none;
}

/* Keep unused legacy slide helpers inert */
.depop-hero-slide-wrap,
.depop-hero-slide,
.depop-hero-eyebrow {
  display: none;
}

/* ── Below-hero ecosystem strips ── */
.depop-brands-bar {
  border-top: 1px solid #18181b;
  border-bottom: 1px solid #18181b;
  background: rgba(9, 9, 11, 0.85);
  padding: 1rem 1rem 1.15rem;
}

.depop-brands-kicker {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717a;
}

.depop-brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.depop-promo-section .depop-brands-row {
  margin-bottom: 1.5rem;
}

.depop-promo-section.depop-brands-bar {
  padding-bottom: 1.75rem;
}

.depop-promo-panel.depop-product-showcase {
  border: 1px solid #18181b;
  border-radius: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 0.85rem 1rem;
  background: #09090b;
  /* Override side-by-side product showcase grid — posters need full width */
  display: block;
}

@media (min-width: 768px) {
  .depop-promo-panel.depop-product-showcase {
    padding: 1rem 1rem 1.15rem;
  }
}

/* Full poster frame — 16:9, never crops typography at the edges */
.depop-promo-poster-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #09090b;
}

.depop-promo-visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  max-width: none;
  background: #09090b;
  border-radius: 0;
  overflow: hidden;
}

.depop-promo-visual .depop-promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* show 100% of poster — no edge clipping */
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.depop-promo-img.is-active {
  opacity: 1;
  z-index: 1;
}

.depop-promo-footer {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .depop-promo-footer {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.depop-promo-copy {
  text-align: left;
  min-width: 0;
  flex: 1;
}

.depop-promo-copy .depop-edu-title {
  color: #fff;
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  margin: 0.25rem 0 0.4rem;
}

.depop-promo-copy p {
  margin: 0;
  max-width: 40rem;
}

.depop-promo-actions {
  flex-shrink: 0;
}

.depop-promo-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.depop-promo-dot {
  width: 0.625rem;
  height: 0.625rem;
  border: 0;
  padding: 0;
  border-radius: 9999px;
  background: #3f3f46;
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease, border-radius 0.25s ease;
}

.depop-promo-dot.is-active {
  width: 1.5rem;
  border-radius: 0.625rem;
  background: #ff2300;
}

.depop-promo-dot:focus-visible {
  outline: 2px solid rgba(255, 35, 0, 0.55);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .depop-promo-img {
    transition: none;
  }
}

.depop-brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid #27272a;
  background: #18181b;
  color: #d4d4d8;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.depop-brand-chip:hover,
.depop-brand-chip:focus-visible {
  border-color: #52525b;
  color: #ffffff;
  background: #27272a;
  outline: none;
}

.depop-brand-chip:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 35, 0, 0.35);
}

.depop-top-shops {
  background: #000000;
  color: #ffffff;
  border-bottom: 1px solid #18181b;
  padding: 2rem 1rem;
}

.depop-top-shops-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.depop-top-shops-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.depop-top-shops-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.depop-top-shops-head p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #a1a1aa;
}

.depop-top-shops-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff2300;
  text-decoration: none;
}

.depop-top-shops-link:hover {
  text-decoration: underline;
}

.depop-top-shops-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .depop-top-shops-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.depop-shop-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #27272a;
  background: #09090b;
}

.depop-shop-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  border: 1px solid #27272a;
  background: #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.depop-shop-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depop-shop-meta {
  flex: 1;
  min-width: 0;
}

.depop-shop-meta h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.depop-shop-meta p {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.depop-shop-meta span {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  color: #71717a;
}

.depop-shop-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: #ffffff;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.depop-shop-cta:hover {
  background: #e4e4e7;
}

.depop-top-shops-empty {
  border: 1px dashed #27272a;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  color: #a1a1aa;
  font-size: 0.875rem;
}

.depop-top-shops-empty a {
  color: #ff2300;
  font-weight: 700;
  text-decoration: none;
}

.depop-product-showcase {
  background: #09090b;
  border-bottom: 1px solid #18181b;
  padding: 2.25rem 1rem 2.5rem;
}

.depop-product-showcase-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .depop-product-showcase-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
  }
}

.depop-product-showcase-visual {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1 / 1;
  max-width: 28rem;
}

.depop-product-showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depop-product-showcase-copy .depop-edu-title {
  color: #fff;
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.35rem 0 0.65rem;
}

.depop-product-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.depop-how-strip {
  background: #000000;
  border-bottom: 1px solid #18181b;
  padding: 2.75rem 1rem 3rem;
}

.depop-trust-banner {
  background: #09090b;
  border-bottom: 1px solid #18181b;
  padding: 2.75rem 0 3rem;
  color: #ffffff;
}

.depop-trust-banner-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.depop-trust-banner .depop-edu-title {
  color: #ffffff;
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.35rem 0 0.5rem;
}

.depop-trust-banner-visual {
  margin: 1.35rem auto 0;
  max-width: 1100px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #09090b;
  aspect-ratio: 16 / 9;
}

.depop-trust-banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.depop-trust-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.depop-trust-stack {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.depop-trust-card {
  display: grid;
  gap: 1rem;
}

.depop-trust-card-copy h3 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.depop-trust-card-copy p {
  color: #a1a1aa;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  max-width: 40rem;
}

/* Trade across Kenya — Mashinani / Artisans boards + courier */
.depop-trade-across {
  background: #000000;
  border-bottom: 1px solid #18181b;
  padding: 2.75rem 0 3.25rem;
  color: #ffffff;
}

.depop-trade-across-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.depop-trade-across .depop-edu-title {
  color: #ffffff;
  font-family: var(--font-display, Fraunces, Georgia, "Times New Roman", serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  margin: 0.35rem 0 0.5rem;
}

.depop-trade-board {
  margin-top: 2.25rem;
}

.depop-trade-board + .depop-trade-board {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid #18181b;
}

.depop-trade-banner {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #09090b;
  aspect-ratio: 16 / 9;
}

.depop-trade-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.depop-trade-board-title {
  color: #ffffff;
  font-family: var(--font-display, Fraunces, Georgia, "Times New Roman", serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.2;
  margin: 1.15rem 0 0.4rem;
}

.depop-trade-board-sub {
  color: #a1a1aa;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 48rem;
}

.depop-trade-cat-heading {
  color: #ffffff;
  font-family: var(--font-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1rem;
  margin: 0 0 0.85rem;
}

.depop-trade-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .depop-trade-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

/*
 * Faux glass subcategory tiles — translucent fill + inset highlight.
 * No backdrop-filter (heavy on mid-range Android grids).
 */
.depop-trade-cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  border-radius: 1.15rem;
  -webkit-tap-highlight-color: transparent;
}

.depop-trade-cat-card:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
  border-radius: 1.15rem;
}

.depop-trade-cat-card-glass {
  display: grid;
  gap: 0.55rem;
  padding: 0.5rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.28);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.depop-trade-cat-card:hover .depop-trade-cat-card-glass,
.depop-trade-cat-card:focus-visible .depop-trade-cat-card-glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.34);
}

.depop-trade-cat-card-media {
  display: block;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #09090b;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.depop-trade-cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .depop-trade-cat-card:hover .depop-trade-cat-card-media img {
    transform: scale(1.04);
  }
}

.depop-trade-cat-card-label {
  display: block;
  color: #ffffff;
  font-family: var(--font-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding: 0.4rem 0.55rem;
  border-radius: 0.65rem;
  background: rgba(9, 9, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .depop-trade-cat-card-glass,
  .depop-trade-cat-card-media img {
    transition: none;
  }
}

.depop-trade-across-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.depop-empty-search-art {
  width: min(16rem, 70vw);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 1.25rem;
  background: #09090b;
  display: block;
}

.depop-how-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .depop-how-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    gap: 1.75rem;
    align-items: start;
  }
}

.depop-how-visual {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #09090b;
  aspect-ratio: 4 / 3;
}

.depop-how-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depop-how-strip .depop-edu-title {
  color: #ffffff;
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.35rem;
}

.depop-how-strip .depop-edu-kicker {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff2300;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  margin-bottom: 0.5rem;
}

.depop-how-strip .depop-edu-grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .depop-how-strip .depop-edu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .depop-how-strip .depop-how-layout .depop-edu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.depop-how-strip .depop-edu-card {
  border: 1px solid #18181b;
  border-radius: 1rem;
  background: #09090b;
  color: #ffffff;
  padding: 1.15rem 1rem;
  min-height: 100%;
}

.depop-how-strip .depop-edu-card h3 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.65rem 0 0.35rem;
}

.depop-how-strip .depop-edu-card p {
  color: #a1a1aa;
  opacity: 1;
  font-size: 0.8125rem;
  line-height: 1.45;
  margin: 0;
}

.depop-how-strip .depop-edu-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: #ff2300;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
}

/* ── Curated collections ── */
.depop-collections {
  background: var(--depop-surface);
  padding: 1rem 1rem 0.5rem;
}

.depop-collections-heading {
  font-family: var(--font-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--depop-muted);
  margin: 0 0 0.75rem;
}

.depop-collections-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.depop-collections-row::-webkit-scrollbar {
  display: none;
}

.depop-collection-card {
  flex-shrink: 0;
  min-width: 9rem;
  min-height: 44px;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md, 0.75rem);
  border: 1px solid var(--depop-border);
  background: var(--depop-elevated);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--depop-ink);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  box-shadow: var(--shadow-card, 0 1px 3px rgba(27, 16, 53, 0.06));
}

.depop-collection-card.is-active {
  border-color: var(--depop-action);
  box-shadow: 0 0 0 2px rgba(255, 35, 0, 0.28);
}

/* ── Educational sections ── */
.depop-edu-section {
  padding: 2.5rem 1rem;
}

.depop-edu-section--dark {
  background: var(--depop-accent);
  color: var(--color-on-secondary, #fff8f0);
}

.depop-edu-section--light {
  background: var(--depop-surface);
  color: var(--depop-ink);
}

.depop-edu-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.depop-edu-title {
  font-family: var(--font-display, Fraunces, Georgia, serif);
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: inherit;
  margin: 0 0 1.25rem;
}

.depop-edu-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .depop-edu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.depop-edu-card {
  border-radius: var(--radius-lg, 1rem);
  padding: 1.25rem;
  border: 1px solid rgba(255, 248, 240, 0.15);
  background: rgba(255, 248, 240, 0.08);
}

.depop-edu-section--light .depop-edu-card {
  border-color: var(--depop-border);
  background: var(--depop-elevated);
}

.depop-edu-card h3 {
  font-family: var(--font-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.depop-edu-card p {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}

.depop-edu-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm, 0.5rem);
  background: var(--depop-action);
  color: var(--depop-on-action);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

/* ── Hero banner (legacy fallback) ── */
.depop-hero-banner {
  background: #000000;
  padding: 1.25rem 1rem 1.5rem;
}

@media (min-width: 768px) {
  .depop-hero-banner {
    padding: 2rem 1.25rem 2.5rem;
  }
}

.depop-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  border-radius: var(--radius-lg, 1rem);
  border: 1px solid rgba(255, 248, 240, 0.12);
  background: rgba(0, 0, 0, 0.2);
  padding: 1.25rem 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .depop-hero-inner {
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }
}

.depop-hero-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--depop-action);
  margin-bottom: 0.5rem;
}

.depop-hero-title {
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(1.375rem, 4.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.depop-hero-sub {
  font-size: 0.875rem;
  color: rgba(255, 248, 240, 0.85);
  line-height: 1.5;
  max-width: 32rem;
  margin-bottom: 1rem;
}

.depop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.depop-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill, 9999px);
  text-decoration: none;
  min-height: 44px;
}

.depop-hero-cta--primary {
  background: var(--depop-action);
  color: var(--depop-on-action);
}

.depop-hero-cta--ghost {
  border: 1px solid #27272a;
  color: #ffffff;
  background: #18181b;
}

/* ── Main content area ── */
.depop-main-content {
  background: var(--depop-surface);
  color: var(--depop-ink);
  min-height: 50vh;
}

.depop-section-heading {
  font-family: var(--font-body, "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--depop-ink);
}

body.has-depop-shell #deals.bg-depop-darkBg,
body.has-depop-shell .bg-depop-darkBg {
  background: var(--depop-surface) !important;
}

body.has-depop-shell #deals .text-zinc-400 {
  color: var(--depop-muted) !important;
}

/*
 * Product cards / deals copy sit on matte black always.
 * Light-theme purple ink (#1B1035) is invisible here — force light type
 * whether or not html.dark is set (users often stay on "light" theme).
 */
body.has-depop-shell .depop-card-price {
  color: #ffffff !important;
}

body.has-depop-shell .depop-card-title {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.has-depop-shell .depop-card-seller,
body.has-depop-shell .depop-card-seller a {
  color: rgba(255, 255, 255, 0.55) !important;
}

body.has-depop-shell .depop-card-seller a:hover {
  color: #25d366 !important;
}

body.has-depop-shell .depop-card-shipping {
  color: rgba(255, 255, 255, 0.5) !important;
}

body.has-depop-shell .seller-trust-badge {
  color: #ffffff !important;
  background: rgba(37, 211, 102, 0.28) !important;
}

body.has-depop-shell .seller-trust-badge--fast_dispatcher,
body.has-depop-shell .seller-trust-badge--top_rated,
body.has-depop-shell .seller-trust-badge--top_seller {
  background: rgba(255, 255, 255, 0.12) !important;
}

body.has-depop-shell .seller-trust-badge--sales {
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Deals empty / status helpers that still use brand-purple utilities */
body.has-depop-shell #deals .text-brand-purple {
  color: #ffffff !important;
}

body.has-depop-shell #deals .text-brand-purple\/70 {
  color: rgba(255, 255, 255, 0.72) !important;
}

body.has-depop-shell #deals .text-brand-purple\/60,
body.has-depop-shell #deals .text-brand-purple\/50 {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* Keep dark text on green CTA pills */
body.has-depop-shell #deals .bg-brand-green.text-brand-purple {
  color: #1b1035 !important;
}

/* ── Bottom nav (mobile) ── */
.depop-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 75;
  background: var(--depop-elevated);
  border-top: 1px solid var(--depop-border);
  padding: 0.5rem 0.375rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
}

.depop-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 32rem;
  margin: 0 auto;
}

.depop-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 3.25rem;
  min-height: 44px;
  padding: 0.25rem 0.25rem;
  text-decoration: none;
  color: var(--depop-muted);
  font-weight: 500;
  transition: color 0.15s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.depop-bottom-nav__item:hover {
  color: var(--depop-ink);
}

.depop-bottom-nav__item.is-active {
  color: var(--depop-ink);
  font-weight: 700;
}

.depop-bottom-nav__item--sell {
  color: var(--depop-on-action);
  font-weight: 700;
  background: var(--depop-action);
  border-radius: var(--radius-pill, 9999px);
  padding: 0.35rem 0.65rem;
  min-width: 3.5rem;
}

.depop-bottom-nav__item--sell:hover,
.depop-bottom-nav__item--sell.is-active {
  opacity: 0.95;
  color: var(--depop-on-action);
  background: var(--depop-action-hover);
}

.depop-bottom-nav__icon {
  font-size: 1.125rem;
  line-height: 1;
}

.depop-bottom-nav__label {
  font-size: 0.6875rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Legacy selectors (fallback) */
.depop-bottom-nav a:not(.depop-bottom-nav__item) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--depop-muted);
  text-decoration: none;
  min-width: 3rem;
  padding: 0.25rem;
}

.depop-bottom-nav a.is-active,
.depop-bottom-nav a.depop-nav-sell {
  color: var(--depop-action);
}

.depop-bottom-nav span:first-child {
  font-size: 1.125rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .depop-bottom-nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depop-hero-cta,
  .depop-icon-btn,
  .depop-hero-bleed,
  .depop-hero-brand-mark,
  .depop-hero-title,
  .depop-hero-sub,
  .depop-hero-actions,
  .depop-hero-brand-visual {
    transition: none;
    animation: none;
  }
}
