:root {
  --ink: #141414;
  --muted: #67635c;
  --line: #dfd8cc;
  --paper: #fbfaf7;
  --soft: #f2eee6;
  --olive: #59613e;
  --clay: #b8794e;
  --gold: #b97819;
  --white: #fff;
  --shadow: 0 18px 45px rgba(35, 29, 20, .08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, .9);
  border-bottom: 1px solid rgba(223, 216, 204, .65);
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 26px clamp(22px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 25px;
  font-weight: 850;
  gap: 10px;
  white-space: nowrap;
}

.brand img {
  display: block;
  height: 34px;
  width: 34px;
}

.brand span,
.accent {
  color: var(--olive);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
}

.nav-links a {
  border-radius: 999px;
  color: #2f2b26;
  overflow: hidden;
  padding: 8px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 900;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.creator-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
  white-space: nowrap;
}

.search {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  min-width: 270px;
  padding: 10px 16px;
}

.search input {
  background: transparent;
  border: 0;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.search-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
}

#savedButton {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.search-overlay,
.mobile-menu {
  background: rgba(25, 25, 25, .18);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .16s ease;
  z-index: 60;
}

.search-overlay.open,
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  align-items: center;
  background: rgba(251, 250, 247, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(260px, 720px) auto;
  justify-content: center;
  padding: 24px clamp(18px, 5vw, 72px);
}

.search-large {
  min-width: 0;
  width: min(720px, calc(100vw - 110px));
}

.mobile-menu-panel {
  background: var(--paper);
  box-shadow: var(--shadow);
  height: 100%;
  margin-left: auto;
  max-width: 360px;
  padding: 24px;
  transform: translateX(24px);
  transition: transform .16s ease;
  width: min(86vw, 360px);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  padding-top: 18px;
}

.mobile-menu nav a {
  border-radius: 8px;
  font-weight: 850;
  padding: 14px 10px;
}

.mobile-menu nav a[aria-current="page"] {
  color: #2f7a61;
}

.mobile-menu nav a:hover {
  background: var(--soft);
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.icon-button > span,
.css-icon {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 24px;
}

.search-icon::before {
  border: 2.4px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 3px;
  position: absolute;
  top: 3px;
  width: 13px;
}

.search-icon::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2.4px;
  left: 16px;
  position: absolute;
  top: 17px;
  transform: rotate(45deg);
  transform-origin: left center;
  width: 9px;
}

.heart-icon::before,
.heart-icon::after {
  background: currentColor;
  border-radius: 999px 999px 0 0;
  content: "";
  height: 14px;
  left: 11px;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
  width: 8px;
}

.heart-icon::after {
  left: 3px;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2.6px;
  position: absolute;
  width: 19px;
}

.menu-icon {
  left: 2.5px;
  top: 10.7px;
}

.menu-icon::before {
  left: 0;
  top: -7px;
}

.menu-icon::after {
  left: 0;
  top: 7px;
}

.icon-button.search-toggle,
#savedButton,
.icon-button.menu-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 42px;
}

.icon-button.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr);
  height: min(560px, calc(100vh - 92px));
  min-height: 430px;
  overflow: hidden;
}

.hero-copy {
  align-content: center;
  display: grid;
  padding: clamp(34px, 5vw, 62px) clamp(24px, 6vw, 76px);
}

.eyebrow {
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 5vw, 66px);
  max-width: 720px;
}

h2 {
  font-size: clamp(28px, 3vw, 38px);
}

h3 {
  font-size: 22px;
}

p {
  line-height: 1.65;
}

.lead {
  color: #26231f;
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 660px;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
}

.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.ghost {
  background: rgba(255, 255, 255, .68);
}

.trust-row {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 760px;
}

.trust-item {
  display: grid;
  font-size: 13px;
  gap: 4px;
  grid-template-columns: 34px 1fr;
}

.trust-item span {
  align-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  display: inline-flex;
  font-size: 17px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.trust-item strong {
  display: block;
}

.trust-item small {
  color: var(--muted);
}

.hero-media {
  height: 100%;
  min-height: 0;
  position: relative;
}

.hero-media img {
  height: 100%;
  width: 100%;
}

.stamp {
  align-items: center;
  background: var(--olive);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 96px;
  justify-content: center;
  position: absolute;
  right: 70px;
  text-align: center;
  top: 82px;
  transform: rotate(-13deg);
  width: 96px;
}

.section {
  padding: clamp(42px, 6vw, 76px) clamp(22px, 6vw, 78px);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  margin: 8px 0 0;
}

.text-link {
  font-weight: 800;
  white-space: nowrap;
}

.collection-grid,
.project-grid,
.maker-grid {
  display: grid;
  gap: 20px;
}

.collection-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.all-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-grid,
.compact-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
  justify-content: start;
}

.maker-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.card-body {
  padding: 16px 18px 18px;
}

.card img {
  aspect-ratio: 1.28 / 1;
  background: var(--soft);
  width: 100%;
}

.card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.collection-link-card {
  min-height: 180px;
}

.collection-link-card .card-body {
  display: grid;
  gap: 10px;
  min-height: 100%;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin: 5px 0;
}

.price,
.rating {
  font-weight: 800;
}

.rating {
  color: var(--gold);
  font-size: 13px;
}

.shipping-note {
  color: #2f7a61;
  font-size: 12px;
  font-weight: 800;
  margin: 7px 0;
}

.product-shipping {
  background: #edf7f1;
  border: 1px solid #b7d9c5;
  border-radius: 999px;
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
}

.shipping-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.project-card {
  position: relative;
}

.save {
  background: rgba(255, 255, 255, .78);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  height: 38px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
}

.badge {
  background: rgba(255, 255, 255, .85);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  left: 12px;
  padding: 6px 10px;
  position: absolute;
  top: 12px;
}

