:root {
  --ink: #111111;
  --paper: #fffaf0;
  --white: #ffffff;
  --cream: #fff4cb;
  --pink: #ff5fa2;
  --pink-soft: #ffd1e5;
  --blue: #bde7ff;
  --green: #caffbf;
  --lavender: #dcd1ff;
  --acid: #e9ff66;
  --muted: #66615d;
  --line: #111111;
  --thin: 1.5px solid var(--line);
  --thick: 2.5px solid var(--line);
  --radius: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(17,17,17,.04) 1px, transparent 1px),
    linear-gradient(rgba(17,17,17,.04) 1px, transparent 1px),
    var(--paper);
  background-size: 22px 22px;
}
body.modal-open { overflow: hidden; }
body, button, input, select { font: inherit; }
button { cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; }
[hidden], .hidden { display: none !important; }

.app-frame {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 14px 14px 104px;
}
.app-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0 14px;
  background: linear-gradient(var(--paper), rgba(255,250,240,.78));
  backdrop-filter: blur(12px);
}
.wordmark, .top-actions, .price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wordmark {
  border: 0;
  background: transparent;
  font-weight: 950;
  font-size: 1.25rem;
  letter-spacing: -.06em;
}
.brand-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: var(--thick);
  border-radius: 50%;
  background: var(--acid);
  flex: 0 0 auto;
}
.brand-dot svg {
  width: 24px;
  height: 24px;
  display: block;
}
.price-badge, .mini-kicker, .tiny-label {
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  font-size: .72rem;
}
.price-badge {
  border: var(--thin);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--green);
}
.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: var(--thick);
  background: var(--pink);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}
.page { display: none; animation: popIn 160ms ease; }
.page.active { display: block; }
@keyframes popIn { from { opacity: .3; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: .86;
  letter-spacing: -.095em;
  margin-bottom: 18px;
}
h2 { font-size: clamp(1.7rem, 4.5vw, 3.2rem); line-height: .95; letter-spacing: -.07em; margin-bottom: 8px; }
h3 { letter-spacing: -.035em; }
.tiny-label { color: var(--pink); margin-bottom: 9px; }

.black-button, .outline-button, .text-link, .rent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: var(--thick);
  font-weight: 950;
  min-height: 44px;
  padding: 11px 16px;
  text-decoration: none;
  box-shadow: none;
}
.black-button, .rent-button {
  background: var(--ink);
  color: var(--white);
}
.outline-button { background: var(--white); color: var(--ink); }
.text-link { background: transparent; border: 0; padding-inline: 0; color: var(--pink); }
.black-button:active, .outline-button:active, .rent-button:active, .icon-button:active { transform: translateY(1px); }

