:root {
  --paper: #fffdf8;
  --paper-2: #f8f2e5;
  --paper-3: #f1e6d2;
  --ink: #17130a;
  --muted: #756b5d;
  --line: #e7dbc8;
  --gold: #c7962f;
  --gold-2: #e3bd65;
  --gold-3: #8b641b;
  --sage: #dfe8dd;
  --rose: #f5dde0;
  --danger: #a33a2d;
  --success: #2f7a4d;
  --shadow: 0 18px 60px rgba(90, 66, 26, 0.14);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(227, 189, 101, 0.18), transparent 34rem),
    linear-gradient(135deg, var(--paper), #fbf8ef 48%, var(--paper-2));
  color: var(--ink);
  font-family: "Outfit", Calibri, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 1000;
  transform: translateY(-120px);
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus-visible {
  top: 1rem;
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1280px, 100%);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem;
  border: 1px solid rgba(199, 150, 47, 0.24);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-store-index {
  display: none;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), #4d3910);
  color: var(--gold-2);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.header-link,
.filter-chip {
  border: 1px solid rgba(199, 150, 47, 0.18);
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-link:hover,
.filter-chip:hover,
.header-link.is-active,
.filter-chip.is-active {
  transform: translateY(-1px);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
}

.cart-button,
.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}

.cart-button strong {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-2);
  color: var(--ink);
}

.cart-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
}

.cart-icon svg,
.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-shell {
  width: min(1180px, calc(100% - 1.25rem));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 4.5rem 0 5rem;
  scroll-margin-top: var(--header-height);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold-3);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.drawer-header h2,
.success-card h1 {
  margin: 0;
  color: var(--ink);
  line-height: 0.98;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.85rem, 10vw, 5.25rem);
}

.hero p,
.section-heading p,
.success-card p {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(23, 19, 10, 0.18);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.66);
  color: var(--ink);
}

.button.paypal {
  background: var(--gold);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 34px 55px rgba(87, 64, 23, 0.22));
}

.hero-note {
  position: absolute;
  display: grid;
  gap: 0.1rem;
  width: max-content;
  max-width: 180px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(199, 150, 47, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.hero-note span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-note strong {
  font-size: 0.98rem;
}

.hero-note-top {
  right: 0.5rem;
  top: 6%;
}

.hero-note-bottom {
  left: 0;
  bottom: 8%;
}

.trust-strip {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
}

.trust-strip div {
  padding: 0.65rem;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 0.2rem;
  color: var(--muted);
}

.catalog-section {
  padding: 5rem 0;
  scroll-margin-top: calc(var(--header-height) - 2rem);
}

.promos-anchor {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 7vw, 4.3rem);
  max-width: 820px;
}

.catalog-tools {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.search-field {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
}

.search-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.9;
  stroke-linecap: round;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.category-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.promo-banner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.promo-banner {
  display: grid;
  gap: 0.35rem;
  min-height: 126px;
  align-content: end;
  padding: 1rem;
  border: 1px solid rgba(199, 150, 47, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(227, 189, 101, 0.28), transparent 7rem),
    linear-gradient(145deg, var(--ink), #3d2d0e);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.promo-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.promo-banner span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-banner strong {
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1;
}

.promo-banner small {
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.35;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 245px), 1fr));
  grid-auto-flow: dense;
  gap: 0.9rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(199, 150, 47, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 40px rgba(89, 69, 31, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 150, 47, 0.5);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper-2), var(--sage));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-media img[src$=".svg"] {
  object-fit: contain;
  padding: 1rem;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.stock-pill {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(23, 19, 10, 0.84);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
}

.promo-pill {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: var(--gold-2);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(45, 35, 18, 0.14);
}

.price-stack {
  display: grid;
  justify-items: end;
  gap: 0.12rem;
  line-height: 1;
}

.price-stack small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: line-through;
}

.price-stack strong {
  color: var(--gold-3);
  white-space: nowrap;
}

.detail-price {
  justify-items: start;
}

.detail-price strong {
  font-size: 1.8rem;
}

.product-content {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.product-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.7rem;
}

.product-meta h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
}

.product-meta strong {
  white-space: nowrap;
  color: var(--gold-3);
}

