/* ============================================================
   Curators directory (sellers.php)
   ============================================================ */

.sellers-hero {
  background:
    radial-gradient(ellipse 55% 70% at 80% 10%, rgba(240, 103, 36, 0.1) 0, transparent 65%),
    radial-gradient(ellipse 40% 55% at 5% 90%, rgba(218, 161, 91, 0.1) 0, transparent 60%),
    var(--cream);
  padding: 56px 0 40px;
  text-align: center;
}
.sellers-eyebrow {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sellers-title {
  font-family: var(--font-editorial);
  font-size: clamp(34px, 5.5vw, 54px);
  color: var(--ink);
  margin: 10px 0 12px;
  line-height: 1.05;
}
.sellers-title em { color: var(--maroon); font-style: italic; }
.sellers-sub {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.sellers-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
}
.sellers-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink);
}
.sellers-stat span {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Toolbar */
.sellers-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid rgba(123, 51, 49, 0.1);
  padding: 14px 0;
}
.sellers-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sellers-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.sellers-pill {
  border: 1.5px solid rgba(123, 51, 49, 0.18);
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.sellers-pill:hover { border-color: var(--orange); color: var(--orange); }
.sellers-pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.sellers-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.sellers-search-wrap svg {
  position: absolute;
  left: 13px;
  color: rgba(26, 17, 16, 0.35);
  pointer-events: none;
}
.sellers-search {
  border: 1.5px solid rgba(123, 51, 49, 0.18);
  border-radius: 999px;
  padding: 9px 16px 9px 38px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  width: 230px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sellers-search:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240, 103, 36, 0.12); }

/* Grid */
.sellers-list { padding: 36px 0 60px; }
.sellers-grid { margin-top: 0; }
.sellers-empty {
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 48px 0;
}
.curator-level-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 5px 10px;
}
.curator-verified-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  vertical-align: 2px;
  margin-left: 2px;
}

/* CTA band */
.sellers-cta {
  background: var(--ink);
  padding: 48px 0;
}
.sellers-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.sellers-cta h2 {
  font-family: var(--font-editorial);
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 8px;
}
.sellers-cta h2 em { color: var(--orange); font-style: italic; }
.sellers-cta p { color: rgba(253, 243, 227, 0.65); font-size: 14px; max-width: 520px; line-height: 1.65; }

@media (max-width: 640px) {
  .sellers-toolbar-inner { flex-direction: column; align-items: stretch; }
  .sellers-search { width: 100%; }
}