.maker-band,
.newsletter {
  align-items: center;
  background: linear-gradient(115deg, #ecebdc, #faf7ef);
  border-radius: 8px;
  display: grid;
  gap: 26px;
  grid-template-columns: 1.1fr 2fr auto;
  padding: 26px;
}

.maker-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.maker-mini {
  display: grid;
  gap: 10px;
}

.maker-mini img {
  width: 73%;
}

.maker-mini img,
.maker-card img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.maker-mini .meta {
  margin-top: -4px;
}

.stat-tile {
  align-items: center;
  background: rgba(255, 255, 255, .75);
  border-radius: 8px;
  display: grid;
  height: 100%;
  justify-items: center;
  min-width: 145px;
  padding: 22px;
  text-align: center;
}

.feature-strip {
  align-items: center;
  background: #eef4ec;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: .8fr 1.2fr;
}

.feature-strip h2 {
  margin-bottom: 10px;
}

.shipping-destinations {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shipping-destinations a {
  background: rgba(255, 255, 255, .76);
  border: 1px solid #bfd7c7;
  border-radius: 8px;
  color: #245e48;
  font-weight: 850;
  padding: 18px;
}

.marketplace-panels {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.market-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: .85fr 1fr;
  overflow: hidden;
}

.market-panel img {
  height: 100%;
  min-height: 260px;
  width: 100%;
}

.market-panel div {
  align-content: center;
  display: grid;
  padding: 28px;
}

.stats-band {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
  padding-bottom: 0;
}

.stats-band div {
  background: rgba(255, 255, 255, .06);
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 34px 18px;
  text-align: center;
}

.stats-band strong {
  font-size: clamp(30px, 4vw, 48px);
}

.stats-band span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.creator-landing {
  background: #fbfaf7;
}

.launch-page {
  background: #fbfaf7;
}

.launch-hero {
  grid-template-columns: minmax(480px, 1fr) minmax(500px, 1fr);
  height: auto;
  min-height: 570px;
  overflow: visible;
}

.launch-hero .hero-copy {
  align-content: center;
  padding-bottom: clamp(58px, 6.5vw, 88px);
  padding-top: clamp(58px, 6.5vw, 88px);
}

.launch-hero h1 {
  font-size: clamp(46px, 4.25vw, 68px);
  max-width: 780px;
}

.launch-hero .lead {
  margin-top: 18px;
  max-width: 680px;
}

.launch-hero .hero-actions {
  margin-top: 28px;
}

.launch-hero .hero-media {
  min-height: 570px;
}

.launch-hero .hero-media img {
  object-position: center;
}

.launch-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.launch-hero-note span,
.launch-category-card span {
  background: #edf7f1;
  border: 1px solid rgba(47, 122, 97, .18);
  border-radius: 999px;
  color: #2f7a61;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 8px 10px;
}

.launch-usps strong {
  font-size: clamp(26px, 3.4vw, 42px);
}

.launch-usps div {
  padding-bottom: 34px;
  padding-top: 34px;
}

.launch-brief {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: .74fr 1.26fr;
}

.launch-brief.compact {
  padding-top: clamp(38px, 6vw, 76px);
}

.launch-category-grid .card img {
  aspect-ratio: 1.45 / 1;
}

.launch-category-card .card-body {
  display: grid;
  gap: 12px;
}

.launch-category-card .meta {
  min-height: 60px;
}

.launch-categories .section-head {
  align-items: end;
}

.launch-category-section {
  display: grid;
  gap: 34px;
  grid-template-columns: .72fr 1.28fr;
}

.launch-category-intro {
  display: grid;
  gap: 18px;
}

.launch-category-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.launch-final {
  border-top: 1px solid rgba(223, 216, 204, .72);
}

.launch-empty {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
}

.launch-empty p {
  margin: 0;
  max-width: 680px;
}

.launch-empty .button {
  justify-self: start;
}

.creator-hero,
.landing-section,
.landing-final-cta {
  padding: clamp(54px, 8vw, 110px) clamp(22px, 6vw, 86px);
}

.creator-hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, .96fr) minmax(360px, .74fr);
  min-height: 680px;
}

.creator-hero h1 {
  font-size: clamp(50px, 7vw, 92px);
  max-width: 920px;
}

.creator-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.creator-hero-note span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3d4933;
  font-size: 12px;
  font-weight: 850;
  padding: 9px 12px;
}

.creator-preview-stack {
  display: grid;
  gap: 14px;
}

.creator-profile-preview,
.creator-product-preview,
.landing-card-grid > div,
.landing-maker-card,
.referral-preview {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.maker-admin-preview {
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 22px 70px rgba(35, 31, 26, .12);
  justify-self: end;
  max-width: 560px;
  overflow: hidden;
  width: 100%;
}

.admin-preview-top {
  align-items: center;
  background: #161614;
  color: var(--white);
  display: flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: space-between;
  padding: 14px 18px;
}

.admin-preview-top strong {
  background: #edf7f1;
  border-radius: 999px;
  color: #2f7a61;
  font-size: 11px;
  padding: 7px 10px;
}

.admin-preview-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.admin-preview-body h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  max-width: 420px;
}

.admin-preview-body p {
  color: var(--muted);
  margin: 8px 0 0;
  max-width: 460px;
}

.admin-preview-progress {
  background: #ebe5da;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.admin-preview-progress span {
  background: #2f7a61;
  border-radius: inherit;
  display: block;
  height: 100%;
}

.admin-preview-checklist {
  display: grid;
  gap: 8px;
}

.admin-preview-checklist div {
  align-items: center;
  background: #fbfaf7;
  border: 1px solid rgba(223, 216, 204, .82);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  min-height: 48px;
  padding: 10px 12px;
}

.admin-preview-checklist span {
  align-items: center;
  background: #edf7f1;
  border-radius: 50%;
  color: #2f7a61;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.admin-preview-checklist strong {
  font-size: 14px;
}