.product-content p {
  min-height: 3.2em;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.variant-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.variant-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.product-actions .button {
  min-height: 42px;
  padding: 0.7rem 0.8rem;
  font-size: 0.92rem;
}

.empty-state,
.cart-empty {
  display: grid;
  gap: 0.3rem;
  padding: 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.65);
  color: var(--muted);
}

.empty-state strong,
.cart-empty strong {
  color: var(--ink);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(23, 19, 10, 0.34);
  backdrop-filter: blur(6px);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.drawer.is-open {
  visibility: visible;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(100vw, 470px);
  max-width: 100vw;
  height: 100%;
  overflow-y: auto;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(45, 35, 18, 0.22);
  transform: translateX(104%);
  transition: transform 260ms ease;
  pointer-events: auto;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.cart-panel {
  width: min(100vw, 560px);
  background: linear-gradient(180deg, var(--paper), #fbf6ea);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.drawer-header h2 {
  font-size: 2.2rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
}

.product-panel {
  width: min(100vw, 720px);
}

.product-drawer {
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 2rem);
}

.product-drawer .product-panel {
  position: relative;
  right: auto;
  top: auto;
  width: min(94vw, 780px);
  height: auto;
  max-height: min(90svh, 820px);
  padding: clamp(0.8rem, 2vw, 1.2rem);
  border: 1px solid rgba(199, 150, 47, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--paper), #fbf6ea);
  box-shadow: 0 28px 90px rgba(45, 35, 18, 0.28);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
}

.product-drawer.is-open .product-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.close-product {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin-left: auto;
  z-index: 3;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.product-detail img {
  width: 100%;
  max-height: min(62svh, 440px);
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, var(--rose), transparent 11rem),
    linear-gradient(145deg, var(--paper-2), var(--sage));
}

.detail-content,
.detail-copy {
  display: grid;
  gap: 0.85rem;
}

.detail-content {
  padding-top: 2.4rem;
}

.product-detail h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.02;
}

.product-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.detail-stock,
.detail-promo {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-weight: 800;
}

.detail-stock {
  background: var(--paper-2);
  color: var(--muted);
}

.detail-promo {
  background: var(--ink);
  color: var(--gold-2);
}

.option-group {
  display: grid;
  gap: 0.55rem;
}

.option-group strong {
  font-size: 0.9rem;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  background: var(--paper-2);
  color: var(--ink);
  cursor: pointer;
}

.option-button.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 56px 42px;
  align-items: center;
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-control button {
  min-height: 42px;
  border: 0;
  background: var(--paper-2);
  cursor: pointer;
}

.quantity-control span {
  text-align: center;
  font-weight: 800;
}

.cart-lines {
  display: grid;
  gap: 0.65rem;
}

.cart-checkout-flow {
  display: grid;
  gap: 0.9rem;
}

.cart-review-footer {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.cart-review-footer .cart-total {
  min-height: 84px;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(199, 150, 47, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(248, 242, 229, 0.84));
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(89, 69, 31, 0.08);
}

.cart-review-footer .cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-review-footer .cart-total strong {
  color: var(--gold-3);
  font-size: clamp(2rem, 8vw, 3.1rem);
}

.cart-review-footer small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.checkout-step {
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid rgba(199, 150, 47, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.cart-step {
  background: rgba(255, 253, 248, 0.88);
}

.step-heading {
  display: flex;
  align-items: start;
  gap: 0.7rem;
}

.step-heading > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.78rem;
}

.step-heading strong,
.step-heading small {
  display: block;
}

.step-heading strong {
  font-size: 1rem;
}

.step-heading small {
  margin-top: 0.15rem;
  color: var(--muted);
  line-height: 1.35;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}

.cart-line img {
  width: 72px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.cart-line h3 {
  margin: 0;
  font-size: 0.95rem;
}

.cart-line p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.remove-line {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--danger);
  cursor: pointer;
}

.checkout-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.cart-total strong {
  font-size: 2rem;
}

.checkout-recap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.checkout-recap strong {
  color: var(--gold-3);
  font-size: 1.6rem;
}

.total-step {
  border-color: rgba(199, 150, 47, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(248, 242, 229, 0.86));
  color: var(--ink);
}

.total-step .cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.total-step .cart-total strong {
  color: var(--gold-3);
}

.delivery-options {
  display: grid;
  gap: 0.6rem;
}

.delivery-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.delivery-option:hover,
.delivery-option:has(input:checked) {
  border-color: rgba(199, 150, 47, 0.52);
  background: #fffaf0;
}

.delivery-option:has(input:checked) {
  transform: translateY(-1px);
}

.delivery-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.12rem;
  accent-color: var(--gold);
}

.delivery-option strong,
.delivery-option small {
  display: block;
}

.delivery-option small {
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.35;
}

.pickup-note {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(199, 150, 47, 0.24);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--gold-3);
  font-weight: 700;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 150, 47, 0.32);
  outline-offset: 2px;
}