.home-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 18px;
  align-items: stretch;
}
.hero-text {
  border: var(--thick);
  border-radius: 34px;
  padding: clamp(22px, 5vw, 52px);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-subcopy { max-width: 570px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  gap: 10px;
  border: var(--thick);
  border-radius: 34px;
  padding: 10px;
  background: var(--lavender);
  overflow: hidden;
}
.tile {
  width: 100%; height: 100%; object-fit: cover;
  border: var(--thick);
  border-radius: 24px;
  background: var(--cream);
}
.tile.tall { grid-row: 1 / span 2; }
.collage-sticker {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  border: var(--thick);
  background: var(--acid);
  font-weight: 950;
  line-height: 1.05;
  transform: rotate(8deg);
}

.split-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.split-strip > div, .editorial-panel, .palette-lab, .concert-hero, .listing-header, .listing-wizard, .concert-notes > div {
  border: var(--thick);
  border-radius: var(--radius);
  background: var(--white);
}
.split-strip > div { padding: 18px; }
.split-strip strong { display: block; font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -.055em; line-height: .94; margin: 5px 0 8px; }
.split-strip p { color: var(--muted); line-height: 1.45; margin: 0; font-weight: 650; }
.mini-kicker { color: var(--pink); }

.home-section { margin-top: 22px; }
.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.section-title-row.compact { padding: 18px 18px 0; }
.palette-deck {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.palette-deck.horizontal {
  display: flex;
  overflow-x: auto;
  padding: 0 18px 18px;
  scrollbar-width: none;
}
.palette-deck.horizontal::-webkit-scrollbar, .single-color-row::-webkit-scrollbar, .filter-rail::-webkit-scrollbar { display:none; }
.palette-card {
  border: var(--thick);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  box-shadow: none;
}
.palette-deck.horizontal .palette-card { flex: 0 0 230px; }
.palette-card:hover { transform: translateY(-1px); }
.palette-card.active { background: #f5f0ff; border-color: #6d5ee8; outline: 3px solid rgba(109,94,232,.18); }
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  flex: 1;
}
.swatch-grid span {
  min-height: 82px;
  border: 1.5px solid rgba(17,17,17,.16);
  border-radius: 14px;
}
.palette-card strong { font-size: 1rem; letter-spacing: -.03em; }
.palette-card small { color: var(--muted); font-weight: 800; line-height: 1.25; }
.editorial-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: var(--blue);
}
.editorial-panel p { color: #243442; line-height: 1.55; font-weight: 700; max-width: 740px; }

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin: 8px 0 14px;
}
.shop-header h1 { font-size: clamp(2.75rem, 8vw, 6rem); margin-bottom: 0; }
.segmented, .fulfillment-tabs {
  display: inline-flex;
  border: var(--thick);
  border-radius: 999px;
  background: var(--white);
  padding: 4px;
  gap: 4px;
}
.segmented button, .fulfillment-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 10px 13px;
  font-weight: 950;
  white-space: nowrap;
}
.segmented button.active, .fulfillment-tabs button.active { background: var(--ink); color: var(--white); }
.palette-lab { background: var(--pink-soft); overflow: hidden; margin-bottom: 12px; }
.single-color-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 18px 18px;
  scrollbar-width: none;
}
.color-chip {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: var(--thick);
  box-shadow: none;
  position: relative;
}
.color-chip.active::after {
  content: "✓";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: var(--thin);
  font-weight: 950;
}
.filter-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-width: none;
}
.filter-pill {
  flex: 0 0 auto;
  border: var(--thick);
  border-radius: 999px;
  background: var(--white);
  padding: 11px 14px;
  font-weight: 950;
}
.filter-pill.active { background: var(--acid); }
.feed-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 4px 0 12px;
  font-weight: 850;
}
.feed-status p { margin: 0; color: var(--muted); }
.cheap-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: var(--thin);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  font-weight: 950;
  white-space: nowrap;
}
.cheap-toggle input { width: auto; accent-color: var(--pink); }
.pin-grid { columns: 4 210px; column-gap: 10px; }
.pin-card {
  position: relative;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  border: var(--thick);
  border-radius: 24px;
  background: var(--white);
  overflow: hidden;
  box-shadow: none;
}
.pin-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  background: var(--cream);
  border-bottom: var(--thick);
}
.save-button {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: var(--thick);
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 950;
  box-shadow: none;
}
.price-sticker {
  position: absolute;
  top: 11px;
  left: 11px;
  border: var(--thick);
  border-radius: 999px;
  background: var(--acid);
  padding: 7px 10px;
  font-weight: 950;
}
.pin-meta { padding: 10px; }
.pin-meta h3 { margin-bottom: 4px; font-size: .98rem; }
.seller-line { margin: 0 0 8px; color: var(--muted); font-weight: 780; font-size: .82rem; line-height: 1.35; }
.pin-tags { display: flex; gap: 5px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.color-dot { width: 19px; height: 19px; border: var(--thin); border-radius: 50%; }
.shipping-tag, .sweet-tag {
  border: var(--thin);
  border-radius: 999px;
  padding: 2px 7px;
  font-size: .68rem;
  font-weight: 950;
  background: var(--white);
}
.sweet-tag { background: var(--green); }
.rent-button { width: 100%; min-height: 40px; padding: 8px 12px; }
.empty-state { border: var(--thick); background: var(--white); border-radius: var(--radius); padding: 24px; font-weight: 900; }

.concert-hero, .listing-header { padding: 24px; margin-bottom: 12px; background: var(--white); }
.concert-hero p, .listing-header p { max-width: 760px; color: var(--muted); line-height: 1.55; font-weight: 750; }
.concert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.concert-card {
  border: var(--thick);
  border-radius: var(--radius);
  min-height: 280px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  overflow: hidden;
}
.concert-card h2 { font-size: 2rem; }
.concert-card p { color: var(--muted); line-height: 1.45; font-weight: 700; }
.concert-card .swatch-grid span { min-height: 42px; }
.concert-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.note-block { padding: 22px; }
.note-block.hot { background: var(--acid); }
ul { margin: 10px 0 0; padding-left: 20px; line-height: 1.75; font-weight: 750; }

.listing-wizard { padding: 14px; }
.step-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 14px; }
.step-tabs span {
  border: var(--thick);
  border-radius: 999px;
  padding: 10px;
  text-align: center;
  font-weight: 950;
  background: var(--white);
}
.step-tabs span.active { background: var(--acid); }
.wizard-step { display: none; gap: 13px; }
.wizard-step.active { display: grid; }
.form-hint { border: var(--thin); border-radius: var(--radius-sm); padding: 12px; background: var(--green); font-weight: 850; }
label { display: grid; gap: 7px; font-weight: 950; }
input, select {
  width: 100%;
  border: var(--thick);
  border-radius: 16px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  box-shadow: none;
}
input:focus, select:focus { background: var(--cream); }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.upload-zone {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: var(--thick);
  border-radius: var(--radius);
  background: var(--pink-soft);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.upload-zone input { display: none; }
.upload-zone span { font-size: 1.35rem; max-width: 260px; }
.upload-zone img { width: 100%; height: 330px; object-fit: cover; }
.checkbox-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: var(--thick);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 11px;
  font-weight: 950;
}
.checkbox-pill input { width: auto; }
.check-row { display: flex; align-items: center; gap: 10px; border: var(--thick); border-radius: 999px; padding: 12px 14px; background: var(--blue); }
.check-row input { width: auto; }
.wizard-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 12px; }
.full-width { width: 100%; }

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 40;
  width: min(560px, calc(100% - 20px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 5px;
  border: var(--thick);
  border-radius: 24px;
  background: var(--white);
  box-shadow: none;
}
.bottom-nav button {
  border: 0;
  border-radius: 18px;
  background: transparent;
  padding: 8px 4px;
  font-size: .74rem;
  font-weight: 950;
}
.bottom-nav button span { display: block; font-size: 1.1rem; line-height: 1; }
.bottom-nav button.active { background: var(--ink); color: var(--white); }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: end center;
  padding: 12px;
  background: rgba(17,17,17,.62);
}
.checkout-sheet {
  position: relative;
  width: min(980px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: var(--thick);
  border-radius: 30px;
  background: var(--paper);
  padding: 14px;
  box-shadow: none;
}
.close-button {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: var(--thick);
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
}
.checkout-title-row { padding: 0 6px 12px; }
.checkout-title-row h2 { font-size: clamp(2.1rem, 6vw, 4rem); margin-bottom: 5px; }
.checkout-title-row p { color: var(--muted); font-weight: 800; }
.checkout-body { display: grid; grid-template-columns: 1fr .9fr; gap: 10px; }
.checkout-form-panel, .summary-panel {
  border: var(--thick);
  border-radius: 24px;
  background: var(--white);
  padding: 16px;
}
.checkout-form-panel { display: grid; gap: 12px; }
.mock-card-form { display: grid; gap: 10px; }
.summary-line, .summary-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: var(--thin);
  font-weight: 850;
}
.deposit-line span { color: var(--pink); }
.summary-total { border-bottom: 0; align-items: center; }
.summary-total strong { font-size: 1.8rem; }
.deposit-note { border: var(--thin); border-radius: 16px; padding: 12px; background: var(--green); line-height: 1.45; font-weight: 850; }
.success-message { text-align: center; color: #097536; font-weight: 950; }

@media (max-width: 860px) {
  .app-frame { padding: 10px 10px 100px; }
  .home-hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-text { min-height: 440px; border-radius: 28px; }
  .hero-collage { min-height: 430px; border-radius: 28px; }
  .split-strip, .concert-grid, .concert-notes, .checkout-body { grid-template-columns: 1fr; }
  .palette-deck { grid-template-columns: repeat(2, 1fr); }
  .shop-header { align-items: flex-start; flex-direction: column; }
  .pin-grid { columns: 2 155px; }
  .pin-card img { min-height: 210px; }
  .price-badge { display: none; }
}
@media (max-width: 540px) {
  .app-topbar { padding-top: 6px; }
  .hero-text { min-height: 430px; padding: 22px; }
  .hero-collage { min-height: 350px; }
  h1 { font-size: clamp(3.4rem, 16vw, 4.65rem); }
  .palette-deck { grid-template-columns: 1fr; }
  .palette-card { min-height: 134px; }
  .swatch-grid span { min-height: 58px; }
  .editorial-panel { flex-direction: column; align-items: flex-start; }
  .segmented, .fulfillment-tabs { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .segmented button, .fulfillment-tabs button { white-space: normal; }
  .feed-status { align-items: flex-start; flex-direction: column; }
  .pin-grid { column-gap: 8px; }
  .pin-card { border-radius: 20px; margin-bottom: 8px; }
  .pin-card img { min-height: 178px; }
  .pin-meta h3 { font-size: .88rem; }
  .seller-line, .shipping-tag, .sweet-tag { font-size: .68rem; }
  .rent-button { min-height: 36px; }
  .two-col { grid-template-columns: 1fr; }
  .wizard-actions { display: grid; grid-template-columns: 1fr 1fr; }
}


.shop-subcopy {
  margin: 6px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
}
.search-panel {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: var(--thick);
  border-radius: 999px;
  background: var(--white);
  padding: 0 16px;
}
.search-icon {
  font-size: 1.2rem;
  font-weight: 900;
}
.search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  min-height: 52px;
  font-size: 1rem;
}
.search-helper-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.search-helper-label {
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--muted);
}
.search-suggestion {
  min-height: 34px;
  border: var(--thin);
  border-radius: 999px;
  background: var(--paper);
  padding: 6px 12px;
  font-weight: 800;
}
.filter-pill {
  display: grid;
  gap: 2px;
  text-align: left;
}
.filter-pill strong { font-size: .92rem; line-height: 1.05; }
.filter-pill small { color: var(--muted); font-size: .72rem; }
.concert-card .concert-topline {
  display: inline-block;
  margin: 8px 0 0;
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--pink);
}
@media (max-width: 760px) {
  .search-panel { margin-top: 12px; }
  .search-input-wrap { min-height: 54px; }
  .search-helper-row { gap: 6px; }
}