.admin-preview-checklist em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.admin-preview-note {
  align-items: center;
  background: #eef4ec;
  border: 1px solid #cddbd2;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.admin-preview-note span {
  color: #4f5149;
  font-size: 13px;
}

.creator-profile-preview {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 74px 1fr;
  padding: 18px;
}

.creator-profile-preview img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.creator-profile-preview p,
.creator-product-preview p {
  color: var(--muted);
  margin: 3px 0;
}

.creator-profile-preview span {
  background: #edf7f1;
  border-radius: 999px;
  color: #2f7a61;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 10px;
}

.creator-product-preview {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 92px 1fr;
  padding: 12px;
}

.creator-product-preview img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.landing-section {
  border-top: 1px solid rgba(223, 216, 204, .72);
}

.problem-section,
.solution-section {
  display: grid;
  gap: 34px;
}

.problem-section {
  grid-template-columns: .74fr 1.26fr;
}

.landing-card-grid {
  display: grid;
  gap: 18px;
}

.landing-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-card-grid > div {
  padding: 24px;
}

.landing-card-grid span,
.step-row span {
  color: #2f7a61;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.landing-card-grid p,
.landing-maker-card p,
.founder-program p,
.landing-final-cta p,
.referral-section p {
  color: var(--muted);
}

.founder-program,
.referral-section {
  background: #eef4ec;
  display: grid;
  gap: 36px;
  grid-template-columns: .78fr 1.22fr;
}

.lead-capture-section {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
}

.lead-capture-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  padding: 22px;
}

.lead-capture-card label {
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
}

.lead-capture-card input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.benefit-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-list div {
  background: rgba(255, 255, 255, .78);
  border: 1px solid #bfd7c7;
  border-radius: 10px;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.benefit-list span {
  color: var(--muted);
  line-height: 1.55;
}

.step-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-row div {
  border-left: 1px solid var(--line);
  padding: 4px 24px 4px 24px;
}

.creator-card-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-maker-card {
  overflow: hidden;
}

.landing-maker-card img {
  aspect-ratio: 1.3 / 1;
  width: 100%;
}

.landing-maker-card div {
  padding: 20px;
}

.landing-maker-card span {
  color: #2f7a61;
  font-size: 13px;
  font-weight: 850;
}

.referral-preview {
  align-self: center;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.referral-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.referral-preview code {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #2f7a61;
  overflow-wrap: anywhere;
  padding: 14px;
}

.referral-preview strong {
  font-size: 20px;
}

.landing-final-cta {
  align-items: center;
  display: grid;
  justify-items: center;
  text-align: center;
}

.landing-final-cta h2 {
  max-width: 760px;
}

.newsletter {
  grid-template-columns: 1fr 1.2fr;
  margin-top: 36px;
}

.newsletter form {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.newsletter input,
.project-form input,
.project-form select,
.project-form textarea,
.sort-select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  padding: 14px;
  width: 100%;
}

.newsletter-success {
  min-height: 0;
}

.newsletter-success .button {
  justify-self: start;
}

.fineprint {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 28px;
  grid-column: 1 / -1;
}

.listing-hero {
  background: var(--soft);
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  height: min(260px, calc(100vh - 150px));
  min-height: 230px;
  overflow: hidden;
}

.listing-hero .hero-copy {
  align-self: center;
  padding-bottom: clamp(22px, 2.6vw, 34px);
  padding-top: clamp(22px, 2.6vw, 34px);
}

.listing-hero .hero-copy h1 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  max-width: 680px;
}

.listing-hero .lead {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
  margin: 16px 0 0;
  max-width: 660px;
}

.listing-hero .hero-media {
  align-items: center;
  background: #ebe5d9;
  display: flex;
  min-height: 100%;
  padding: clamp(18px, 2.5vw, 34px);
}

.listing-hero .hero-media img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.crumbs {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 14px;
}

.listing-layout {
  display: grid;
  align-items: start;
  gap: 30px;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
}

.filters {
  align-self: start;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  position: sticky;
  top: 105px;
}

.category-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.category-quick-stats span {
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3d4933;
  font-size: 12px;
  font-weight: 850;
  padding: 8px 11px;
}

.filter-group {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.filter-group label {
  align-items: center;
  color: #302c27;
  display: flex;
  font-size: 14px;
  gap: 9px;
  margin: 11px 0;
}

.filter-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 10px 0 0;
}

.filter-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-chip-group label {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  margin: 0;
  padding: 8px 11px;
}

.filter-chip-group input {
  accent-color: #2f7a61;
}

.content-toolbar {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  margin-bottom: 22px;
}

.content-toolbar h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.04;
  margin: 0;
}

.content-toolbar .sort-select {
  justify-self: end;
  max-width: 280px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pill {
  background: var(--soft);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  padding: 11px 19px;
}

.category-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 260px));
  justify-content: start;
}

.search-results-form {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: -8px 0 28px;
  max-width: 560px;
}

.search-results-input {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 0 18px;
  width: 100%;
}

.search-results-input input {
  background: transparent;
  border: 0;
  font-size: 16px;
  min-height: 52px;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.search-results-form .button {
  border-radius: 999px;
  min-height: 52px;
  padding: 0 26px;
  white-space: nowrap;
}

.category-empty {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  min-height: 150px;
}

.category-empty p {
  margin: 0;
  max-width: 620px;
}

.public-info-page {
  margin: 0 auto;
  max-width: 1180px;
}

.legal-hero {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 760px);
  margin-bottom: 34px;
}

.legal-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .95;
  margin: 0 0 18px;
  max-width: 760px;
}

.legal-hero .lead {
  max-width: 660px;
}

.form-success span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, .75fr) minmax(420px, 1.25fr);
}

.legal-panel {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 30px);
}

.legal-panel h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 14px;
}

.legal-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.legal-panel p + p {
  margin-top: 12px;
}

.legal-panel .meta {
  margin-bottom: 16px;
}