.checkout-actions {
  display: grid;
  gap: 0.65rem;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  width: min(1180px, calc(100% - 1.25rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.romalinks {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.romalinks img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 120;
  max-width: min(92vw, 460px);
  transform: translate(-50%, 130%);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.toast:empty {
  display: none;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.success-card {
  width: min(100%, 620px);
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: clamp(1.2rem, 5vw, 3rem);
  border: 1px solid rgba(199, 150, 47, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.success-details {
  width: 100%;
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.success-details div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid .full {
    grid-column: 1 / -1;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .section-heading {
    grid-template-columns: 1fr minmax(240px, 360px);
  }

  .catalog-tools {
    grid-template-columns: minmax(260px, 370px) 1fr;
    align-items: center;
  }
}

@media (min-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    padding-top: 3rem;
  }
}

@media (min-width: 1080px) {
  .page-shell {
    width: min(1240px, calc(100% - 2rem));
  }

  .site-footer {
    width: min(1240px, calc(100% - 2rem));
  }
}

@media (max-width: 480px) {
  .drawer-panel,
  .product-panel {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
  }

  .brand small,
  .cart-button span:not(.cart-icon) {
    display: none;
  }

  .hero-note {
    position: static;
    margin-top: 0.65rem;
  }

  .hero-note-bottom {
    margin-left: auto;
  }

  .cart-line {
    grid-template-columns: 60px 1fr;
  }

  .cart-line img {
    width: 60px;
    height: 72px;
  }

  .remove-line {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .product-drawer {
    padding: 0.65rem;
    place-items: center;
  }

  .product-drawer .product-panel {
    left: auto;
    right: auto;
    width: min(100%, 560px);
    max-height: 88svh;
    padding: 0.75rem;
  }

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

  .product-detail img {
    max-height: 220px;
    aspect-ratio: 5 / 3.65;
  }

  .detail-content {
    padding-top: 0.25rem;
    gap: 0.65rem;
  }

  .detail-copy {
    gap: 0.55rem;
  }

  .product-detail h2 {
    max-width: none;
    font-size: 2rem;
  }

  .product-detail p {
    line-height: 1.45;
  }

  .option-group {
    gap: 0.38rem;
  }

  .option-button {
    min-height: 38px;
    padding: 0.45rem 0.75rem;
  }

  .product-detail .button.primary {
    min-height: 46px;
    position: sticky;
    bottom: 0.25rem;
    z-index: 2;
  }
}

/* 2026 UX redesign: stronger hierarchy, quieter luxury, better mobile rhythm. */
:root {
  --font-sans: "Outfit", Calibri, Arial, sans-serif;
  --font-display: "Bodoni Moda", Georgia, serif;
  --paper: #fffdf7;
  --paper-2: #f8f0df;
  --paper-3: #efe0c5;
  --ink: #151107;
  --muted: #706653;
  --line: #e5d5ba;
  --gold: #bd8b26;
  --gold-2: #e7c56e;
  --gold-3: #875f17;
  --sage: #dfe8dd;
  --rose: #f2dce0;
  --shadow: 0 24px 70px rgba(73, 52, 18, 0.12);
}

body {
  background:
    linear-gradient(90deg, rgba(21, 17, 7, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 17, 7, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(231, 197, 110, 0.22), transparent 34rem),
    radial-gradient(circle at 88% 26%, rgba(223, 232, 221, 0.42), transparent 28rem),
    linear-gradient(135deg, var(--paper), #fbf7ed 48%, var(--paper-2));
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  font-family: var(--font-sans);
}

.site-header {
  width: min(1360px, calc(100% - 1.5rem));
  min-height: 70px;
  margin-top: 0.55rem;
  border: 1px solid rgba(135, 95, 23, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 50px rgba(73, 52, 18, 0.1);
}

.brand-mark {
  background: #241c0b;
  color: var(--gold-2);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: 1fr;
  padding: 6.5rem 0 5.5rem;
}

.hero-copy {
  max-width: 780px;
}

.hero-label-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.hero-label-line .eyebrow {
  margin-bottom: 0;
}

.stock-signal {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(135, 95, 23, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.success-card h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin-top: 0.8rem;
  font-size: 4.8rem;
  line-height: 0.94;
}

.hero p {
  max-width: 58ch;
  font-size: 1.1rem;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 680px;
  margin-top: 1.35rem;
}

.hero-proof-grid span {
  display: grid;
  gap: 0.15rem;
  min-height: 78px;
  align-content: center;
  padding: 0.75rem;
  border: 1px solid rgba(135, 95, 23, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.74);
}

.hero-proof-grid strong,
.hero-proof-grid small {
  display: block;
}

.hero-proof-grid small {
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 6% 0;
  z-index: -1;
  border: 1px solid rgba(135, 95, 23, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.5);
  transform: rotate(-2deg);
}

.hero-note {
  border-radius: 8px;
}

.trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -1rem;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 18px 54px rgba(73, 52, 18, 0.08);
}

.trust-strip div {
  min-height: 112px;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.catalog-section {
  padding: 6rem 0 5rem;
}

.section-heading {
  margin-bottom: 1.7rem;
}

.section-heading h2 {
  font-size: 4.25rem;
}

.catalog-tools {
  position: sticky;
  top: calc(var(--header-height) + 0.85rem);
  z-index: 20;
  margin-bottom: 1rem;
  padding: 0.7rem;
  border: 1px solid rgba(135, 95, 23, 0.15);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 42px rgba(73, 52, 18, 0.1);
}

.search-field {
  min-height: 48px;
  background: rgba(248, 240, 223, 0.68);
}

.filter-chip {
  min-height: 44px;
  font-weight: 700;
}

.promo-banner-row {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(240px, 0.72fr));
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.promo-banner {
  min-height: 148px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #171107, #3b2a0b);
}

.promo-banner:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(248, 240, 223, 0.86));
  color: var(--ink);
}

.promo-banner:nth-child(2) span {
  color: var(--gold-3);
}

.promo-banner:nth-child(2) small {
  color: var(--muted);
}

.promo-banner:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(223, 232, 221, 0.92), rgba(255, 253, 247, 0.86));
  color: var(--ink);
}

.promo-banner:nth-child(3) span {
  color: #4f644d;
}

.promo-banner:nth-child(3) small {
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 1.05rem;
}

.product-card {
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 48px rgba(73, 52, 18, 0.07);
}

.product-media {
  border: 10px solid rgba(248, 240, 223, 0.72);
  border-bottom: 0;
}

.product-content {
  gap: 0.78rem;
  padding: 1.05rem 1.1rem 1.15rem;
}

.product-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-topline > span:first-child {
  color: var(--gold-3);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  max-width: 18ch;
  font-size: 1.18rem;
  line-height: 1.08;
  text-wrap: balance;
}

.product-content p {
  min-height: 0;
  font-size: 0.98rem;
}

.variant-pill {
  min-height: 32px;
  background: rgba(248, 240, 223, 0.92);
}

.product-actions {
  margin-top: 0.15rem;
}

.drawer-backdrop {
  background: rgba(21, 17, 7, 0.38);
}

.cart-panel {
  width: min(100vw, 620px);
}

.drawer-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
}

.checkout-step {
  background: rgba(255, 253, 247, 0.82);
}

.cart-line {
  grid-template-columns: 76px 1fr auto;
  background: rgba(255, 253, 247, 0.9);
}

.cart-line-main {
  display: grid;
  gap: 0.35rem;
}

.cart-line-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.cart-line-total {
  color: var(--gold-3);
  font-variant-numeric: tabular-nums;
}

.product-drawer .product-panel {
  border-radius: 8px;
}

.product-detail h2 {
  font-family: var(--font-display);
  max-width: 12ch;
}

@media (min-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 3.2rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 0.8rem);
    margin-top: 0.35rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 3.4rem;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .hero-proof-grid,
  .trust-strip,
  .promo-banner-row {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    position: static;
    border-radius: 8px;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.85rem;
  }

  .section-heading h2,
  .drawer-header h2 {
    font-size: 2.35rem;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .product-content h3 {
    max-width: none;
  }

  .cart-line {
    grid-template-columns: 64px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2026 mobile UX polish: faster buying path, compact cards, safer drawers. */
.skip-link:not(:focus):not(:focus-visible) {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  body {
    background-size: 28px 28px, 28px 28px, auto, auto, auto;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .page-shell,
  .site-footer {
    width: min(100% - 1rem, 540px);
  }

  .site-header {
    width: calc(100% - 0.7rem);
    min-height: 60px;
    padding: 0.42rem;
    gap: 0.45rem;
    border-radius: 24px;
  }

  .mobile-store-index {
    position: fixed;
    left: 50%;
    bottom: max(0.55rem, env(safe-area-inset-bottom));
    z-index: 70;
    width: min(calc(100% - 0.7rem), 540px);
    min-width: 0;
    display: flex;
    gap: 0.36rem;
    margin: 0;
    padding: 0.36rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    border: 1px solid rgba(135, 95, 23, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 247, 0.92);
    box-shadow: 0 14px 34px rgba(73, 52, 18, 0.11);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
    transform: translateX(-50%);
  }

  .mobile-store-index::-webkit-scrollbar {
    display: none;
  }

  .mobile-store-index a,
  .mobile-store-index button {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.58rem 0.74rem;
    background: transparent;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  }

  .mobile-store-index a.is-active,
  .mobile-store-index button.is-active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
  }

  .brand {
    gap: 0.48rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 1.05rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .cart-button {
    min-height: 44px;
    padding: 0.26rem 0.38rem 0.26rem 0.26rem;
  }

  .cart-icon {
    width: 36px;
    height: 36px;
  }

  .cart-button strong {
    min-width: 26px;
    height: 26px;
  }

  .hero {
    min-height: auto;
    gap: 0.95rem;
    padding: 1.55rem 0 2.1rem;
  }

  .hero-copy,
  .hero-label-line,
  .hero-actions,
  .hero-proof-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-label-line {
    gap: 0.45rem;
  }

  .stock-signal {
    min-height: 30px;
    padding: 0.32rem 0.62rem;
    font-size: 0.76rem;
  }

  .hero h1 {
    max-width: 12ch;
    margin-top: 0.55rem;
    font-size: clamp(2.28rem, 11.2vw, 3rem);
    line-height: 0.98;
  }

  .hero p,
  .section-heading p {
    margin-top: 0.8rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0.75rem 0.55rem;
    font-size: 0.92rem;
  }

  .hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.48rem;
    margin-top: 0.9rem;
    overflow: hidden;
  }

  .hero-proof-grid span {
    min-width: 0;
    min-height: 58px;
    padding: 0.62rem 0.72rem;
  }

  .hero-proof-grid strong,
  .hero-proof-grid small {
    overflow-wrap: anywhere;
  }

  .hero-visual {
    display: none;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 0.25rem;
    overflow: hidden;
  }

  .trust-strip div {
    min-width: 0;
    min-height: 72px;
    border-right: 1px solid var(--line);
    border-top: 0;
    border-bottom: 0;
    padding: 0.72rem 0.82rem;
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:last-child {
    grid-column: 1 / -1;
    min-height: 64px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .trust-strip span {
    font-size: 0.9rem;
    line-height: 1.36;
    overflow-wrap: anywhere;
  }

  .catalog-section {
    padding: 2.35rem 0 4rem;
    scroll-margin-top: calc(var(--header-height) + 18px);
  }

  .hero,
  .trust-strip,
  .promos-anchor {
    scroll-margin-top: calc(var(--header-height) + 18px);
  }

  .section-heading {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
    line-height: 0.98;
  }

  .catalog-tools {
    gap: 0.62rem;
    margin-bottom: 0.85rem;
    padding: 0.65rem;
  }

  .search-field {
    min-height: 50px;
    padding: 0 0.85rem;
  }

  .search-field input,
  .checkout-form input,
  .checkout-form textarea {
    font-size: 16px;
  }

  .category-row {
    padding: 0.05rem 0.05rem 0.28rem;
    scroll-snap-type: x proximity;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-height: 42px;
    scroll-snap-align: start;
  }

  .promo-banner-row {
    gap: 0.65rem;
  }

  .promo-banner {
    min-height: 112px;
    padding: 0.9rem;
  }

  .product-grid {
    gap: 0.72rem;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 0;
  }

  .product-media {
    height: 100%;
    min-height: 156px;
    aspect-ratio: auto;
    border: 0 !important;
  }

  .product-media img[src$=".svg"] {
    padding: 0.65rem;
  }

  .stock-pill {
    top: 0.45rem;
    left: 0.45rem;
    padding: 0.32rem 0.48rem;
    font-size: 0.66rem;
  }

  .promo-pill {
    right: 0.45rem;
    bottom: 0.45rem;
    max-width: calc(100% - 0.9rem);
    padding: 0.32rem 0.48rem;
    font-size: 0.66rem;
  }

  .product-content {
    gap: 0.46rem;
    padding: 0.75rem;
  }

  .product-topline {
    display: grid;
    justify-content: stretch;
    gap: 0.26rem;
  }

  .price-stack {
    justify-items: start;
  }

  .product-content h3 {
    max-width: none;
    font-size: 1rem;
    line-height: 1.15;
  }

  .product-content p {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .variant-row {
    max-height: 60px;
    overflow: hidden;
  }

  .variant-pill {
    min-height: 28px;
    padding: 0.28rem 0.46rem;
    font-size: 0.72rem;
  }

  .product-actions {
    gap: 0.4rem;
  }

  .product-actions .button {
    min-height: 40px;
    padding: 0.58rem 0.42rem;
    font-size: 0.84rem;
  }

  .drawer-panel {
    height: 100dvh;
    padding: 0.85rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom));
  }

  .cart-panel {
    width: 100vw;
  }

  .drawer-header {
    margin-bottom: 0.65rem;
  }

  .cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .cart-line img {
    width: 64px;
    height: 76px;
  }

  .cart-line-footer {
    align-items: center;
  }

  .checkout-actions {
    position: sticky;
    bottom: 0;
    z-index: 4;
    padding: 0.7rem 0 calc(0.2rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255, 253, 247, 0), var(--paper) 32%);
  }

  .checkout-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .toast {
    top: calc(var(--header-height) + 0.75rem);
    bottom: auto;
    border-radius: 18px;
    transform: translate(-50%, -150%);
  }

  .toast.is-visible {
    transform: translate(-50%, 0);
  }

  .product-drawer {
    place-items: end center;
    padding: 0 0.45rem;
  }

  .product-drawer .product-panel {
    width: 100%;
    max-height: 92dvh;
    border-radius: 18px 18px 0 0;
    padding: 0.75rem;
  }

  .close-product {
    top: 0.7rem;
    right: 0.7rem;
  }

  .product-detail img {
    max-height: 180px;
    aspect-ratio: 5 / 3.4;
  }

  .detail-content {
    gap: 0.58rem;
  }

  .product-detail h2 {
    font-size: 1.82rem;
  }
}

@media (max-width: 380px) {
  .product-card {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .product-media {
    min-height: 148px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* Catalog-only storefront: no hero, no marketing strip, just buying flow. */
.catalog-only {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(21, 17, 7, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 17, 7, 0.022) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper), #fbf7ee 58%, var(--paper-2));
  background-size: 34px 34px, 34px 34px, auto;
}

.catalog-only .site-header {
  top: 0.55rem;
  width: min(1040px, calc(100% - 1rem));
  min-height: 64px;
  border: 1px solid rgba(135, 95, 23, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.94);
}

.catalog-only .desktop-nav {
  display: flex;
}

.catalog-only .page-shell {
  width: min(1180px, calc(100% - 1.25rem));
  padding-top: clamp(1rem, 2.8vw, 2rem);
}

.catalog-only .catalog-section {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(1.5rem, 4vw, 3rem) 0 4.5rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.catalog-only .catalog-heading {
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.42fr);
  align-items: end;
  margin-bottom: 1rem;
}

.catalog-only .catalog-heading h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
}

.catalog-only .catalog-heading p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.catalog-only .catalog-tools {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  z-index: 30;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.58rem;
  border: 1px solid rgba(135, 95, 23, 0.15);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.93);
  box-shadow: 0 14px 38px rgba(73, 52, 18, 0.08);
  backdrop-filter: blur(16px);
}

.catalog-only .search-field {
  min-height: 48px;
  background: rgba(248, 240, 223, 0.72);
}

.catalog-only .product-grid {
  gap: 0.8rem;
}

.catalog-only .product-card {
  border-color: rgba(135, 95, 23, 0.16);
  box-shadow: none;
}

.catalog-only .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(73, 52, 18, 0.1);
}

@media (max-width: 640px) {
  .catalog-only {
    padding-bottom: 0;
    background-size: 28px 28px, 28px 28px, auto;
  }

  .catalog-only .site-header {
    top: 0.35rem;
    width: calc(100% - 0.7rem);
    min-height: 58px;
    border-radius: 22px;
  }

  .catalog-only .desktop-nav {
    display: none;
  }

  .catalog-only .page-shell {
    width: min(100% - 0.7rem, 540px);
    padding-top: 0.7rem;
  }

  .catalog-only .catalog-section {
    padding: 1rem 0 3.5rem;
    scroll-margin-top: 74px;
  }

  .catalog-only .catalog-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.52rem;
    margin-bottom: 0.8rem;
  }

  .catalog-only .catalog-heading h1 {
    max-width: none;
    font-size: clamp(2.05rem, 11vw, 2.85rem);
    line-height: 0.96;
  }

  .catalog-only .catalog-heading p {
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .catalog-only .catalog-tools {
    top: calc(var(--header-height) + 0.45rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
    padding: 0.58rem;
    border-radius: 20px;
  }

  .catalog-only .search-field {
    min-height: 46px;
  }

  .catalog-only .category-row {
    padding-bottom: 0;
  }

  .catalog-only .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .catalog-only .product-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-width: 0;
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.92);
  }

  .catalog-only .product-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.86;
    border-bottom: 1px solid rgba(135, 95, 23, 0.12) !important;
  }

  .catalog-only .product-media img[src$=".svg"] {
    padding: 0.56rem;
  }

  .catalog-only .stock-pill {
    top: 0.36rem;
    left: 0.36rem;
    max-width: calc(100% - 0.72rem);
    padding: 0.28rem 0.42rem;
    font-size: 0.58rem;
    line-height: 1;
  }

  .catalog-only .promo-pill {
    right: 0.36rem;
    bottom: 0.36rem;
    max-width: calc(100% - 0.72rem);
    padding: 0.28rem 0.42rem;
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .catalog-only .product-content {
    gap: 0.34rem;
    padding: 0.56rem;
  }

  .catalog-only .product-topline {
    gap: 0.18rem;
  }

  .catalog-only .product-topline > span {
    font-size: 0.64rem;
  }

  .catalog-only .price-stack small {
    font-size: 0.62rem;
  }

  .catalog-only .price-stack strong {
    font-size: 0.88rem;
  }

  .catalog-only .product-content h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalog-only .product-content p {
    display: none;
  }

  .catalog-only .variant-row {
    max-height: 54px;
    gap: 0.22rem;
    overflow: hidden;
  }

  .catalog-only .variant-pill {
    min-height: 22px;
    padding: 0.22rem 0.34rem;
    font-size: 0.62rem;
  }

  .catalog-only .product-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.32rem;
    margin-top: 0.1rem;
  }

  .catalog-only .product-actions .button {
    min-height: 34px;
    padding: 0.42rem 0.25rem;
    font-size: 0.72rem;
  }
}
