:root {
  --bg: #efe7d4;
  --bg-deep: #e5dac0;
  --paper: rgba(255, 251, 244, 0.92);
  --paper-strong: #fffaf1;
  --ink: #182015;
  --muted: #5d6557;
  --line: rgba(24, 32, 21, 0.11);
  --olive: #2f4734;
  --olive-deep: #1f3023;
  --orange: #cb6b2f;
  --orange-deep: #954117;
  --gold: #b5914e;
  --ready: #2a7b51;
  --preorder: #b55b2d;
  --shadow: 0 24px 60px rgba(74, 51, 24, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(203, 107, 47, 0.12), transparent 24%),
    radial-gradient(circle at right 15%, rgba(47, 71, 52, 0.1), transparent 20%),
    linear-gradient(180deg, #f5efdf 0%, var(--bg) 46%, var(--bg-deep) 100%);
}

body.is-modal-open {
  overflow: hidden;
}

body::before {
  display: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(calc(100% - 20px), var(--max-width));
  margin: 0 auto;
  padding: 12px 0 44px;
}

[id] {
  scroll-margin-top: 92px;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 249, 240, 0.96);
  box-shadow: 0 10px 24px rgba(71, 51, 27, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand-sticker {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 18px rgba(25, 33, 20, 0.12));
}

.brand-sticker-main {
  width: 58px;
  height: 58px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}

.site-nav {
  display: none;
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(47, 71, 52, 0.12);
  color: var(--olive);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 2px solid rgba(203, 107, 47, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
  opacity: 0;
  transform: scale(0.94);
}

.header-cta.is-cart-highlight {
  transform: translateY(-1px);
  border-color: rgba(203, 107, 47, 0.2);
  box-shadow: 0 18px 30px rgba(74, 51, 24, 0.12);
}

.header-cta.is-cart-highlight::after {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(203, 107, 47, 0.38);
}

.header-cta-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #fff8ef;
  font-size: 0.8rem;
  transform-origin: center;
}

.header-cta-count.is-cart-bump {
  animation: cartBadgeBump 520ms ease;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--olive);
}

.site-header.is-open {
  flex-wrap: wrap;
  border-radius: 28px;
}

.site-header.is-open .site-nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
  color: var(--muted);
}

.section {
  position: relative;
  margin: 16px 0;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  contain: layout paint;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 145, 78, 0.24), transparent 70%);
}

.hero-search-panel,
.hero-market {
  position: relative;
  z-index: 1;
}

.hero-search-panel {
  display: grid;
  gap: 10px;
  align-content: start;
}

.hero-banner-wrap {
  position: relative;
  z-index: 1;
}

.hero-search-panel h1,
.section-heading h2,
.hero-market-head h2,
.store-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-search-panel h1 {
  max-width: 11ch;
  font-size: clamp(1.74rem, 4.6vw, 2.72rem);
}

.hero-lead,
.section-note,
.marketplace-card span,
.cart-empty p,
.empty-state p,
.store-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 40ch;
  margin-top: 10px;
  font-size: 0.92rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 71, 52, 0.08);
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-search,
.toolbar-main,
.results-head,
.cart-layout,
.marketplace-layout {
  display: grid;
  gap: 12px;
}

.cart-layout {
  align-items: start;
}

