:root {
  --surface-container-high: #fae3e3;
  --primary: #000000;
  --success: #167a3d;
  --surface: #fff8f7;
  --on-background: #241819;
  --secondary: #5d5f5f;
  --outline: #777777;
  --outline-variant: #c6c6c6;
  --mood-pink: #f2c9cc;
  --mood-blue: #c9d6f2;
  --mood-purple: #d9c9f2;
  --surface-container: #ffe9e9;
  --shop-section-surface: #FFEDEC;
  --policy-page-surface: #f8e7e7;
  --surface-container-low: #fff0f0;
  --surface-container-lowest: #ffffff;
  --surface-container-highest: #f4dddd;
  --primary-container: #3b3b3b;
  --inverse-surface: #3b2d2d;
  --section-gap: clamp(72px, 9vw, 120px);
  --margin: clamp(20px, 4.5vw, 64px);
  --gutter: 24px;
  --stack-sm: 8px;
  --stack-md: 16px;
  --stack-lg: 32px;
  --container: 1440px;
  --trust-strip-height: 58px;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-accent: "Space Grotesk", system-ui, sans-serif;
  --shadow-soft: 0 20px 60px rgb(36 24 25 / 12%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--on-background);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.drawer-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.secondary-reset {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.skip-link,
.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:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  background: var(--surface-container-lowest);
  border: 1px solid var(--primary);
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--margin);
}

.section-pad {
  padding-block: var(--section-gap);
  scroll-margin-top: 96px;
}

.collections-section {
  padding-bottom: clamp(48px, 5vw, 72px);
}

.collections-section + .shop-section {
  padding-top: clamp(56px, 5vw, 76px);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(198 198 198 / 30%);
  background: rgb(255 248 247 / 82%);
  backdrop-filter: blur(20px);
  transition: padding 200ms ease, box-shadow 200ms ease;
}

.site-header.is-compact {
  box-shadow: 0 6px 30px rgb(36 24 25 / 8%);
}

.header-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  min-height: 86px;
  margin-inline: auto;
  padding: var(--stack-md) var(--margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--stack-lg);
  transition: min-height 200ms ease;
}

.site-header.is-compact .header-inner {
  min-height: 70px;
}

.brand-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--stack-lg);
  margin-left: auto;
}

.desktop-nav a,
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  transition: opacity 160ms ease, color 160ms ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--stack-md);
}

.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  opacity: 0.72;
}

.icon-button:active {
  transform: scale(0.96);
}

.cart-dot {
  position: absolute;
  top: 5px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--surface);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.mobile-menu-button,
.mobile-menu,
.mobile-header-search {
  display: none;
}

.hero-section {
  position: relative;
  min-height: calc(100svh - var(--trust-strip-height));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px var(--margin) 96px;
  background: var(--surface-container);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(rgb(255 248 247 / 8%), rgb(255 248 247 / 4%));
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel-track {
  height: 100%;
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  grid-auto-rows: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-carousel-track::-webkit-scrollbar {
  display: none;
}

.hero-carousel-slide {
  height: 100%;
  min-height: 0;
  scroll-snap-align: start;
}

.hero-carousel-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--hero-y, 56%);
}

.hero-carousel-controls {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(14px, 2vw, 28px);
}

.hero-carousel-button {
  pointer-events: auto;
  border: 0;
  background: rgb(255 248 247 / 42%);
  color: var(--primary);
  backdrop-filter: blur(10px);
}

.hero-carousel-button:hover,
.hero-carousel-button:focus-visible {
  opacity: 1;
  background: rgb(255 248 247 / 78%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  text-align: center;
}

.hero-category-line {
  margin: 0 0 18px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  margin: 0 0 var(--stack-md);
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 128px);
  line-height: 0.95;
  font-weight: 400;
}