.version-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: var(--thin);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--lavender);
  font-size: .7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media (max-width: 620px) {
  .version-badge { display: none; }
}

.bundle-line {
  margin: 7px 0 10px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.25;
  font-weight: 750;
}
.pin-card .rent-button { width: 100%; }

.salt-logo svg { transform: rotate(-8deg); }
.bundle-line { margin: 6px 0 8px; color: var(--muted); font-size: .83rem; line-height: 1.25; font-weight: 750; }
.version-badge { display: none; }


/* Final checkout protection policy */
.policy-card {
  border: var(--thick);
  border-radius: var(--radius-sm);
  background: #fffaf0;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.policy-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.policy-heading-row strong {
  font-size: 1rem;
  letter-spacing: -.02em;
}
.policy-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}
.fee-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fee-preview span {
  border: var(--thin);
  border-radius: 999px;
  background: var(--white);
  padding: 6px 9px;
  font-size: .78rem;
  font-weight: 900;
}
.policy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: var(--thin);
  border-radius: var(--radius-sm);
  background: var(--green);
  padding: 10px;
  font-weight: 850;
  line-height: 1.32;
}
.policy-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: #111111;
}
.black-button:disabled, .rent-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.palette-card {
  position: relative;
  overflow: hidden;
}
.palette-card::after {
  content: "artist drop";
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1.5px solid rgba(17,17,17,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: 3px 7px;
  font-size: .62rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.palette-card[data-palette="miscellaneous"]::after { content: "misc"; }
.swatch-grid span:nth-child(1) { min-height: 92px; }
.swatch-grid span:nth-child(2) { min-height: 74px; }
.swatch-grid span:nth-child(3) { min-height: 88px; }
.swatch-grid span:nth-child(4) { min-height: 66px; }
.swatch-grid span:nth-child(5) { min-height: 80px; }


/* V8: artist-specific palette polish + rental policy */
.palette-card {
  position: relative;
  overflow: hidden;
}
.palette-card::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px auto;
  width: 28px;
  height: 28px;
  border: var(--thin);
  border-radius: 50%;
  background: var(--paper);
}
.palette-card.active {
  background: #ffffff;
  border-color: #111111;
  outline: 4px solid rgba(255, 95, 162, .34);
}
.swatch-grid {
  min-height: 88px;
}
.swatch-grid span {
  border: 1.5px solid rgba(17,17,17,.22);
  border-radius: 16px;
}
.palette-card strong {
  font-size: 1.08rem;
}
.return-policy-card,
.policy-fee-box,
.policy-check {
  border: var(--thin);
  border-radius: 18px;
  background: var(--white);
}
.return-policy-card {
  padding: 14px;
  margin-top: 10px;
}
.return-policy-card h3 {
  margin: 4px 0 6px;
  font-size: 1.05rem;
}
.return-policy-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.policy-fee-box {
  display: grid;
  gap: 6px;
  padding: 12px;
  margin: 12px 0;
  background: #fff8dc;
}
.policy-fee-box span {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 800;
}
.policy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.3;
}
.policy-check input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.artist-colors {
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--ink);
}
.policy-box {
  border: var(--thick);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 14px;
  display: grid;
  gap: 8px;
}
.policy-box h3 { margin-bottom: 0; }
.policy-box p { margin: 0; color: var(--muted); font-weight: 750; line-height: 1.4; }
.return-deadline-box { background: var(--cream); }
.return-deadline-box strong { font-size: 1.1rem; letter-spacing: -.02em; }
.fee-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  font-size: .92rem;
}
.fee-grid span { color: var(--muted); font-weight: 800; }
.fee-grid strong { text-align: right; }
.policy-check {
  border: var(--thin);
  border-radius: 14px;
  padding: 10px 12px;
  background: var(--white);
  font-size: .92rem;
  line-height: 1.35;
}
.policy-warning {
  margin: -2px 0 0;
  color: #9a102c;
  font-weight: 950;
  font-size: .9rem;
}