.hero-search {
  margin-top: 14px;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(47, 71, 52, 0.14);
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.94);
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.search-field input:focus {
  border-color: rgba(203, 107, 47, 0.7);
  box-shadow: 0 0 0 4px rgba(203, 107, 47, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.is-disabled,
.button:disabled {
  opacity: 0.6;
  pointer-events: none;
  box-shadow: none;
}

.button.is-loading {
  cursor: progress;
}

.button-primary {
  background: linear-gradient(145deg, var(--olive), var(--olive-deep));
  color: #fdf8ef;
  box-shadow: 0 16px 30px rgba(47, 71, 52, 0.22);
}

.button-secondary {
  background: rgba(255, 252, 246, 0.88);
  border-color: rgba(47, 71, 52, 0.12);
  color: var(--olive);
}

.hero-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.hero-suggestions-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.quick-search {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(47, 71, 52, 0.11);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.8);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-banner-card {
  position: relative;
  overflow: hidden;
  padding: 10px 12px;
  border: 1px solid rgba(47, 71, 52, 0.12);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background: linear-gradient(180deg, #251c18, #171211);
}

.hero-banner-card::after {
  display: none;
}

.hero-banner-image {
  width: 100%;
  aspect-ratio: 32481 / 6144;
  max-height: 188px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-stats article,
.strip article {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 71, 52, 0.1);
  background: rgba(255, 252, 246, 0.86);
}

.hero-stats strong,
.strip strong,
.results-head strong,
.cart-empty strong,
.empty-state strong {
  display: block;
}

.hero-stats strong {
  font-size: 1.08rem;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
}

.hero-market,
.store-card,
.cart-summary-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
}

.hero-market {
  background: linear-gradient(145deg, var(--olive), var(--olive-deep));
  color: #f9f3e8;
  align-content: start;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.hero-market-head {
  display: grid;
  gap: 10px;
}

.mini-tag,
.catalog-pill,
.product-status,
.cart-item-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-tag::before,
.catalog-pill::before,
.product-status::before,
.cart-item-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hero-market-head h2 {
  margin-top: 10px;
  font-size: clamp(1.08rem, 2vw, 1.46rem);
}

.hero-market-meta {
  margin: 0;
  color: rgba(249, 243, 232, 0.78);
}

.hero-market-meta strong {
  color: #fff8ef;
}

.hero-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.hero-sticker-row,
.store-sticker-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.compact-sticker {
  width: 100%;
  height: 96px;
  padding: 10px;
  border-radius: 18px;
  object-fit: contain;
}

.hero-sticker-row .compact-sticker {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 244, 227, 0.1);
}

.store-sticker-row .compact-sticker {
  background: rgba(47, 71, 52, 0.05);
  border: 1px solid rgba(47, 71, 52, 0.08);
}

.compact-sticker-main {
  padding: 8px;
}

.hero-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 244, 227, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.hero-product-card:hover,
.hero-product-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 244, 227, 0.2);
}

.hero-product-card.is-adding,
.product-card-button.is-adding {
  cursor: wait;
}

.hero-product-card.is-added,
.product-card-button.is-added {
  box-shadow: inset 0 0 0 1px rgba(42, 123, 81, 0.22);
}

.hero-product-card[data-feedback]::after,
.product-card-button[data-feedback]::after {
  content: attr(data-feedback);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.95);
  border: 1px solid rgba(42, 123, 81, 0.14);
  color: var(--ready);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(24, 32, 21, 0.12);
}

.hero-product-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-copy {
  display: grid;
  gap: 6px;
}

.hero-product-copy span {
  color: #d8bf82;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product-copy strong {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-product-price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-product-price-row b {
  font-size: 0.82rem;
  color: #fff8ef;
}

.hero-product-price-row small {
  color: rgba(249, 243, 232, 0.78);
  font-size: 0.72rem;
}

.spotlight-banner {
  overflow: hidden;
}

.spotlight-banner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.spotlight-banner-head p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.spotlight-banner-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 10px;
}

.spotlight-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 160px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: rgba(47, 71, 52, 0.1);
  color: #fff8ef;
  text-align: left;
}

.spotlight-card-1 {
  grid-row: span 2;
  min-height: 330px;
}

.spotlight-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(18, 24, 17, 0.76) 100%);
}

.spotlight-card-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.spotlight-card-copy span,
.spotlight-card-copy small {
  margin: 0;
  color: rgba(255, 248, 239, 0.82);
}