.hero-copy {
  max-width: 540px;
  margin: var(--stack-md) auto var(--stack-lg);
  font-size: 18px;
  line-height: 28px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 40px;
  border: 1px solid transparent;
  background: var(--surface-container-lowest);
  color: var(--primary);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-cta:hover {
  transform: scale(1.02);
}

.primary-cta:disabled,
.primary-cta[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.primary-cta:active {
  transform: scale(0.96);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  color: var(--secondary);
  transform: translateX(-50%);
  animation: bounce 1.4s infinite;
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 16px var(--margin);
  border-bottom: 1px solid rgb(198 198 198 / 30%);
  background: var(--surface-container-highest);
}

.trust-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-inner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.trust-inner .trust-item {
  min-width: 0;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgb(198 198 198 / 60%);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 400;
}

.look-card img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.look-card:hover img,
.product-card:hover .product-media img {
  transform: scale(1.04);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: opacity 160ms ease;
}

.text-link:hover {
  opacity: 0.7;
}

.product-card {
  border: 1px solid rgb(198 198 198 / 30%);
  background: rgb(255 248 247 / 82%);
  backdrop-filter: blur(20px);
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}

.price {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.section-heading > .eyebrow {
  margin-bottom: 8px;
}

.section-heading p,
.shop-heading p {
  margin: 16px 0 0;
  color: var(--secondary);
}

.section-heading > .eyebrow + .section-title + p {
  margin-top: 18px;
}

.collection-grid,
.look-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.collection-grid {
  grid-template-columns: 1fr;
}

.drop-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: stretch;
  min-height: 520px;
  border: 1px solid rgb(36 24 25 / 14%);
  background: rgb(255 248 247 / 62%);
  overflow: hidden;
}

.drop-card-media {
  min-height: 360px;
  background: var(--surface-container);
  overflow: hidden;
}

.drop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drop-card:hover .drop-card-media img {
  transform: scale(1.04);
}

.drop-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.drop-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
  font-weight: 400;
}

.drop-card-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.75;
}

.drop-card-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 34px;
  padding: 0;
  list-style: none;
}