.legal-document {
  display: grid;
  gap: 28px;
  max-width: 900px;
}

.legal-document section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.legal-document section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-document h2 {
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 10px;
}

.legal-document p {
  color: #39342e;
  font-size: 16px;
  line-height: 1.8;
  max-width: 780px;
}

.contact-document .contact-form {
  margin-top: 18px;
  max-width: 680px;
}

.contact-document .form-success {
  min-height: 220px;
}

.legal-note {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
}

.legal-note strong {
  font-size: 14px;
}

.legal-note p {
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 14px;
  grid-row: span 2;
}

.form-honeypot {
  display: none;
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  outline: 0;
  padding: 13px 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(70, 127, 98, .14);
}

.form-success {
  align-content: center;
  display: grid;
  gap: 14px;
  min-height: 360px;
}

.form-success h2 {
  margin-bottom: 0;
}

.product-page {
  padding: 36px clamp(22px, 5vw, 72px) 58px;
}

.product-crumbs {
  color: #343943;
  font-size: 14px;
  margin-bottom: 24px;
}

.product-layout {
  align-items: start;
  display: grid;
  gap: clamp(22px, 2.8vw, 38px);
  grid-template-columns: minmax(340px, .82fr) minmax(390px, .82fr) minmax(280px, .5fr);
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.main-photo {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.main-photo img {
  aspect-ratio: 1 / .82;
  object-fit: cover;
  width: 100%;
}

.gallery-save {
  background: var(--white);
  height: 52px;
  right: 22px;
  top: 22px;
  width: 52px;
}

.gallery-nav {
  align-items: center;
  background: rgba(255, 255, 255, .9);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 36px;
  height: 50px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
}

.gallery-nav.prev {
  left: 24px;
}

.gallery-nav.next {
  right: 24px;
}

.thumb-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.thumb {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.thumb.active {
  border-color: #2f7a61;
  box-shadow: 0 0 0 2px rgba(47, 122, 97, .18);
}

.thumb img {
  aspect-ratio: 1 / .78;
  object-fit: cover;
  width: 100%;
}

.product-info h1 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 850;
  line-height: 1.18;
}

.maker-line {
  font-size: 18px;
  margin: 14px 0;
}

.maker-line a {
  font-weight: 800;
}

.verified {
  align-items: center;
  background: #408868;
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 11px;
  height: 18px;
  justify-content: center;
  margin-left: 5px;
  width: 18px;
}

.founding-badge,
.founding-inline,
.status-pill {
  align-items: center;
  background: #edf7f1;
  border: 1px solid rgba(47, 122, 97, .2);
  border-radius: 999px;
  color: #2f7a61;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  gap: 6px;
  line-height: 1;
  padding: 8px 10px;
  vertical-align: middle;
}

.founding-inline {
  margin-top: 8px;
}

.status-pill {
  background: var(--soft);
  border-color: var(--line);
  color: #3d4933;
}

.status-pill.large {
  font-size: 13px;
  padding: 10px 13px;
}

.product-price {
  font-size: 34px;
  font-weight: 850;
  margin: 24px 0 18px;
}

.description-block {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 26px;
}

.description-block h3,
.buy-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.check-list li {
  line-height: 1.7;
  margin: 8px 0;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  color: #2f7a61;
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.buy-column {
  display: grid;
  gap: 22px;
}

.buy-card {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.external-checkout-note {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #4f5149;
  font-size: 13px;
  line-height: 1.55;
  margin: 14px 0 16px;
  padding: 12px;
}

.buy-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 36px 1fr auto;
  margin-top: 14px;
  min-height: 62px;
  padding: 14px 16px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.buy-link span {
  align-items: center;
  background: var(--soft);
  border-radius: 6px;
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.buy-link strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.buy-link em {
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
}

.buy-link:hover {
  box-shadow: 0 10px 24px rgba(35, 29, 20, .08);
  transform: translateY(-1px);
}

.featured-buy {
  border-width: 1px;
}

.marketplace-etsy {
  background: #ff6422;
  border-color: #ff6422;
  color: var(--white);
}

.marketplace-shopify {
  background: #f8fff9;
  border-color: #9fc7aa;
}

.marketplace-gumroad {
  background: #fffaf1;
  border-color: #dfbe74;
}

.marketplace-maker {
  background: #f7fbf9;
  border-color: #9ac4b6;
}

.marketplace-etsy span,
.marketplace-etsy em {
  color: var(--white);
}

.marketplace-etsy span {
  background: rgba(255, 255, 255, .16);
}

.marketplace-shopify span {
  background: #dff0e4;
  color: #2f7a41;
}

.marketplace-gumroad span {
  background: #f3e4bc;
  color: #846018;
}

.marketplace-maker span {
  background: #dceee8;
  color: #2f7a61;
}

.assurance {
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 0;
}

.maker-about-head {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 74px 1fr;
  margin: 22px 0 14px;
}

.maker-about-head img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.maker-about .button {
  width: 100%;
}

.product-service-row {
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  padding: 24px 28px;
}

.product-service-row div {
  display: grid;
  gap: 4px;
  grid-template-columns: 42px 1fr;
}

.product-service-row span {
  align-items: center;
  display: flex;
  font-size: 28px;
  grid-row: span 2;
  justify-content: center;
}

.product-service-row p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.reviews-section {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 42px;
}

.reviews-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.review-score {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 160px;
  padding: 18px;
  text-align: center;
}

.review-score strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.review-score span {
  color: var(--gold);
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin: 8px 0 4px;
}

.review-score p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.reviews-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-card,
.review-form {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.review-card > div {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.review-card p:last-child {
  margin-bottom: 0;
}

.review-form {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 112px;
}

.review-form h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
}

.review-form label {
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.review-form input,
.review-form select,
.review-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  padding: 13px 14px;
  width: 100%;
}

.project-detail {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
}

.project-gallery img {
  aspect-ratio: 1.25 / 1;
  border-radius: 8px;
  width: 100%;
}

.detail-panel {
  align-self: start;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag {
  background: var(--soft);
  border-radius: 999px;
  color: #413b33;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.structured-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.structured-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.structured-box li {
  line-height: 1.7;
  margin: 8px 0;
}

.maker-directory-card img {
  aspect-ratio: 1 / 1;
}

.maker-page {
  padding: 36px clamp(22px, 5vw, 72px) 58px;
}

.maker-hero {
  align-items: stretch;
  background: linear-gradient(115deg, #f1efe7, #fbfaf7);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(320px, .42fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
}

.maker-hero-media {
  align-self: stretch;
  height: auto;
  min-height: 0;
  overflow: hidden;
  width: 100%;
}

.maker-hero-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.maker-hero-copy {
  align-content: center;
  display: grid;
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
}

.maker-title-row {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 68px 1fr;
  margin-bottom: 12px;
}

.maker-title-row img {
  aspect-ratio: 1 / 1;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  width: 68px;
}

.maker-title-row h1 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 850;
  line-height: 1.05;
}

.maker-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 10px;
}

.maker-hero-copy .lead {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
  margin: 8px 0 0;
  max-width: 760px;
}

.maker-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0 4px;
}

.maker-stats div {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(223, 216, 204, .9);
  border-radius: 10px;
  padding: 10px 12px;
}

.maker-stats strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
}

.maker-stats span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 6px;
}

.maker-content {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: 320px 1fr;
  margin-top: 34px;
}

.maker-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 112px;
}

.maker-panel {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.maker-panel h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
}

.channel-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.channel-list > a,
.channel-list > span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  justify-content: flex-start;
  padding: 12px 14px;
}

.channel-list a > span {
  align-items: center;
  background: rgba(255, 255, 255, .55);
  border-radius: 6px;
  display: inline-flex;
  flex: 0 0 30px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.channel-list a strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.maker-main .project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-auth {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) 420px;
  min-height: calc(100vh - 180px);
  padding: clamp(42px, 6vw, 78px);
}

.admin-auth-copy {
  max-width: 720px;
}

.auth-step-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 620px;
}