.spotlight-card-copy span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-card-copy strong {
  display: -webkit-box;
  max-width: 24ch;
  overflow: hidden;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.24;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.spotlight-card-copy small {
  font-size: 0.86rem;
  font-weight: 700;
}

.strip {
  display: grid;
  gap: 14px;
}

.strip p {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.strip strong {
  line-height: 1.55;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(1.36rem, 4vw, 2.18rem);
}

.section-note {
  max-width: 34ch;
}

.catalog-heading,
.marketplace-heading {
  gap: 18px;
}

.catalog-meta {
  display: grid;
  gap: 8px;
}

.catalog-pill {
  color: var(--orange-deep);
}

.catalog-meta strong {
  font-size: 1rem;
}

.catalog-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(47, 71, 52, 0.08);
}

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

.search-field-wide input {
  min-height: 52px;
}

.results-head {
  align-items: start;
  padding-top: 8px;
  border-top: 1px solid rgba(47, 71, 52, 0.08);
}

.results-head p,
#visible-count {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.product-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(47, 71, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 238, 222, 0.9));
}

.product-card.is-out {
  opacity: 0.78;
}

.product-card-button {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.product-card-button.is-disabled {
  cursor: not-allowed;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(47, 71, 52, 0.06);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 8px 0;
}

.product-status {
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
}

.product-status.ready {
  color: var(--ready);
  background: rgba(42, 123, 81, 0.08);
}

.product-status.out {
  color: var(--preorder);
  background: rgba(181, 91, 45, 0.1);
}

.product-stock {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.product-info {
  display: grid;
  gap: 6px;
  padding: 10px 8px 12px;
}

.product-title {
  margin: 0;
  min-height: 2.7em;
  overflow: hidden;
  font-size: 0.76rem;
  line-height: 1.34;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-title-tag {
  color: var(--preorder);
  font-weight: 800;
}

.price-stack strong {
  display: block;
  font-size: 0.82rem;
  color: var(--olive-deep);
}

.empty-state,
.loading-note {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.65);
}

.empty-state {
  border: 1px dashed rgba(47, 71, 52, 0.24);
}

.loading-note {
  grid-column: 1 / -1;
  border: 1px solid rgba(47, 71, 52, 0.1);
  color: var(--muted);
  text-align: center;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.cart-list {
  display: grid;
  gap: 10px;
}

.cart-empty,
.cart-item {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(47, 71, 52, 0.1);
  background: rgba(255, 252, 246, 0.84);
}

.cart-summary-card {
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(47, 71, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 238, 222, 0.92));
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary-row span,
.cart-summary-note {
  color: var(--muted);
}

.cart-summary-row strong {
  font-size: 1.12rem;
}

.cart-summary-note {
  margin: 2px 0 0;
  line-height: 1.55;
  font-size: 0.9rem;
}

.cart-summary-card .button {
  align-self: start;
}

.checkout-link.is-disabled,
.checkout-link:disabled {
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.checkout-field {
  display: grid;
  gap: 7px;
}

.checkout-field span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 71, 52, 0.14);
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.94);
  color: var(--ink);
  resize: vertical;
  outline: none;
}

.checkout-field textarea {
  min-height: 90px;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: rgba(203, 107, 47, 0.7);
  box-shadow: 0 0 0 4px rgba(203, 107, 47, 0.12);
}

.shipping-origin-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(47, 71, 52, 0.1);
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.82);
}

.shipping-origin-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.shipping-origin-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(24, 32, 21, 0.1));
}

.shipping-origin-head strong {
  display: block;
  font-size: 0.94rem;
}