.palette-card em {
  color: var(--pink);
  font-style: normal;
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.artist-colors {
  margin-top: 10px;
  color: var(--ink) !important;
  font-size: .84rem;
  font-weight: 900 !important;
}
.return-box {
  border: var(--thick);
  border-radius: 18px;
  background: var(--acid);
  padding: 13px;
  display: grid;
  gap: 4px;
}
.return-box span,
.condition-checklist strong,
.after-fee-panel h4 {
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .07em;
  font-weight: 950;
}
.return-box strong {
  font-size: 1.25rem;
  letter-spacing: -.03em;
}
.return-box small {
  color: #343434;
  font-weight: 800;
  line-height: 1.35;
}
.condition-checklist {
  border: var(--thin);
  border-radius: 18px;
  background: var(--paper);
  padding: 12px;
  display: grid;
  gap: 8px;
}
.condition-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  font-weight: 800;
}
.after-fee-panel {
  border: var(--thin);
  border-radius: 16px;
  background: var(--paper);
  padding: 12px;
  display: grid;
  gap: 8px;
  margin: 10px 0;
}
.after-fee-panel h4 { margin: 0 0 2px; }
.after-fee-panel div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .88rem;
  font-weight: 850;
}
.policy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: var(--thick);
  border-radius: 18px;
  padding: 12px;
  background: var(--pink-soft);
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.35;
}
.policy-check input { margin-top: 4px; transform: scale(1.15); }
.policy-error {
  margin: 8px 0;
  color: #b00020;
  font-weight: 950;
  font-size: .88rem;
}
.policy-block {
  margin-top: 12px;
  border: var(--thick);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: center;
}
.policy-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}
.policy-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.policy-mini-grid span {
  border: var(--thin);
  border-radius: 16px;
  background: var(--paper);
  padding: 12px;
  font-weight: 800;
}
.policy-mini-grid strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -.04em;
}
@media (max-width: 760px) {
  .policy-block { grid-template-columns: 1fr; }
  .policy-mini-grid { grid-template-columns: 1fr; }
}