.drop-card-copy li {
  border: 1px solid rgb(36 24 25 / 18%);
  padding: 8px 12px;
  background: rgb(255 248 247 / 58%);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.collection-card {
  position: relative;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
  background: var(--primary-container);
}

.collection-card::before,
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.collection-card::before {
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transition: transform 2000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card::after {
  background: linear-gradient(to top, rgb(0 0 0 / 80%), transparent 60%);
}

.collection-card:hover::before {
  transform: scale(1.08);
}

.collection-copy {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 32px;
  left: 32px;
}

.collection-copy h3 {
  margin: 0 0 8px;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

.collection-copy span {
  color: rgb(255 248 247 / 70%);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.collection-card:hover .collection-copy span {
  color: var(--accent);
}

.style-section {
  background: #e0caca;
}

.why-section {
  background: var(--surface);
  padding-block: clamp(44px, 6vw, 72px);
}

.why-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.why-heading .section-title {
  max-width: none;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(36 24 25 / 16%);
  border-bottom: 1px solid rgb(36 24 25 / 16%);
}

.why-grid article {
  min-height: 190px;
  padding: clamp(20px, 2.6vw, 32px);
  border-right: 1px solid rgb(36 24 25 / 12%);
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.why-grid h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 20px;
}

.why-grid p {
  margin: 0;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.65;
}

.style-section .section-heading p span {
  display: inline-block;
  padding: 2px 6px;
  background: var(--surface);
  color: var(--secondary);
  font-family: var(--font-body);
  font-style: normal;
}

.look-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.look-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-container);
}

.look-card p {
  margin: 0;
}

.shop-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--gutter);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.shop-section {
  background: var(--shop-section-surface);
}

.shop-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.catalog-page {
  padding-top: 72px;
}

.catalog-controls {
  display: flex;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-control {
  display: grid;
  gap: 6px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-control select {
  min-width: 160px;
  border: 1px solid rgb(198 198 198 / 70%);
  border-radius: 0;
  padding: 10px 36px 10px 12px;
  background: var(--surface-container-lowest);
  color: var(--primary);
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  transition: transform 300ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.product-card button {
  cursor: pointer;
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-container);
}

.product-media-shell {
  position: relative;
  background: var(--surface-container);
}

.product-media picture {
  display: contents;
}

.product-image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-image-hover,
.product-card:focus-within .product-image-hover {
  opacity: 1;
}

.product-card:hover .product-image-primary,
.product-card:focus-within .product-image-primary {
  opacity: 0;
}

.product-image-toggle {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgb(36 24 25 / 18%);
  background: rgb(255 248 247 / 86%);
  color: var(--primary);
  display: none;
  place-items: center;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  background: rgb(255 248 247 / 84%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.product-info p {
  margin: 0;
  color: var(--secondary);
}

.product-colours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 12px;
  line-height: 16px;
}

.product-colour-text {
  font-weight: 700;
}

.product-colour-swatches {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 8px;
}

.secondary-button,
.add-button {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.add-button {
  padding-inline: 16px;
  background: var(--primary);
  color: var(--surface);
}

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

.secondary-button:hover {
  background: var(--surface-container);
}

.site-footer {
  border-top: 1px solid rgb(198 198 198 / 30%);
  background: var(--surface-container-low);
  padding: var(--section-gap) var(--margin) var(--stack-lg);
}

.footer-grid,
.footer-bottom {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 4fr;
  gap: clamp(36px, 5vw, 72px);
  margin-bottom: var(--section-gap);
}

.footer-brand {
  display: grid;
  gap: var(--stack-md);
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand p,
.newsletter p {
  margin: 0;
  color: var(--secondary);
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer h2 {
  margin: 0 0 var(--stack-sm);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--secondary);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.footer-contact-links a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgb(36 24 25 / 22%);
  border-radius: 999px;
  color: var(--primary);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-contact-links a:hover {
  border-color: var(--primary);
  background: rgb(255 248 247 / 72%);
  transform: translateY(-1px);
}

.footer-contact-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.newsletter form {
  display: flex;
  gap: 8px;
  margin: var(--stack-md) 0 14px;
}

.newsletter input,
.search-dialog input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-bottom: 1px solid var(--outline-variant);
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  padding: 0 0 8px;
}

.newsletter button {
  border: 0;
  border-bottom: 1px solid var(--primary);
  background: transparent;
  padding: 0 0 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter input:disabled,
.newsletter button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-message {
  min-height: 24px;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

dialog {
  width: min(720px, calc(100% - 32px));
  border: 1px solid rgb(198 198 198 / 50%);
  padding: 0;
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

dialog::backdrop {
  background: rgb(36 24 25 / 45%);
  backdrop-filter: blur(6px);
}

.dialog-header,
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgb(198 198 198 / 30%);
}

.dialog-header h2,
.cart-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.search-dialog {
  top: 12vh;
}

.search-dialog > input {
  width: calc(100% - 48px);
  margin: 24px;
  font-size: 18px;
}

.search-results {
  display: grid;
  gap: 10px;
  padding: 0 24px 24px;
}

.search-results-heading {
  margin: 0 0 2px;
  color: var(--secondary);
  font-size: 11px;
  line-height: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-result {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgb(198 198 198 / 30%);
  padding: 10px;
  background: var(--surface-container-lowest);
}

.search-result-media,
.search-result-title {
  display: block;
}

.search-result-title:hover {
  opacity: 0.72;
}

.search-result img {
  width: 64px;
  height: 80px;
  object-fit: cover;
}

.quick-add-dialog {
  width: min(520px, calc(100% - 32px));
}

.quick-add-content {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.quick-add-product {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
}

.quick-add-product img {
  width: 92px;
  height: 116px;
  object-fit: cover;
}

.quick-add-product h3,
.quick-add-product p {
  margin: 0;
}

.quick-add-product h3 {
  font-size: 20px;
  line-height: 1.25;
}

.quick-add-product p {
  margin-top: 6px;
  color: var(--secondary);
  font-weight: 800;
}

.quick-add-options {
  display: grid;
  gap: 18px;
}

.quick-add-actions {
  display: grid;
  gap: 10px;
}

.cart-drawer {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  justify-items: end;
  background: rgb(36 24 25 / 0%);
  pointer-events: none;
  transition: background 220ms ease;
}

.cart-drawer.is-open {
  background: rgb(36 24 25 / 45%);
  pointer-events: auto;
}

.cart-panel {
  width: min(100%, 440px);
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-items {
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: auto;
  padding: 20px;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
}

.cart-line img {
  width: 74px;
  height: 96px;
  object-fit: cover;
  background: var(--surface-container);
}

.cart-line h3,
.cart-line p {
  margin: 0;
}

.cart-line p {
  color: var(--secondary);
}

.cart-line .cart-variant {
  margin-top: 2px;
  font-size: 13px;
  line-height: 18px;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.quantity-row button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--outline-variant);
  background: var(--surface-container-lowest);
  cursor: pointer;
}

.quantity-row .remove-button {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--secondary);
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.quantity-row .remove-button:hover {
  color: var(--primary);
}

.cart-footer {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgb(198 198 198 / 30%);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.cart-footer p {
  margin: 0;
  color: var(--secondary);
  font-size: 13px;
}

.checkout-button {
  width: 100%;
  border-color: var(--primary);
}

.cart-browse-link {
  justify-content: center;
  width: 100%;
}

.checkout-page {
  min-height: 100svh;
  padding: 120px var(--margin) var(--section-gap);
  background: var(--surface);
}

.product-page {
  min-height: 100svh;
  padding: 128px var(--margin) var(--section-gap);
  background: var(--surface);
}

.product-page-shell {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.product-detail-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.product-page-media {
  position: sticky;
  top: 112px;
  overflow: hidden;
  background: var(--surface-container);
}

.product-gallery {
  margin: 0;
}

.product-gallery-stage {
  position: relative;
  overflow: hidden;
  background: var(--surface-container);
}

.product-gallery-track {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-gallery-track::-webkit-scrollbar {
  display: none;
}

.product-gallery-slide {
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface-container);
}

.product-gallery-toolbar {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 2vw, 18px);
}

.gallery-button {
  pointer-events: auto;
  border: 0;
  background: rgb(255 248 247 / 42%);
  color: var(--primary);
  backdrop-filter: blur(10px);
}

.gallery-button:hover,
.gallery-button:focus-visible {
  opacity: 1;
  background: rgb(255 248 247 / 78%);
}

.product-gallery-thumbs {
  display: grid;
  grid-auto-columns: minmax(72px, 88px);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  border-top: 1px solid rgb(36 24 25 / 12%);
  background: rgb(255 248 247 / 62%);
}

.product-gallery-thumb {
  aspect-ratio: 4 / 5;
  border: 1px solid rgb(36 24 25 / 14%);
  padding: 0;
  background: var(--surface-container-lowest);
  cursor: pointer;
  opacity: 0.62;
  overflow: hidden;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-selected {
  border-color: var(--primary);
  opacity: 1;
}

.product-gallery-thumb:hover {
  transform: translateY(-1px);
}

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

.product-page-copy {
  max-width: 680px;
}

.product-back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--primary);
  color: var(--secondary);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-page-copy h1,
.product-empty h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.96;
  font-weight: 400;
}

.product-page-price {
  width: fit-content;
  margin: 22px 0 38px;
  border: 1px solid rgb(36 24 25 / 18%);
  padding: 10px 14px;
  background: var(--surface-container-lowest);
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.product-story {
  display: grid;
  gap: 16px;
  margin: 34px 0 26px;
}

.product-story p {
  margin: 0;
  color: var(--on-background);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
}

.product-benefits {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.7;
}

.product-benefits li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.product-closing {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.55;
}

.product-buy-box {
  display: grid;
  gap: 18px;
  margin: clamp(28px, 4vw, 40px) 0 24px;
  padding: 26px 0;
  border-top: 1px solid rgb(36 24 25 / 16%);
  border-bottom: 1px solid rgb(36 24 25 / 16%);
}

.product-options {
  display: grid;
  gap: 22px;
  margin: 0;
}

.product-option-group {
  display: grid;
  gap: 12px;
}

.product-option-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.product-option-group h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-selection-message {
  margin: 0;
  color: var(--secondary);
  font-size: 13px;
  line-height: 18px;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgb(36 24 25 / 18%);
  padding: 8px 13px;
  background: rgb(255 255 255 / 50%);
  color: var(--primary);
  font-size: 13px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.option-chip:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.option-chip.is-selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--surface);
}

.colour-swatch {
  width: 16px;
  height: 16px;
  border: 1px solid rgb(36 24 25 / 25%);
}

.colour-swatch-black {
  background: #111111;
}

.colour-swatch-white {
  background: #ffffff;
}

.option-chip.is-selected .colour-swatch {
  border-color: rgb(255 248 247 / 70%);
}

.product-add-cta {
  width: min(100%, 360px);
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin: 28px 0 22px;
  padding: 26px 0;
  border-top: 1px solid rgb(36 24 25 / 14%);
  border-bottom: 1px solid rgb(36 24 25 / 14%);
}

.product-fact-group {
  min-width: 0;
}

.product-fact-group h2 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-fact-group ul,
.product-assurance-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-fact-group ul {
  display: grid;
  gap: 8px;
}

.product-fact-group li {
  position: relative;
  padding-left: 18px;
  color: var(--on-background);
  font-size: 14px;
  line-height: 1.65;
}

.product-fact-group li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--primary);
}

.product-assurance-list {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.product-assurance-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-background);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.product-assurance-list span {
  color: var(--success);
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.related-products {
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid rgb(36 24 25 / 14%);
}

.related-products-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.related-products .product-media {
  background: var(--surface-container);
}

.related-rotator {
  position: absolute;
  inset: 0;
  display: block;
}

.related-products .related-rotator-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.related-products .related-rotator-image.is-active {
  opacity: 1;
}

.related-products .product-card:hover .related-rotator-image,
.related-products .product-card:focus-within .related-rotator-image {
  transform: none;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gutter);
}

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

.product-empty {
  max-width: 720px;
  padding-block: clamp(72px, 10vw, 120px);
}

.product-empty .primary-cta {
  margin-top: 32px;
}

.policy-page {
  min-height: 100svh;
  padding: 96px var(--margin) var(--section-gap);
  background: var(--policy-page-surface);
}

.policy-shell {
  width: min(100%, 840px);
  margin-inline: auto;
}

.policy-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gutter);
  margin-bottom: clamp(56px, 8vw, 92px);
}

.policy-home-link {
  width: fit-content;
  transition: opacity 160ms ease;
}

.policy-home-link:hover {
  opacity: 0.7;
}

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

.policy-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 88px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
}

.story-headline span {
  display: block;
}

.policy-copy h1 + p:not(.policy-subtitle) {
  margin-top: clamp(36px, 5vw, 56px);
}

.policy-subtitle {
  margin: 18px 0 clamp(40px, 5vw, 64px);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
}

.policy-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.policy-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
}

.policy-copy ul {
  margin: 0 0 20px;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.8;
}

.policy-copy hr {
  width: 100%;
  height: 1px;
  border: 0;
  margin: clamp(34px, 5vw, 52px) 0;
  background: rgb(36 24 25 / 18%);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(28px, 4vw, 40px) 0 0;
}

.contact-action {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgb(36 24 25 / 18%);
  background: rgb(255 248 247 / 48%);
  padding: 16px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-action:hover {
  border-color: rgb(36 24 25 / 38%);
  background: rgb(255 248 247 / 72%);
  transform: translateY(-2px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 999px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-action strong,
.contact-action span span {
  display: block;
}

.contact-action strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action span span {
  overflow-wrap: anywhere;
  color: var(--secondary);
  font-size: 14px;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.founder-portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border: 1px solid rgb(36 24 25 / 14%);
}

.founder-signoff {
  margin-top: 28px;
}

.checkout-shell {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.checkout-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gutter);
  margin-bottom: 48px;
}

.checkout-top h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  font-weight: 400;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: var(--gutter);
  align-items: start;
}

.checkout-card {
  border: 1px solid rgb(198 198 198 / 30%);
  background: rgb(255 248 247 / 82%);
  backdrop-filter: blur(20px);
  padding: clamp(20px, 3vw, 32px);
}

.checkout-card h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

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

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

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid rgb(198 198 198 / 70%);
  background: var(--surface-container-lowest);
  color: var(--primary);
  padding: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;
}

.checkout-form textarea {
  min-height: 96px;
  resize: vertical;
}

.checkout-summary {
  display: grid;
  gap: 16px;
}

.summary-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
}

.summary-line img {
  width: 64px;
  height: 82px;
  object-fit: cover;
  background: var(--surface-container);
}

.summary-line h3,
.summary-line p {
  margin: 0;
}

.summary-line p {
  color: var(--secondary);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgb(198 198 198 / 30%);
  padding-top: 16px;
  font-size: 18px;
}

.gateway-note {
  margin: 12px 0 0;
  color: var(--secondary);
  font-size: 13px;
}

.empty-state {
  color: var(--secondary);
  text-align: center;
  padding: 40px 16px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.product-detail img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-detail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
}

.product-detail p {
  color: var(--secondary);
}

.detail-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button,
  .mobile-header-search {
    display: inline-grid;
  }

  .site-header .icon-button {
    width: 44px;
    height: 44px;
  }

  .header-actions {
    gap: 4px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    min-height: 100svh;
    padding: clamp(120px, 17svh, 160px) var(--margin) 44px;
    border-top: 0;
    background: rgb(255 248 247 / 98%);
    text-align: right;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
    align-content: start;
    justify-items: end;
    gap: clamp(22px, 4svh, 36px);
  }

  .mobile-menu a {
    font-size: clamp(34px, 11vw, 54px);
    line-height: 1.05;
  }

  .footer-grid,
  .product-detail,
  .product-detail-page,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-page {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 44px);
  }

  .product-page-media {
    position: sticky;
    top: 104px;
  }

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

  .catalog-page .product-grid {
    gap: 14px;
  }

  .catalog-page .product-info {
    gap: 7px;
    padding: 12px;
  }

  .catalog-page .product-info h3 {
    font-size: 14px;
    line-height: 19px;
  }

  .catalog-page .product-info p {
    display: none;
  }

  .catalog-page .product-actions {
    grid-template-columns: 1fr;
  }

  .product-image-toggle {
    display: grid;
  }

  .product-card.is-alt-image .product-image-hover {
    opacity: 1;
  }

  .product-card.is-alt-image .product-image-primary {
    opacity: 0;
  }

  .collection-grid,
  .drop-card {
    grid-template-columns: 1fr;
  }

  .why-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .why-grid article:nth-child(2) {
    border-right: 0;
  }

  .why-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(36 24 25 / 12%);
  }
}