.shipping-origin-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.shipping-origin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 71, 52, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-feedback {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.checkout-feedback.is-error {
  color: var(--preorder);
  font-weight: 700;
}

.checkout-feedback.is-success {
  color: var(--ready);
  font-weight: 700;
}

.cart-fly-item {
  position: fixed;
  left: var(--cart-fly-start-left);
  top: var(--cart-fly-start-top);
  width: var(--cart-fly-size);
  height: var(--cart-fly-size);
  z-index: 70;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(47, 71, 52, 0.12);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 20px 36px rgba(24, 32, 21, 0.18);
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  transition:
    transform 640ms cubic-bezier(0.22, 0.8, 0.26, 1),
    opacity 640ms ease,
    filter 640ms ease;
}

.cart-fly-item.is-moving {
  transform: translate3d(var(--cart-fly-x), var(--cart-fly-y), 0) scale(0.26);
  opacity: 0.12;
  filter: blur(1px);
}

.cart-fly-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-fly-item span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--olive);
  font-size: 1.35rem;
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.cart-item-thumb {
  width: 66px;
  height: 66px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(47, 71, 52, 0.08);
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-body,
.cart-item-main,
.cart-item-top {
  display: grid;
  gap: 6px;
}

.cart-item-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.cart-item-badge {
  color: #2b8d5b;
}

.cart-item-title {
  display: block;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.36;
}

.cart-item-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-item-pricebox {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.cart-item-unit-price {
  color: var(--muted);
  font-size: 0.74rem;
}

.cart-item-subtotal {
  color: var(--olive-deep);
  font-size: 0.96rem;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 34px minmax(34px, auto) 34px;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(47, 71, 52, 0.08);
}

.cart-qty button,
.cart-qty span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
}

.cart-qty button {
  border: 0;
  background: transparent;
  color: var(--olive-deep);
  font-weight: 800;
}

.cart-qty button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cart-qty span {
  min-width: 38px;
  font-weight: 700;
}

.cart-remove {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(177, 74, 57, 0.12);
  border-radius: 999px;
  background: rgba(255, 244, 241, 0.82);
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.marketplace-layout {
  gap: 14px;
}

.marketplace-layout-compact {
  align-items: start;
}

.marketplace-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.store-card {
  border: 1px solid rgba(47, 71, 52, 0.1);
}

.store-card-soft {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 238, 222, 0.92));
  color: var(--ink);
}

.store-card-soft::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 145, 78, 0.18), transparent 70%);
}

.store-card-soft > * {
  position: relative;
  z-index: 1;
}

.store-card h3 {
  font-size: 1.22rem;
  color: inherit;
}

.store-card p {
  color: var(--muted);
}

.store-sticker-row {
  margin-bottom: 8px;
}

.mini-tag.has-sticker {
  gap: 10px;
  padding-right: 12px;
}

.mini-tag.has-sticker::before {
  display: none;
}

.mini-tag-sticker {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.store-full-address {
  max-width: 54ch;
  font-size: 0.95rem;
}

.store-origin-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(47, 71, 52, 0.06);
  border: 1px solid rgba(47, 71, 52, 0.08);
}

.store-origin-note strong {
  font-size: 0.92rem;
  color: var(--olive-deep);
}

.store-links {
  display: grid;
  gap: 10px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(47, 71, 52, 0.06);
  border: 1px solid rgba(47, 71, 52, 0.12);
  color: var(--olive);
  font-weight: 700;
}

.marketplace-list {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(47, 71, 52, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 238, 222, 0.9));
}

.marketplace-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(47, 71, 52, 0.1);
  background: rgba(255, 252, 246, 0.9);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.marketplace-row:hover,
.marketplace-row:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(74, 51, 24, 0.08);
}

.marketplace-row img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.marketplace-row-copy {
  display: grid;
  gap: 2px;
}

.marketplace-row-copy strong {
  font-size: 0.92rem;
}

.marketplace-row-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.marketplace-row-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 71, 52, 0.08);
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
}

.marketplace-sticker-deck {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(47, 71, 52, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(203, 107, 47, 0.14), transparent 32%),
    linear-gradient(160deg, rgba(47, 71, 52, 0.08), rgba(255, 252, 246, 0.74));
}

.deck-sticker {
  display: block;
  width: 110px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(24, 32, 21, 0.12));
}

.deck-sticker-main {
  width: 138px;
}

.deck-sticker-1 {
  width: 150px;
}

.deck-sticker-2,
.deck-sticker-3 {
  width: 92px;
}

.compact-heading h2 {
  max-width: 14ch;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 6px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  color: var(--olive);
  font-weight: 800;
}

.order-success-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.order-success-modal:not(.is-visible) {
  pointer-events: none;
}