.auth-step-list div {
  align-items: start;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 3px 14px;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 14px;
}

.auth-step-list span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.auth-step-list strong,
.auth-step-list p {
  grid-column: 2;
  margin: 0;
}

.auth-step-list p {
  color: var(--muted);
  font-size: 14px;
}

.auth-step-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-note {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  padding: 12px 14px;
}

.profile-url-field {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  overflow: hidden;
}

.profile-url-field span {
  background: var(--soft);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 14px;
}

.profile-url-field input {
  border: 0;
  border-radius: 0;
}

.password-field {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  overflow: hidden;
}

.password-field input {
  border: 0;
  border-radius: 0;
}

.password-field button {
  align-self: stretch;
  background: var(--soft);
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.admin-demo-box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 28px;
  max-width: 560px;
  padding: 22px;
}

.admin-page {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 260px minmax(0, 1fr);
  padding: 34px clamp(22px, 5vw, 72px) 58px;
}

.admin-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 112px;
}

.admin-maker-card,
.admin-card {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.admin-maker-card img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-bottom: 14px;
  width: 82px;
}

.admin-nav {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  overflow: hidden;
}

.admin-nav a {
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  padding: 14px 16px;
}

.admin-nav a:last-child {
  border-bottom: 0;
}

.admin-nav a.active {
  background: var(--ink);
  color: var(--white);
}

.admin-main {
  display: grid;
  gap: 22px;
}