.beta-form-panel, .form-shortcut-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: var(--thick);
  border-radius: var(--radius);
  background: var(--acid);
}
.beta-form-panel p, .form-shortcut-panel p {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 750;
  max-width: 760px;
  margin-bottom: 0;
}
.form-shortcut-panel {
  margin: 18px 0;
  background: var(--blue);
}
@media (max-width: 760px) {
  .beta-form-panel, .form-shortcut-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

.inventory-empty {
  display: block;
  break-inside: avoid;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.inventory-empty h2 {
  margin: 8px 0 10px;
}
.inventory-empty p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}
.pin-grid .inventory-empty {
  column-span: all;
}


/* V10: no fake outfit inventory */
.beta-drop-board {
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr 1fr 1fr;
  background: linear-gradient(135deg, #e9ff66 0%, #ffd1e5 46%, #bde7ff 100%);
}
.hero-drop-card {
  border: var(--thick);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 120px;
}
.hero-drop-card.salt-card {
  grid-row: 1 / span 3;
  background: var(--white);
}
.hero-drop-card h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
}
.hero-drop-card p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}
.hero-drop-card span:not(.tiny-label) {
  font-weight: 950;
  font-size: 1.1rem;
  letter-spacing: -.03em;
}
.mini-swatches {
  display: flex;
  gap: 7px;
}
.mini-swatches i {
  display: block;
  width: 42px;
  height: 42px;
  border: var(--thin);
  border-radius: 50%;
}
.drop-request-card {
  break-inside: avoid;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0 0 10px;
  border: var(--thick);
  border-radius: 24px;
  background: var(--white);
  padding: 12px;
}
.drop-request-card h3 {
  margin: 8px 0 4px;
  font-size: 1.25rem;
}
.drop-request-card p {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.42;
  margin: 0;
}
.drop-request-card .concert-date {
  display: inline-block;
  color: var(--pink);
  font-weight: 950;
  margin-top: 6px;
}
.drop-request-card .black-button {
  width: 100%;
}
.drop-request-grid-note {
  column-span: all;
}
@media (max-width: 760px) {
  .beta-drop-board {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hero-drop-card.salt-card { grid-row: auto; }
}