.order-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 32, 21, 0.36);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.order-success-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(480px, calc(100% - 12px));
  padding: 22px;
  border: 1px solid rgba(47, 71, 52, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(42, 123, 81, 0.12), transparent 34%),
    rgba(255, 251, 244, 0.98);
  box-shadow: 0 28px 60px rgba(24, 32, 21, 0.22);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.order-success-modal.is-visible .order-success-backdrop {
  opacity: 1;
}

.order-success-modal.is-visible .order-success-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.order-success-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(42, 123, 81, 0.1);
  color: var(--ready);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-success-dialog h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.52rem, 4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.order-success-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.order-success-grid {
  display: grid;
  gap: 10px;
}

.order-success-metric {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(47, 71, 52, 0.08);
  background: rgba(47, 71, 52, 0.05);
}

.order-success-metric span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.order-success-metric strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.order-success-metric-id strong {
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.order-success-actions {
  display: grid;
  gap: 10px;
}

.is-checkout-submitting .hero-product-card,
.is-checkout-submitting .product-card-button {
  pointer-events: none;
  opacity: 0.82;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.js-enabled .reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 700px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    border-radius: 999px;
  }

  .section {
    padding: 24px;
  }

  .catalog-meta {
    justify-items: end;
  }

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

  .order-success-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-banner-image {
    max-height: 196px;
  }

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

@media (min-width: 960px) {
  .page-shell {
    width: min(calc(100% - 36px), var(--max-width));
    padding-top: 18px;
  }

  .site-header {
    gap: 20px;
    padding: 14px 18px;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 0.96rem;
  }

  .site-nav a {
    position: relative;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    transform: scaleX(1);
  }

  .header-cta {
    min-height: 46px;
    padding: 0 16px;
    background: linear-gradient(145deg, var(--orange), var(--orange-deep));
    color: #fff8ef;
  }

  .header-cta-count {
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1.04fr);
  }

  .marketplace-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.86fr);
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  }

  .hero {
    gap: 20px;
    padding: 26px;
    align-items: start;
  }

  .hero-banner-wrap {
    grid-column: 1 / -1;
    margin: 0 -26px -20px;
  }

  .hero-market {
    min-height: 470px;
  }

  .hero-search {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .hero-suggestions {
    align-items: center;
  }

  .hero-search .button,
  .toolbar-main .button {
    width: auto;
  }

  .hero-market-head,
  .catalog-heading,
  .marketplace-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .toolbar-main {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: end;
  }

  .results-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cart-summary-card {
    position: sticky;
    top: 98px;
    max-height: calc(100vh - 126px);
    overflow: auto;
  }

  .cart-list {
    max-height: min(74vh, 820px);
    overflow: auto;
    padding-right: 4px;
  }

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

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-meta {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
}

@media (min-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

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

  .brand {
    max-width: 168px;
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-sticker {
    width: 42px;
    height: 42px;
  }

  .brand-sticker-main {
    width: 48px;
    height: 48px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    min-height: 40px;
    padding: 0 12px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .hero-featured-grid,
  .product-grid {
    gap: 8px;
  }

  .hero-sticker-row,
  .store-sticker-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .compact-sticker {
    height: 78px;
    padding: 6px;
  }

  .marketplace-row {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .marketplace-row-tag {
    display: none;
  }

  .marketplace-sticker-deck {
    gap: 10px;
    padding: 14px;
  }

  .deck-sticker-main {
    width: 110px;
  }

  .deck-sticker-1 {
    width: 118px;
  }

  .deck-sticker-2,
  .deck-sticker-3 {
    width: 76px;
  }

  .cart-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .cart-item-top {
    grid-template-columns: 1fr;
  }

  .cart-item-pricebox {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }

  .cart-fly-item,
  .order-success-backdrop,
  .order-success-dialog,
  .header-cta,
  .header-cta::after,
  .header-cta-count {
    transition: none !important;
  }
}

@keyframes cartBadgeBump {
  0% {
    transform: scale(1);
  }

  38% {
    transform: scale(1.22);
  }

  100% {
    transform: scale(1);
  }
}
