:root {
  color-scheme: light;
  --ink: #0b1020;
  --ink-soft: #182038;
  --paper: #f3ecde;
  --paper-2: #e8decc;
  --white: #fffdf8;
  --muted: #69675f;
  --line: #d5cbbb;
  --red: #ee5a3f;
  --red-dark: #8c2b1c;
  --lime: #c9ef70;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.demo-bar {
  min-height: 2.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  padding: .35rem 1rem;
  background: var(--lime);
  color: var(--ink);
  font-size: .75rem;
}

.demo-bar span {
  padding: .1rem .45rem;
  background: var(--ink);
  color: var(--lime);
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.demo-bar p { margin: 0; }

.shipping-bar {
  min-height: 2.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  padding: .45rem 1rem;
  background: var(--red);
  color: #1e0d08;
  font-size: .78rem;
  font-weight: 760;
}

.shipping-bar svg,
.cart-trigger svg,
.search-field svg,
.icon-button svg,
.add-button svg,
.checkout-note svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 5.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  background: rgba(243, 236, 222, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: .75rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand small {
  margin-left: .4rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  width: 1.6rem;
  height: 1.35rem;
  align-items: flex-end;
  justify-content: center;
}

.brand-mark i {
  display: block;
  width: .46rem;
  border: 1px solid currentColor;
  border-bottom: 0;
  transform: skewY(-11deg);
}

.brand-mark i:nth-child(1) { height: 1rem; }
.brand-mark i:nth-child(2) { height: 1.25rem; border-left: 0; }
.brand-mark i:nth-child(3) { height: .85rem; border-left: 0; }

.desktop-nav {
  display: flex;
  gap: clamp(1.3rem, 3vw, 3rem);
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: .6rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.cart-trigger {
  justify-self: end;
  min-height: 2.8rem;
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  padding: 0 .45rem 0 .85rem;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 780;
}

.cart-trigger strong {
  min-width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: .72rem;
}

.hero {
  position: relative;
  min-height: 32rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, .95fr);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 7rem) 4vw clamp(3.5rem, 6vw, 6rem) 7vw;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .73rem;
  font-weight: 820;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1,
.shop-heading h2,
.principles h2,
.delivery h2,
.cart-header h2,
.notice-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .97;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
}

.hero h1 em,
.principles h2 em {
  color: var(--lime);
  font-weight: 400;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.6rem 0 0;
  color: rgba(243,236,222,.72);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.hero-actions {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-actions > span {
  color: rgba(243,236,222,.58);
  font-size: .78rem;
}

.hero-actions > span strong { color: var(--paper); }

.button {
  min-height: 3.15rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.3rem;
  border: 0;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 820;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary { background: var(--red); color: #180c08; }
.button--primary:hover { background: var(--lime); }
.button--dark { background: var(--ink); color: var(--paper); }

.hero-photo {
  min-height: 100%;
  background:
    linear-gradient(90deg, var(--ink) 0%, transparent 25%),
    linear-gradient(0deg, rgba(11,16,32,.62), transparent 50%),
    url("/publique/book-hero.png") center / cover;
}

.hero-note {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  width: min(21rem, 38vw);
  margin: 0;
  color: rgba(243,236,222,.66);
  font-family: var(--serif);
  font-size: .93rem;
  font-style: italic;
  text-align: right;
}

.shop,
.principles,
.delivery {
  padding: clamp(4.5rem, 8vw, 8rem) 7vw;
}

.shop { background: var(--paper); }

.shop-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.shop-heading .eyebrow { margin-bottom: .75rem; }
.shop-heading h2 { font-size: clamp(2.65rem, 4.8vw, 5.2rem); }

.shop-heading > p {
  margin: 0 0 .5rem;
  color: var(--muted);
  font-size: .84rem;
}

.shop-heading > p strong { color: var(--ink); }

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(13rem, .75fr) minmax(25rem, 1.5fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.58);
}

.search-field {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 0 .85rem;
  border-bottom: 1px solid var(--ink);
}

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

.search-field input::placeholder { color: #858177; }

.filters {
  display: flex;
  gap: .35rem;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar { display: none; }

.filter {
  min-height: 2.45rem;
  flex: 0 0 auto;
  padding: 0 .85rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
}

.filter:hover,
.filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.sort-field {
  display: flex;
  gap: .6rem;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
}

.sort-field select {
  min-height: 2.45rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 2rem 0 .7rem;
  cursor: pointer;
}

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

.product-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-.3rem);
  box-shadow: 0 1.2rem 2.2rem rgba(11,16,32,.1);
}

.product-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.23;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--product-color, var(--paper-2));
  cursor: pointer;
}

.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card:nth-child(2n) .product-visual { --product-color: #d9dfd1; }
.product-card:nth-child(3n) .product-visual { --product-color: #d9dce6; }
.product-card:nth-child(4n) .product-visual { --product-color: #e5d5cb; }

.demo-label,
.stock-badge {
  position: absolute;
  z-index: 1;
  top: .8rem;
  padding: .28rem .48rem;
  font-size: .65rem;
  font-weight: 830;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.demo-label {
  left: .8rem;
  background: var(--red);
  color: #210d08;
}

.stock-badge {
  right: .8rem;
  background: var(--ink);
  color: var(--paper);
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
  color: rgba(11,16,32,.48);
  font-size: .74rem;
  font-weight: 750;
}

.photo-placeholder svg {
  width: 2.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.product-body { padding: 1.25rem; }

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin: 0 0 .85rem;
  color: var(--red-dark);
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-meta span:last-child { color: var(--muted); }

.product-body h3 {
  min-height: 2.45em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.product-author {
  margin: .45rem 0 1.3rem;
  color: var(--muted);
  font-size: .82rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-footer > strong {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.add-button {
  min-height: 2.5rem;
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  padding: 0 .8rem;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 800;
}

.add-button:hover,
.add-button.is-added {
  background: var(--ink);
  color: var(--paper);
}

.add-button:disabled {
  cursor: default;
  opacity: .72;
}

.empty-state {
  min-height: 22rem;
  place-items: center;
  align-content: center;
  padding: 3rem;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state:not([hidden]) { display: grid; }
.empty-state > span { color: var(--red); font-size: 2.8rem; }
.empty-state h3 { margin: .7rem 0 .2rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.empty-state p { margin: 0 0 1rem; color: var(--muted); }

.text-button {
  padding: .35rem 0;
  border: 0;
  border-bottom: 1px solid;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.principles {
  display: grid;
  grid-template-columns: minmax(18rem, .8fr) 1.2fr;
  gap: 8vw;
  background: var(--ink-soft);
  color: var(--paper);
}

.principles h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.principle-list { border-top: 1px solid rgba(243,236,222,.2); }

.principle-list article {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 1.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(243,236,222,.2);
}

.principle-list article > span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 830;
}

.principle-list h3 {
  margin: 0 0 .45rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.principle-list p {
  max-width: 34rem;
  margin: 0;
  color: rgba(243,236,222,.65);
  font-size: .9rem;
}

.delivery {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  align-items: center;
  background: var(--red);
  color: #1d0c08;
}

.delivery-visual {
  min-height: 24rem;
  display: grid;
  align-content: center;
  padding: 2rem;
  border: 1px solid rgba(29,12,8,.55);
  background: linear-gradient(135deg, rgba(255,255,255,.11), transparent);
}

.delivery-visual span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 14rem);
  letter-spacing: -.08em;
  line-height: .72;
}

.delivery-visual p {
  margin: 2rem 0 0;
  font-size: .75rem;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.delivery .eyebrow { color: #5f1d12; }
.delivery h2 { font-size: clamp(2.7rem, 5vw, 5.3rem); }
.delivery-copy > p:not(.eyebrow) { max-width: 39rem; }

.delivery dl { margin: 2.3rem 0 0; border-top: 1px solid rgba(29,12,8,.4); }
.delivery dl div { display: flex; justify-content: space-between; gap: 2rem; padding: .9rem 0; border-bottom: 1px solid rgba(29,12,8,.4); }
.delivery dt { font-size: .78rem; font-weight: 800; }
.delivery dd { margin: 0; font-family: var(--serif); font-size: 1rem; }

.site-footer {
  min-height: 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 7vw;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(243,236,222,.15);
}

.brand--footer { color: var(--paper); }
.site-footer p { margin: 0; color: rgba(243,236,222,.58); font-size: .82rem; text-align: center; }
.footer-links { display: flex; gap: 1.5rem; font-size: .75rem; font-weight: 760; flex-wrap: wrap; }
.footer-staff-link { opacity: .55; font-weight: 500; }
.footer-staff-link:hover { opacity: 1; }

.overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(11,16,32,.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 200ms ease;
}

.overlay.is-visible { opacity: 1; }

.cart-drawer {
  position: fixed;
  z-index: 50;
  inset: 0 0 0 auto;
  width: min(31rem, 100%);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  box-shadow: -1.5rem 0 3rem rgba(11,16,32,.23);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), visibility 260ms;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.cart-header .eyebrow { margin-bottom: .35rem; }
.cart-header h2 { font-size: 2.35rem; }
.cart-header h2 span { color: var(--muted); font-family: var(--sans); font-size: .78rem; letter-spacing: 0; }

.icon-button {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.shipping-progress {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.shipping-progress p { margin: 0 0 .55rem; color: var(--muted); font-size: .76rem; }
.shipping-progress > div { height: .28rem; overflow: hidden; background: var(--paper-2); }
.shipping-progress > div span { display: block; width: 0; height: 100%; background: var(--red); transition: width 280ms ease; }

.cart-items { overflow-y: auto; }

.cart-item {
  display: grid;
  grid-template-columns: 3.7rem 1fr auto;
  gap: .9rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-visual {
  aspect-ratio: .78;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.cart-item h3 { margin: 0; font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.cart-item p { margin: .2rem 0 0; color: var(--muted); font-size: .7rem; }
.cart-item-price { text-align: right; }
.cart-item-price strong { display: block; font-family: var(--serif); font-size: 1rem; }
.remove-item { padding: .2rem 0; border: 0; border-bottom: 1px solid; background: transparent; color: var(--muted); cursor: pointer; font-size: .65rem; }

.cart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 3rem 1rem;
  text-align: center;
}

.empty-book {
  width: 4rem;
  height: 3.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 50% 50% 0 0;
}

.cart-empty h3 { margin: 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.cart-empty p { margin: .45rem 0 1.4rem; color: var(--muted); font-size: .82rem; }

.cart-summary {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .55rem;
  color: var(--muted);
  font-size: .8rem;
}

.cart-summary > div strong { color: var(--ink); }
.cart-summary .cart-total { margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: 1.25rem; }
.button--checkout { width: 100%; margin-top: .8rem; background: var(--red); color: #1d0c08; }
.button--checkout:hover { background: var(--lime); }

.checkout-note {
  display: flex;
  justify-content: center;
  gap: .4rem;
  align-items: center;
  margin: .7rem 0 0;
  color: var(--muted);
  font-size: .68rem;
}

.notice-dialog {
  width: min(31rem, calc(100% - 2rem));
  padding: 2.2rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 2rem 5rem rgba(11,16,32,.35);
}

.notice-dialog::backdrop { background: rgba(11,16,32,.76); backdrop-filter: blur(5px); }
.notice-dialog > .icon-button { position: absolute; right: 1rem; top: 1rem; }
.dialog-icon { width: 3.4rem; height: 3.4rem; display: grid; place-items: center; margin-bottom: 2rem; background: var(--red); font-family: var(--serif); font-size: 1.6rem; }
.notice-dialog .eyebrow { margin-bottom: .55rem; }
.notice-dialog h2 { font-size: 2.35rem; }
.notice-dialog > p:not(.eyebrow) { color: var(--muted); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

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

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-toolbar { grid-template-columns: 1fr auto; }
  .filters { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
  .demo-bar { display: block; padding: .45rem 1rem; text-align: center; }
  .demo-bar span { display: inline-block; }
  .demo-bar p { display: inline; margin-left: .35rem; }
  .shipping-bar { font-size: .7rem; }
  .site-header { min-height: 4.5rem; padding: 0 1rem; }
  .brand small { display: none; }
  .cart-trigger span { display: none; }

  .hero {
    min-height: 40rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 31rem;
    padding: 4.5rem 1.25rem 3rem;
  }

  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .hero-photo { position: absolute; inset: 0; z-index: 0; opacity: .42; background-position: 65% center; }
  .hero::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(11,16,32,.95), rgba(11,16,32,.36)), linear-gradient(0deg, var(--ink), transparent 65%); pointer-events: none; }
  .hero-note { z-index: 2; right: 1.25rem; bottom: 1rem; width: 60vw; font-size: .75rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: .8rem; }

  .shop,
  .principles,
  .delivery { padding: 4.5rem 1.25rem; }

  .shop-heading { display: block; }
  .shop-heading > p { margin-top: 1rem; }
  .shop-toolbar { grid-template-columns: 1fr; }
  .filters { grid-column: auto; grid-row: auto; margin-right: -1rem; }
  .sort-field { justify-content: space-between; }

  .product-grid { grid-template-columns: 1fr; }
  .product-visual { aspect-ratio: 1.45; }

  .principles,
  .delivery { grid-template-columns: 1fr; gap: 3rem; }
  .delivery-visual { min-height: 17rem; }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 3.5rem 1.25rem;
  }

  .site-footer p { text-align: left; }
}

@media (max-width: 420px) {
  .brand { font-size: .95rem; }
  .hero h1 { font-size: 3.15rem; }
  .cart-drawer { padding: 1.15rem; }
  .product-meta { flex-direction: column; gap: .25rem; }
}