@media (max-width: 680px) {
  :root {
    --trust-strip-height: 74px;
  }

  .collections-section {
    padding-bottom: 44px;
  }

  .collections-section + .shop-section {
    padding-top: 48px;
  }

  .header-inner {
    min-height: 74px;
    gap: 10px;
  }

  .brand-logo {
    height: 42px;
    max-width: 148px;
  }

  .hero-section {
    min-height: calc(100svh - var(--trust-strip-height));
    padding: 112px var(--margin) 86px;
  }

  .hero-carousel-slide img {
    object-position: center 38%;
  }

  .hero-carousel-controls {
    align-items: flex-end;
    padding: 0 var(--margin) 90px;
  }

  .hero-carousel-button {
    width: 38px;
    height: 38px;
    background: rgb(255 248 247 / 34%);
  }

  .hero-content {
    position: absolute;
    right: var(--margin);
    bottom: max(82px, calc(env(safe-area-inset-bottom) + 72px));
    left: var(--margin);
    z-index: 3;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .hero-content .primary-cta {
    min-width: 0;
    min-height: 46px;
    width: auto;
    padding: 11px 22px;
    pointer-events: auto;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 25px;
  }

  .trust-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.06em;
  }

  .trust-inner .trust-item {
    display: grid;
    min-height: 42px;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding-inline: 6px;
  }

  .trust-inner .trust-item:not(:last-child) {
    border-right: 1px solid rgb(36 24 25 / 12%);
  }

  .trust-inner .trust-item .material-symbols-outlined {
    font-size: 19px;
  }

  .trust-inner .trust-divider {
    display: none;
  }

  .collection-grid,
  .look-grid {
    grid-template-columns: 1fr;
  }

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

  .product-page {
    padding-top: 96px;
  }

  .product-detail-page {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-page-media {
    position: static;
  }

  .product-gallery-slide {
    aspect-ratio: 4 / 4.1;
  }

  .product-gallery-slide img {
    object-position: center 38%;
  }

  .product-gallery-slide img[src="assets/chup-kar/gallery/chup-kar-black-model.png"] {
    object-position: center 56%;
  }

  .product-gallery-thumbs {
    grid-auto-columns: 50px;
    gap: 8px;
    padding: 6px;
  }

  .product-back-link {
    margin-bottom: 16px;
  }

  .product-page-copy h1,
  .product-empty h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .product-page-price {
    margin: 16px 0 22px;
  }

  .product-story p {
    font-size: 16px;
  }

  .product-buy-box {
    gap: 16px;
    margin: 22px calc(var(--margin) * -1) 20px;
    padding: 22px var(--margin);
    background: rgb(255 248 247 / 88%);
  }

  .product-options {
    gap: 18px;
  }

  .option-chip {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
  }

  .product-add-cta {
    position: static;
    width: 100%;
  }

  .product-facts,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid article,
  .why-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(36 24 25 / 12%);
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }

  .why-grid span {
    margin-bottom: 16px;
  }

  .collection-card {
    min-height: 360px;
  }

  .shop-heading,
  .checkout-top,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-controls {
    justify-content: stretch;
  }

  .catalog-controls .filter-control,
  .catalog-controls select {
    width: 100%;
  }

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

  .founder-note {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .founder-portrait {
    width: 100%;
    max-width: none;
  }

  .founder-portrait img {
    aspect-ratio: 4 / 5;
    object-position: center 22%;
  }

  .policy-page {
    padding: 72px var(--margin) var(--section-gap);
  }

  .policy-top {
    margin-bottom: 42px;
  }

  .policy-copy {
    max-width: none;
  }

  .policy-copy h1 {
    max-width: 11ch;
    font-size: clamp(40px, 12.4vw, 52px);
    line-height: 1.02;
  }

  .policy-copy h1.story-headline {
    max-width: none;
  }

  .policy-copy h1 + p:not(.policy-subtitle) {
    margin-top: 30px;
  }

  .policy-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .newsletter form,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    display: grid;
  }

  .search-result {
    grid-template-columns: 56px 1fr;
    gap: 10px;
    padding: 8px;
  }

  .search-result .add-button,
  .search-result .secondary-button {
    grid-column: 1 / -1;
    min-height: 38px;
  }
}

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

  .reveal-up {
    opacity: 1;
    transform: none;
  }

  .related-products .related-rotator-image:not(.is-active) {
    opacity: 0;
  }
}
