/* Truescents — cool stone mist · copper accent · Fraunces + Figtree */

:root {
  --bg: #d8e0e6;
  --bg-2: #c5d0d9;
  --bg-deep: #aebcc8;
  --ink: #16191c;
  --ink-soft: #2c3238;
  --muted: #5a646e;
  --line: rgba(22, 25, 28, 0.12);
  --line-strong: rgba(22, 25, 28, 0.26);
  --accent: #9a5a32;
  --accent-soft: #c48a62;
  --surface: rgba(255, 255, 255, 0.38);
  --surface-solid: #eef2f5;
  --danger: #8b2e2e;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1160px;
  --shadow-drawer: -16px 0 48px rgba(22, 25, 28, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(100% 70% at 85% -5%, rgba(154, 90, 50, 0.14), transparent 48%),
    radial-gradient(80% 55% at -5% 55%, rgba(174, 188, 200, 0.55), transparent 50%),
    linear-gradient(168deg, var(--bg) 0%, var(--bg-2) 48%, #d2dae2 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.visually-hidden {
  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: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--surface-solid);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(216, 224, 230, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(216, 224, 230, 0.9);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-optical-sizing: auto;
}

.primary-nav {
  display: none;
  gap: 1.75rem;
}

.primary-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.primary-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}

.icon-btn:hover {
  background: var(--surface);
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.cart-btn:hover {
  background: var(--surface);
  border-color: var(--ink);
}

.cart-count {
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface-solid);
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.search-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(216, 224, 230, 0.95);
}

.search-panel[hidden] {
  display: none;
}

.search-panel input {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  outline: none;
  font-size: 1.05rem;
}

.search-results {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.75rem;
}

.search-hit {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s var(--ease);
}

.search-hit:hover,
.search-hit:focus {
  background: var(--surface);
  outline: none;
}

.search-hit img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.search-hit strong {
  display: block;
  font-weight: 600;
}

.search-hit span {
  color: var(--muted);
  font-size: 0.85rem;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 70;
  display: grid;
  align-content: start;
  gap: 0.25rem;
  padding: 1.5rem 1.5rem 2rem;
  background: rgba(216, 224, 230, 0.97);
  backdrop-filter: blur(12px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
  opacity: 0;
  transform: translateY(12px);
  animation: rise-in 0.45s var(--ease) forwards;
}

.mobile-nav a:nth-child(2) { animation-delay: 0.06s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.12s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.18s; }

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ken-burns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* —— Main shell —— */
#main {
  min-height: calc(100vh - var(--header-h) - 220px);
}

.page {
  animation: fade-up 0.55s var(--ease) both;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4f6f8;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: ken-burns 8s var(--ease) both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 22, 26, 0.28) 0%, rgba(18, 22, 26, 0.18) 40%, rgba(18, 22, 26, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 6.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  animation: fade-up 0.7s var(--ease) 0.1s both;
}

.hero-line {
  display: block;
  width: min(180px, 40vw);
  height: 2px;
  margin: 0 0 1.25rem;
  background: var(--accent-soft);
  transform-origin: left;
  animation: line-draw 0.8s var(--ease) 0.35s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 0 0.85rem;
  animation: fade-up 0.7s var(--ease) 0.2s both;
}

.hero p {
  max-width: 36ch;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: rgba(244, 246, 248, 0.88);
  animation: fade-up 0.7s var(--ease) 0.3s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fade-up 0.7s var(--ease) 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff8f3;
}

.btn-primary:hover {
  background: #824926;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(244, 246, 248, 0.55);
  color: #f4f6f8;
}

.btn-ghost:hover {
  background: rgba(244, 246, 248, 0.1);
  border-color: #f4f6f8;
}

.btn-ink {
  background: var(--ink);
  color: var(--surface-solid);
}

.btn-ink:hover {
  background: #000;
}

.btn-outline {
  border-color: var(--line-strong);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--surface);
}

/* —— Sections —— */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 1.5rem;
}

.product-card {
  display: grid;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.product-card-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.product-price {
  font-weight: 650;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Quote band —— */
.quote-band {
  margin: 0;
  padding: 4.5rem 1.25rem;
  background:
    linear-gradient(120deg, rgba(154, 90, 50, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.28);
  border-block: 1px solid var(--line);
}

.quote-band blockquote {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.quote-band p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.quote-band cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— Shop —— */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.filter-chip {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 550;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.filter-chip:hover {
  border-color: var(--ink);
}

.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface-solid);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.65rem;
}

.page-hero p {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* —— Product detail —— */
.pdp {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
  display: grid;
  gap: 2rem;
}

.pdp-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}

.pdp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 7s var(--ease) both;
}

.pdp-info .eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.pdp-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.75rem;
}

.pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.pdp-price-row .price {
  font-weight: 700;
  font-size: 1.35rem;
}

.pdp-desc {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}

.notes-grid {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.75rem;
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
}

.notes-grid dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.notes-grid dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
}

.qty-control button {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  transition: background 0.2s var(--ease);
}

.qty-control button:hover {
  background: var(--surface);
}

.qty-control span {
  min-width: 2rem;
  text-align: center;
  font-weight: 600;
}

/* —— About / Contact —— */
.prose-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4.5rem;
  display: grid;
  gap: 2.5rem;
}

.prose-page .lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0;
}

.prose-copy {
  max-width: 38rem;
  color: var(--ink-soft);
}

.prose-copy p {
  margin: 0 0 1rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  margin: 0 0 0.35rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* —— Cart drawer —— */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.cart-drawer[aria-hidden="false"] {
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 28, 0.35);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.cart-drawer[aria-hidden="false"] .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface-solid);
  box-shadow: var(--shadow-drawer);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.cart-drawer[aria-hidden="false"] .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  margin: 0;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.15rem;
}

.cart-empty {
  color: var(--muted);
  padding: 2rem 0;
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 80px;
  object-fit: cover;
}

.cart-line h3 {
  font-size: 0.95rem;
  font-weight: 650;
  margin: 0 0 0.2rem;
}

.cart-line .meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-line-actions button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  font-size: 0.9rem;
}

.cart-line-actions .remove {
  border: none;
  width: auto;
  height: auto;
  margin-left: 0.35rem;
  font-size: 0.78rem;
  text-decoration: underline;
  color: var(--muted);
}

.cart-line-price {
  font-weight: 650;
  font-size: 0.92rem;
}

.cart-drawer-foot {
  padding: 1.15rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.cart-totals {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
}

.cart-totals .total {
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  padding: 0.75rem 1.15rem;
  background: var(--ink);
  color: var(--surface-solid);
  font-size: 0.9rem;
  font-weight: 550;
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast[hidden] {
  display: none;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.22);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  gap: 2rem;
}

.footer-brand .brand {
  margin: 0 0 0.5rem;
}

.footer-brand p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 28ch;
  font-size: 0.95rem;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.65rem;
}

.footer-grid a,
.footer-grid > div > p:not(.footer-label):not(.brand) {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-meta {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

/* —— Cart page —— */
.cart-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.cart-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1.5rem;
}

/* —— Responsive —— */
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .notes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .primary-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pdp {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: start;
    padding-top: 2.5rem;
  }

  .pdp-info {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .prose-page {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