.admin-hero {
  align-items: center;
  background: linear-gradient(115deg, #ecebdc, #faf7ef);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px;
}

.admin-hero h1 {
  font-size: clamp(34px, 4vw, 54px);
}

.admin-hero .hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-stat-grid,
.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.onboarding-checklist {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.onboarding-checklist div {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 28px 1fr;
  padding: 12px;
}

.onboarding-checklist .done {
  background: #edf7f1;
  border-color: rgba(47, 122, 97, .2);
}

.onboarding-checklist span {
  color: #2f7a61;
  font-weight: 900;
}

.application-status {
  font-size: 34px;
  font-weight: 850;
  margin: 8px 0;
}

.admin-card h1 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.admin-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.admin-card-head {
  margin-bottom: 16px;
}

.admin-card-head h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

.admin-card-head .meta {
  margin-top: 6px;
}

.admin-card > span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.admin-card > strong {
  display: block;
  font-size: 32px;
}

.search-term-list {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding-right: 2px;
}

.search-term-list div {
  align-items: center;
  background: var(--soft);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.search-term-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.search-term-list span {
  color: var(--muted);
  font-size: 13px;
  margin-left: 16px;
  white-space: nowrap;
}

.admin-empty-state {
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 8px;
  display: grid !important;
  gap: 4px;
  justify-content: stretch !important;
  padding: 18px !important;
}

.admin-empty-state p {
  margin: 0;
}

.stats-empty-state {
  margin-bottom: 0;
}

.admin-product-form,
.admin-profile-form,
.admin-auth-form {
  display: grid;
  gap: 14px;
}

.auth-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
}

.admin-product-form,
.admin-profile-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-product-form .wide,
.admin-profile-form .wide {
  grid-column: 1 / -1;
}

.admin-product-form label,
.admin-profile-form label,
.admin-auth-form label {
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea,
.admin-profile-form input,
.admin-profile-form textarea,
.admin-auth-form input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  padding: 13px 14px;
  width: 100%;
}

.admin-section-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.profile-admin-studio {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.profile-editor-form {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 300px minmax(0, 1fr);
}

.profile-image-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 18px;
  padding: 18px;
  position: sticky;
  top: 112px;
}

.profile-image-block {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
}

.profile-image-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-image-block > span {
  font-size: 13px;
  font-weight: 900;
}

.profile-image-preview {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.profile-image-panel img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
  width: 100%;
}

.image-delete-button {
  align-items: center;
  background: rgba(18, 18, 18, .84);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, background .16s ease;
  width: 38px;
}

.image-delete-button svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.profile-image-preview:hover .image-delete-button,
.product-image-thumb-wrap:hover .image-delete-button,
.image-delete-button:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-delete-button:hover {
  background: #111;
}

.avatar-preview-image {
  aspect-ratio: 1 / 1;
}

.hero-preview-image {
  aspect-ratio: 3 / 2;
}

.hero-crop-picker {
  cursor: pointer;
}

.hero-crop-picker::before {
  border: 1px solid rgba(255, 255, 255, .72);
  bottom: 16%;
  box-shadow: 0 0 0 999px rgba(0, 0, 0, .12);
  content: "";
  left: 12%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 12%;
  top: 16%;
  transition: opacity .16s ease;
  z-index: 1;
}

.hero-crop-picker:hover::before {
  opacity: 1;
}

.hero-focus-marker {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .22);
  height: 18px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18px;
  z-index: 2;
}

.profile-image-panel label,
.profile-fields-panel label {
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.profile-image-panel input,
.profile-fields-panel input,
.profile-fields-panel textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  padding: 13px 14px;
  width: 100%;
}

.file-upload-control {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  justify-self: start;
  padding: 9px 14px;
  text-align: center;
}

.file-upload-control input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.file-upload-control:hover {
  border-color: var(--ink);
}

.file-upload-control.uploading {
  cursor: wait;
  opacity: .7;
  pointer-events: none;
}

.upload-status {
  align-items: center;
  background: #edf7f1;
  border: 1px solid rgba(47, 122, 97, .2);
  border-radius: 8px;
  color: #2f7a61;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  justify-self: start;
  line-height: 1.3;
  padding: 8px 10px;
}

.upload-status[hidden] {
  display: none;
}

.upload-status[data-state="loading"] {
  background: rgba(47, 122, 97, .08);
  border-color: rgba(47, 122, 97, .18);
}

.upload-status[data-state="error"] {
  background: rgba(148, 56, 47, .08);
  border-color: rgba(148, 56, 47, .22);
  color: #94382f;
}

.upload-spinner {
  animation: upload-spin .75s linear infinite;
  border: 2px solid rgba(47, 122, 97, .18);
  border-radius: 50%;
  border-top-color: #2f7a61;
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

@keyframes upload-spin {
  to {
    transform: rotate(360deg);
  }
}

.product-image-uploader {
  display: grid;
  gap: 12px;
}

.product-image-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
}

.product-image-strip.empty {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  padding: 14px;
}

.product-image-thumb-wrap {
  position: relative;
}

.product-image-thumb {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.product-image-thumb.active {
  border-color: #2f7a61;
}

.product-image-thumb img {
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.product-image-delete {
  height: 30px;
  right: 6px;
  top: 6px;
  width: 30px;
}

.product-image-delete svg {
  height: 15px;
  width: 15px;
}

.profile-fields-panel {
  display: grid;
  gap: 16px;
}

.social-editor-section {
  grid-template-columns: 1fr;
}

.social-link-list {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
}

.social-link-row {
  align-items: end;
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(120px, .42fr) minmax(220px, 1fr) 42px;
  padding: 12px;
}

.remove-social {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.admin-product-studio {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.admin-product-studio.list-mode {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.admin-product-studio.list-mode .admin-section-head {
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.product-studio-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.product-editor {
  grid-template-columns: 1fr;
}

.editor-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
}

.editor-section h2,
.editor-helper-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.editor-section > div,
.editor-section .wide {
  grid-column: 1 / -1;
}

.shipping-field {
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.shipping-picker {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.shipping-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shipping-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  padding: 8px 11px;
}

.shipping-chip.selected {
  background: #2f7a61;
  border-color: #2f7a61;
  color: var(--white);
}

.shipping-custom-row {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.shipping-custom-row input {
  min-width: 0;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-editor-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 112px;
}

.preview-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.preview-card img {
  aspect-ratio: 1.16 / 1;
  width: 100%;
}

.preview-card > div {
  padding: 18px;
}

.preview-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

.editor-helper-card {
  box-shadow: none;
}

.product-list-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.product-list-summary div {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.product-list-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-list-summary strong {
  font-size: 24px;
}

.admin-product-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.admin-product-list article {
  align-items: center;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 66px minmax(0, 1fr) auto auto;
  padding: 12px;
}

.admin-product-list img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  width: 66px;
}

.admin-review-list {
  display: grid;
  gap: 12px;
}

.admin-review-list article {
  background: var(--soft);
  border-radius: 8px;
  padding: 16px;
}

.admin-review-list article > div {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.admin-row-actions {
  display: flex;
  gap: 14px;
  justify-content: end;
}

.listing-traffic-table {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.traffic-row {
  align-items: center;
  background: var(--soft);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(180px, 1fr) minmax(70px, .32fr) minmax(70px, .32fr) minmax(80px, .34fr) minmax(180px, .9fr);
  padding: 13px 14px;
}

.traffic-row span:not(:first-child) {
  text-align: right;
}

.traffic-title {
  font-weight: 850;
  min-width: 0;
  overflow-wrap: anywhere;
}

.listing-term-chips {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  text-align: left !important;
}

.listing-term-chips em {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3d4933;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  padding: 7px 9px;
}

.listing-term-chips .muted-chip {
  color: var(--muted);
}

.listing-empty {
  margin-top: 4px;
}

.traffic-head {
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.credits-hero {
  background: linear-gradient(115deg, #eef4ec, #faf7ef);
}

.credit-balance-card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 190px;
  padding: 20px;
  text-align: center;
}

.credit-balance-card span,
.credit-balance-card p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}

.credit-balance-card strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  margin: 10px 0;
}

.credit-ledger,
.placement-grid,
.credit-admin-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.credit-ledger > div,
.placement-grid article {
  align-items: center;
  background: var(--soft);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto auto;
  padding: 14px;
}

.credit-ledger span {
  display: grid;
  gap: 4px;
}

.credit-ledger small {
  color: var(--muted);
  font-size: 12px;
}

.credit-ledger em {
  font-style: normal;
  font-weight: 900;
}

.credit-positive {
  color: #2f7a61;
  font-weight: 900;
}

.credit-negative {
  color: #9b4d1f;
  font-weight: 900;
}

.placement-grid article {
  grid-template-columns: 1fr auto auto;
}

.placement-grid span {
  color: #2f7a61;
  font-weight: 900;
  white-space: nowrap;
}

.referral-box {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  margin: 18px 0;
  padding: 14px;
}

.referral-box code {
  color: #2f7a61;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.referral-stat-grid {
  margin-top: 16px;
}

.credit-admin-row {
  align-items: center;
  background: var(--soft);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr .8fr .45fr .6fr 1.4fr;
  padding: 12px 14px;
}

.credit-admin-head {
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.moderation-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.moderation-item {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 14px;
  grid-template-columns: 76px 1fr auto;
  padding: 14px;
}

.moderation-item img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  width: 76px;
}

.form-error {
  background: #fff0ed;
  border: 1px solid #f0b2a6;
  border-radius: 8px;
  color: #9b2f1f;
  font-weight: 800;
  margin: 0;
  padding: 12px;
}

dialog {
  border: 0;
  border-radius: 10px;
  max-width: 760px;
  padding: 0;
  width: calc(100vw - 32px);
}

dialog::backdrop {
  background: rgba(20, 20, 20, .36);
}

.project-form {
  background: var(--paper);
  display: grid;
  gap: 18px;
  padding: 26px;
}

.dialog-head {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-form label {
  color: #302c27;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(22px, 6vw, 78px);
}

.site-footer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.site-footer p {
  max-width: 620px;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-weight: 800;
}

.footer-links button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--ink);
}

.cookie-consent {
  bottom: 12px;
  left: 12px;
  position: fixed;
  right: 12px;
  z-index: 80;
}

.cookie-backdrop {
  background: rgba(25, 25, 25, .18);
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 79;
}

.cookie-card {
  align-items: start;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(35, 29, 20, .14);
  display: grid;
  gap: 10px 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 860px;
  padding: 12px;
  backdrop-filter: blur(18px);
}

.cookie-copy .eyebrow {
  margin-bottom: 3px;
}

.cookie-copy h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.cookie-copy p:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  margin-bottom: 0;
  max-width: 620px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: end;
}

.cookie-actions .button,
.cookie-option-actions .button {
  min-height: 36px;
  padding: 9px 14px;
}

.text-button {
  background: transparent;
  border: 0;
  color: var(--ink);
}

.cookie-options {
  border-top: 1px solid var(--line);
  display: none;
  gap: 6px;
  grid-column: 1 / -1;
  padding-top: 8px;
}

.cookie-options.open {
  display: grid;
}

.cookie-option {
  align-items: center;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0;
  padding: 9px 10px;
}

.cookie-option p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  margin: 2px 0 0;
}

.cookie-option span {
  background: #eef4ec;
  border: 1px solid #cddbd2;
  border-radius: 999px;
  color: #2f7a61;
  font-size: 12px;
  font-weight: 850;
  padding: 5px 9px;
}

.cookie-option input {
  accent-color: #2f7a61;
  height: 20px;
  width: 20px;
}

.cookie-option-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
}

.empty {
  background: rgba(255, 255, 255, .52);
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 34px;
}

.empty strong {
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .nav-links {
    gap: 16px;
    justify-content: end;
  }

  .nav-links a {
    max-width: 148px;
  }

  .creator-link {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .icon-button.menu-toggle {
    display: inline-flex;
  }

  .hero,
  .listing-hero,
  .project-detail,
  .product-layout,
  .maker-hero,
  .maker-content,
  .maker-profile,
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .launch-hero {
    min-height: 0;
  }

  .launch-hero .hero-media {
    min-height: 360px;
  }

  .collection-grid,
  .all-category-grid,
  .project-grid,
  .compact-product-grid,
  .home-product-grid,
  .maker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters {
    position: static;
  }

  .maker-band,
  .newsletter,
  .feature-strip,
  .marketplace-panels,
  .market-panel,
  .stats-band,
  .creator-hero,
  .launch-brief,
  .launch-category-section,
  .problem-section,
  .founder-program,
  .referral-section,
  .lead-capture-section,
  .reviews-layout,
  .admin-auth,
  .admin-page,
  .admin-stat-grid,
  .admin-grid,
  .legal-hero,
  .legal-layout,
  .profile-editor-form,
  .product-studio-layout,
  .product-service-row {
    grid-template-columns: 1fr;
  }

  .review-form {
    position: static;
  }

  .maker-sidebar {
    position: static;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-nav {
    display: flex;
    overflow-x: auto;
  }

  .admin-nav a {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    flex: 0 0 auto;
    padding: 12px 14px;
  }

  .product-editor-aside {
    position: static;
  }

  .profile-image-panel {
    position: static;
  }

  .maker-main .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-hero {
    height: auto;
    min-height: 0;
  }

  .maker-hero {
    height: auto;
  }

  .content-toolbar {
    grid-template-columns: 1fr;
  }

  .content-toolbar .sort-select {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 18px;
  }

  .header-actions {
    gap: 8px;
    justify-content: end;
  }

  .creator-link {
    display: none;
  }

  .maker-admin-preview {
    justify-self: stretch;
  }

  .admin-preview-body {
    padding: 18px;
  }

  .admin-preview-checklist div {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .admin-preview-checklist em {
    grid-column: 2;
  }

  .search-panel {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }

  .search-large {
    display: flex;
    width: 100%;
  }

  .hero-copy,
  .section,
  .listing-hero .hero-copy {
    padding: 34px 18px;
  }

  .launch-hero .hero-copy {
    padding: 38px 22px 44px;
  }

  .launch-hero h1 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .launch-hero .lead {
    margin-top: 18px;
  }

  .launch-hero .hero-actions {
    margin-top: 26px;
  }

  .hero-media,
  .listing-hero .hero-media {
    min-height: 210px;
  }

  .launch-hero .hero-media {
    min-height: 240px;
  }

  .listing-hero .hero-media {
    padding: 18px;
  }

  .listing-hero .hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .trust-row,
  .collection-grid,
  .all-category-grid,
  .project-grid,
  .compact-product-grid,
  .home-product-grid,
  .maker-grid,
  .maker-stats,
  .maker-title-row,
  .maker-list,
  .shipping-destinations,
  .landing-card-grid.three,
  .landing-card-grid.four,
  .benefit-list,
  .step-row,
  .creator-card-row,
  .structured-grid,
  .thumb-row,
  .form-grid,
  .admin-product-form,
  .admin-profile-form,
  .editor-section,
  .social-link-row,
  .newsletter form {
    grid-template-columns: 1fr;
  }

  .search-results-form {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .search-results-form .button {
    width: 100%;
  }

  .legal-hero {
    align-items: start;
    gap: 18px;
    margin-bottom: 22px;
  }

  .legal-hero h1 {
    font-size: clamp(40px, 13vw, 56px);
    margin-bottom: 14px;
  }

  .legal-panel {
    padding: 20px;
  }

  .admin-product-form .wide,
  .admin-profile-form .wide {
    grid-column: auto;
  }

  .product-page {
    padding: 24px 18px 42px;
  }

  .product-gallery {
    gap: 10px;
  }

  .main-photo img {
    aspect-ratio: 1 / .78;
    max-height: 360px;
  }

  .gallery-save {
    height: 42px;
    right: 14px;
    top: 14px;
    width: 42px;
  }

  .gallery-nav {
    font-size: 28px;
    height: 40px;
    width: 40px;
  }

  .gallery-nav.prev {
    left: 12px;
  }

  .gallery-nav.next {
    right: 12px;
  }

  .product-gallery .thumb-row {
    display: flex;
    gap: 10px;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
  }

  .product-gallery .thumb {
    flex: 0 0 72px;
    scroll-snap-align: start;
  }

  .product-gallery .thumb img {
    aspect-ratio: 1 / 1;
  }

  .maker-page {
    padding: 24px 18px 42px;
  }

  .admin-page,
  .admin-auth {
    padding: 24px 18px 42px;
  }

  .auth-step-list.compact {
    grid-template-columns: 1fr;
  }

  .admin-hero {
    align-items: start;
    flex-direction: column;
  }

  .creator-hero,
  .landing-section,
  .landing-final-cta {
    padding: 42px 18px;
  }

  .creator-hero {
    min-height: auto;
  }

  .creator-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .creator-product-preview,
  .creator-profile-preview {
    grid-template-columns: 64px 1fr;
  }

  .step-row div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0 0;
  }

  .product-list-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-product-list article {
    align-items: start;
    grid-template-columns: 54px 1fr auto;
  }

  .admin-product-list img {
    width: 54px;
  }

  .admin-product-list .status-pill {
    grid-column: 2 / 4;
    justify-self: start;
  }

  .admin-row-actions {
    grid-column: 2 / 4;
    justify-content: start;
  }

  .traffic-row {
    grid-template-columns: 1fr 64px;
  }

  .credit-ledger > div,
  .placement-grid article,
  .referral-box,
  .credit-admin-row,
  .moderation-item {
    grid-template-columns: 1fr;
  }

  .traffic-head {
    display: none;
  }

  .credit-admin-head {
    display: none;
  }

  .traffic-row span:nth-child(3),
  .traffic-row span:nth-child(4),
  .traffic-row span:nth-child(5) {
    display: none;
  }

  .maker-hero-media {
    aspect-ratio: 3 / 2;
    height: auto;
    min-height: 0;
  }

  .maker-hero-copy {
    padding: 22px 18px;
  }

  .maker-title-row img {
    width: 64px;
  }

  .maker-main .project-grid {
    grid-template-columns: 1fr;
  }

  .shipping-custom-row {
    grid-template-columns: 1fr;
  }

  .section-head,
  .reviews-head,
  .content-toolbar,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    align-items: start;
    flex-direction: column;
  }

  .cookie-card {
    grid-template-columns: 1fr;
    gap: 9px;
    max-height: min(78vh, 520px);
    overflow: auto;
    padding: 10px;
  }

  .cookie-consent {
    bottom: 8px;
    left: 8px;
    right: 8px;
  }

  .cookie-actions {
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .cookie-actions .button {
    min-height: 34px;
    padding: 8px 10px;
    width: 100%;
  }

  .cookie-actions .text-button {
    grid-column: 1 / -1;
  }

  .cookie-options {
    padding-top: 7px;
  }

  .cookie-option {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px;
  }

  .cookie-option-actions {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr auto;
  }

  .cookie-copy h2 {
    font-size: 15px;
  }

  .cookie-copy p:last-child {
    font-size: 11px;
    line-height: 1.3;
  }

  .admin-product-studio.list-mode .admin-section-head {
    align-items: stretch;
    gap: 12px;
  }

  .admin-product-studio.list-mode .admin-section-head .button {
    width: 100%;
  }

  .product-list-summary {
    gap: 8px;
  }

  .product-list-summary div {
    padding: 10px;
  }

  .product-list-summary strong {
    font-size: 20px;
  }

  .admin-product-list article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .admin-product-list img {
    width: 48px;
  }

  .admin-product-list .status-pill,
  .admin-row-actions {
    grid-column: 2;
  }
}
