@font-face {
  font-family: "Teko";
  src: url("assets/Logotype & Typo/Teko-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Teko";
  src: url("assets/Logotype & Typo/Teko-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/Logotype & Typo/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/Logotype & Typo/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/Logotype & Typo/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: "Teko", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --purple: #641995;
  --black: #000000;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --soft: #f1f1f1;
  --border: #e4e4e4;
  --text: #171717;
  --muted: #666666;
  --gray: #898989;
  --radius: 2px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Rem baseline: keeps every rem-based font-size in this stylesheet above 7px. */
  font-size: 15px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: max(7px, 1rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/* No text below 7px: floors inherited/em-based sizing; :where() keeps specificity at 0 so explicit rules still win. */
:where(p, li, td, th, label, legend, figcaption, span, a, em, strong, cite, summary, dt, dd, address, pre, code, kbd, small, button, input, textarea, select) {
  font-size: max(7px, 1em);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 3.3vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--muted);
}

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

.narrow {
  max-width: 820px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--purple);
  background: var(--purple);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
}

.btn-small {
  min-height: 38px;
  width: 100%;
  padding: 0 14px;
  border-color: var(--border);
  background: var(--white);
  font-size: 1rem;
}

.full-width {
  width: 100%;
}

.text-link {
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav {
  position: relative;
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.logo-brand {
  justify-self: center;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--black);
}

.cart-link {
  position: relative;
  overflow: visible;
  color: var(--black) !important;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.cart-badge[hidden] {
  display: none !important;
}

.cart-toast-host {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  left: 50%;
  z-index: 100;
  max-width: min(92vw, 440px);
  padding: 16px 24px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s ease, opacity 0.38s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: min(250px, 24vw);
  min-width: 190px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--off-white);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.search-form:focus-within {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--black);
}

.search-form input {
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px 0 12px;
  border: 0;
  background: transparent;
  color: var(--black);
  outline: none;
}

.search-form input::placeholder {
  color: var(--muted);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  transition: background 160ms ease, transform 160ms ease;
}

.search-form .icon-button {
  flex: 0 0 42px;
  border: 0;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  display: none;
  width: min(360px, 88vw);
  max-height: min(420px, 70vh);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.search-results.open {
  display: grid;
  gap: 6px;
}

.search-result {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  transition: background 160ms ease;
}

.search-result:hover,
.search-result:focus-visible {
  background: var(--off-white);
}

.search-result img {
  width: 54px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.search-result-content {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.search-result-content strong {
  color: var(--black);
  font-weight: 500;
  line-height: 1.15;
}

.search-result-content span,
.search-empty {
  color: var(--muted);
  font-size: 0.92rem;
}

.search-empty {
  padding: 12px;
}

.icon-button:hover,
.icon-button:focus-visible,
.icon-button.active {
  background: var(--soft);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: var(--black);
}

.hero-slider {
  position: relative;
  min-height: 80vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.28));
}

.hero-slide--sale .hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 110px 0 136px;
}

.hero .eyebrow,
.hero h1,
.hero .hero-text {
  color: var(--white);
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
}

.hero-text {
  max-width: 470px;
  margin-top: 14px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .btn-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.hero .btn-secondary {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: var(--white);
  color: var(--black);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  transition: background 160ms ease, width 160ms ease;
}

.hero-dots button.active {
  width: 52px;
  background: var(--white);
}

.hero-video-modal {
  width: min(92vw, 960px);
  max-width: 960px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.hero-video-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.hero-video-modal__inner {
  position: relative;
  padding: 12px;
  background: var(--black);
  border-radius: var(--radius);
}

.hero-video-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-video-modal__player {
  display: block;
  width: 100%;
  max-height: min(72vh, 540px);
  background: var(--black);
}

.hero-video-modal__placeholder {
  margin: 48px 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  text-transform: none;
}

.page-hero {
  padding: 94px 0 56px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.page-hero.compact {
  padding: 80px 0 50px;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 10px;
  color: var(--text);
}

.about-hero {
  background: var(--off-white);
}

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

.shop-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--muted);
  text-align: center;
}

.product-card {
  background: var(--white);
}

.product-image {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  transition: transform 200ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.02);
}

.product-info {
  display: grid;
  gap: 7px;
  padding: 14px 0 0;
}

.product-info h2,
.product-info h3 {
  font-family: var(--font-heading);
  font-size: calc(1.52rem + 14px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-fit + .product-tag {
  margin-block-start: -5px;
}

.product-detail > .product-fit + .eyebrow {
  margin-block-start: -5px;
}

.product-tag {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.product-fit {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
}

.price {
  color: var(--black);
  font-weight: 500;
}

.price--sale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.price__was {
  color: var(--muted);
  font-size: 0.92em;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price__now {
  color: var(--black);
  font-weight: 600;
}

.price.large.price--sale {
  font-size: 1.05rem;
}

.price.large.price--sale .price__now {
  font-size: 1.25rem;
}

/* —— Home (post-hero): centered intros, full-bleed highlight, grid, about —— */
.home-after-hero {
  padding-top: 80px;
  overflow-x: clip;
}

.home-section-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 48px;
  padding: 0 12px;
}

.home-section-intro .eyebrow {
  margin-bottom: 8px;
}

.home-section-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
}

.home-section-intro__link {
  display: inline-block;
}

.home-section-intro--tight {
  margin-bottom: 36px;
}

.home-highlight {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 80vh;
  margin-bottom: 76px;
  overflow: hidden;
  background: var(--black);
}

.home-after-hero > .home-highlight:not(:first-child) {
  margin-top: calc(100px + clamp(40px, 5vw, 56px));
}

.home-highlight__media {
  position: absolute;
  inset: 0;
}

.home-highlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.home-highlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.38) 42%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.home-highlight__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 80vh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(48px, 10vh, 100px);
  padding-bottom: clamp(52px, 9vh, 112px);
  text-align: left;
}

.home-highlight__kicker {
  margin: 0 0 10px;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: none;
}

.home-highlight__headline {
  margin: 0 0 clamp(18px, 2.5vh, 26px);
  max-width: min(18ch, 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(calc(2.1rem + 10px), 4.8vw, calc(3.6rem + 10px));
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-featured-wrap {
  padding-bottom: 8px;
}

/* New collection bar — matches layout: Featured | title | View More + bottom rule only */
.home-collection-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(10px, 2.5vw, 28px);
  padding: 0 0 18px;
  margin-bottom: clamp(20px, 3vw, 28px);
  border-top: 0;
  border-bottom: 1px solid var(--border);
}

.home-collection-bar__left {
  justify-self: start;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: calc(0.82rem + 2px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.home-collection-bar__title {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(calc(1.6rem + 10px), calc(3.2vw + 10px), calc(2.65rem + 10px));
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
}

.home-collection-bar__link {
  justify-self: end;
  grid-column: 3;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: calc(0.82rem + 2px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.home-collection-bar__link:hover,
.home-collection-bar__link:focus-visible {
  color: var(--black);
}

.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
}

.home-featured-card__media {
  position: relative;
}

.home-featured-card__media .product-image {
  display: block;
}

.product-new-ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  pointer-events: none;
}

.product-new-ribbon__text {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.home-featured-card .product-image img {
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
}

.home-featured-card .product-info {
  gap: 5px;
  padding-top: 14px;
  text-align: left;
  justify-items: start;
  width: 100%;
}

.home-featured-card .product-fit + .product-tag {
  margin-block-start: -6px;
}

.home-featured-card .price.price--sale {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1px;
  margin-top: 6px;
}

.home-featured-card .price__was {
  color: #c97a7a;
  font-size: 0.8rem;
  text-decoration-color: rgba(201, 122, 122, 0.9);
}

.home-featured-card .price__now {
  font-size: 1.06rem;
  font-weight: 700;
}

.home-featured-card .product-info h3 {
  margin-top: 2px;
}

.home-about-split {
  background: var(--off-white);
  border-block: 1px solid var(--border);
}

.home-about-split > .container:first-of-type {
  padding-bottom: 0;
}

.home-about-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  padding-top: 8px;
}

.home-about-split__media {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--soft);
}

.home-about-split__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-about-split__content {
  text-align: left;
}

.home-about-split__content h2 {
  margin-top: 8px;
}

.home-about-copy {
  display: grid;
  gap: 16px;
  margin: 18px 0 22px;
}

.home-about-copy p {
  margin: 0;
  max-width: 52ch;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.home-about-readmore {
  margin-top: 4px;
}

.story-band,
.values-section {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.split-section p:not(.eyebrow),
.stacked-copy p,
.image-copy p,
.contact-panel p {
  color: var(--text);
}

.stacked-copy {
  display: grid;
  gap: 14px;
}

.legal-prose {
  gap: 28px;
}

.legal-prose h2 {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-prose h2:first-of-type {
  padding-top: 0;
  border-top: none;
}

.legal-prose p {
  margin: 0;
  max-width: 52ch;
  color: var(--text);
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  display: grid;
  gap: 10px;
  background: var(--white);
}

.category-card::before {
  display: none;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
}

.category-card span {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
}

.newsletter-section {
  padding-top: 0;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.newsletter-card p:not(.eyebrow) {
  margin-top: 8px;
}

.newsletter-form,
.footer-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input,
.footer-form input,
.form-card input,
.form-card select,
.form-card textarea,
.quantity-control input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 160ms ease;
}

.newsletter-form input,
.footer-form input {
  min-height: 46px;
  padding: 0 14px;
}

.newsletter-form input:focus,
.footer-form input:focus,
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.quantity-control input:focus {
  border-color: var(--black);
}

/* —— Shop page —— */
.shop-page__section {
  padding-top: 48px;
}

.shop-page-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(32px, 4vw, 44px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--border);
}

.shop-page-header .eyebrow {
  margin-bottom: 10px;
}

.shop-page-header h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.shop-page-lead {
  margin: 0;
  max-width: 34rem;
  margin-inline: auto;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.shop-filters {
  position: sticky;
  top: 92px;
  padding: 0;
  border: 0;
  background: transparent;
}

.shop-filters__title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-filter-dropdown {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.shop-filter-dropdown summary {
  margin-bottom: 10px;
  padding: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  list-style: none;
  cursor: default;
}

.shop-filter-dropdown summary::-webkit-details-marker {
  display: none;
}

.shop-filter-dropdown__body {
  padding: 0;
}

.shop-filter-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
}

.shop-filter-option input {
  margin-top: 3px;
  accent-color: var(--black);
  flex-shrink: 0;
}

.shop-filter-option span {
  color: var(--text);
}

.shop-main {
  min-width: 0;
}

.shop-page-count {
  margin: 0 0 clamp(18px, 2.5vw, 24px);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.shop-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.shop-listing-card {
  background: transparent;
}

.shop-listing-card__media {
  position: relative;
}

.shop-listing-card__media .product-image {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.shop-listing-card .product-image img {
  aspect-ratio: 3 / 4.05;
  object-fit: cover;
  transition: transform 200ms ease;
}

.shop-listing-card:hover .product-image img {
  transform: scale(1.02);
}

.shop-listing-card .product-info {
  gap: 5px;
  padding-top: 14px;
  text-align: left;
  justify-items: start;
}

.shop-listing-card .product-fit + .product-tag {
  margin-block-start: -6px;
}

.shop-listing-card .product-info h2 {
  margin: 2px 0 0;
  font-size: calc(1.52rem + 14px);
}

.shop-listing-card .product-info h2 a {
  color: inherit;
  text-decoration: none;
}

.shop-listing-card .product-info h2 a:hover,
.shop-listing-card .product-info h2 a:focus-visible {
  color: var(--purple);
}

.shop-listing-card .price.price--sale {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1px;
  margin-top: 6px;
}

.shop-listing-card .price__was {
  color: #c97a7a;
  font-size: 0.8rem;
}

.shop-listing-card .price__now {
  font-size: 1.06rem;
  font-weight: 700;
}

.shop-grid .shop-empty {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shop-filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }

  .shop-filters__title {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

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

@media (max-width: 560px) {
  .shop-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .shop-filters__title {
    margin-bottom: 6px;
    font-size: 1.1rem;
  }

  .shop-filter-dropdown {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
  }

  .shop-filter-dropdown summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 14px 16px;
    cursor: pointer;
  }

  .shop-filter-dropdown summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(45deg);
    transition: transform 180ms ease;
    flex-shrink: 0;
  }

  .shop-filter-dropdown[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .shop-filter-dropdown__body {
    padding: 6px 16px 14px;
    border-top: 1px solid var(--border);
  }

  .shop-filter-option:last-child {
    margin-bottom: 0;
  }

  .shop-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .shop-listing-card .product-info h2 {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  }

  .shop-listing-card .price__now {
    font-size: 0.92rem;
  }
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
  gap: 56px;
  align-items: start;
  padding-top: 12px;
}

.gallery {
  position: sticky;
  top: 92px;
}

.main-product-image {
  overflow: hidden;
  background: var(--soft);
}

.main-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0.55;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.thumb.active,
.thumb:hover {
  border-color: var(--black);
  opacity: 1;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.product-page {
  padding-top: clamp(28px, 4vw, 40px);
  padding-bottom: 0;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease;
}

.product-back-link:hover,
.product-back-link:focus-visible {
  color: var(--black);
}

.product-back-link svg {
  flex-shrink: 0;
}

.product-detail {
  padding-top: 4px;
}

.product-detail > h1 {
  font-size: clamp(calc(2.8rem - 1px), calc(5.6vw - 1px), calc(5rem - 1px));
  font-weight: 600;
}

.product-lead {
  max-width: 540px;
  color: var(--text);
}

.product-form {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.product-form fieldset {
  padding: 0;
  border: 0;
}

.product-form legend {
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option {
  min-width: 54px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.option:hover,
.option.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quantity-control button {
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
}

.quantity-control input {
  width: 62px;
  height: 42px;
  padding: 0;
  border: 0;
  border-inline: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
}

.add-cart {
  max-width: 100%;
}

.accordion-list {
  display: grid;
  border-top: 1px solid var(--border);
}

.accordion-list details {
  border-bottom: 1px solid var(--border);
}

.accordion-list summary {
  padding: 17px 0;
  color: var(--black);
  font-weight: 500;
  cursor: pointer;
}

.accordion-list p {
  padding: 0 0 17px;
}

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

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

.value-grid article {
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--white);
}

.value-grid span {
  color: var(--muted);
  font-weight: 500;
}

.value-grid h3 {
  margin: 10px 0 8px;
}

.image-copy {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-copy img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  background: var(--soft);
}

.image-copy .btn {
  margin-top: 22px;
}

.cart-layout,
.checkout-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

.cart-panel {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  gap: 16px 20px;
  align-items: center;
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: var(--soft);
}

.cart-item h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.cart-item-main p,
.cart-quantity span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-quantity strong {
  display: block;
  color: var(--black);
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 44px 24px;
  border: 1px solid var(--border);
  background: var(--off-white);
  text-align: center;
}

.empty-cart h2 {
  margin-bottom: 8px;
}

.empty-cart p {
  max-width: 430px;
  margin-bottom: 22px;
}

/* Cart page: title + empty (full-height) or filled checkout */
.cart-page {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 72px);
  padding: 20px 0 56px;
  box-sizing: border-box;
}

.cart-page--empty {
  padding-top: 0;
  padding-bottom: 0;
}

.cart-page--empty .cart-page-heading,
.cart-page--empty [data-cart-filled] {
  display: none !important;
}

.cart-page--filled [data-cart-empty],
.cart-page--filled [data-cart-success],
.cart-page--success [data-cart-empty],
.cart-page--success [data-cart-filled] {
  display: none !important;
}

.cart-page--success {
  min-height: calc(100vh - 72px);
  padding-top: 20px;
}

.cart-page--success .cart-page-heading {
  display: none;
}

.cart-page--empty [data-cart-success] {
  display: none !important;
}

.cart-page--success [data-cart-success] {
  display: grid !important;
}

.cart-order-success {
  flex: 1;
  display: none;
  place-content: center;
  min-height: min(70vh, 640px);
  padding: 32px 16px 48px;
}

.cart-order-success__inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.cart-order-success__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.cart-order-success__id-label {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-order-success__id {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.cart-order-success__lead {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 36rem;
}

.cart-page--filled {
  min-height: 0;
  padding-top: 20px;
}

.cart-page-heading {
  margin: 0 0 8px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cart-page--empty .cart-empty-fullscreen {
  flex: 1;
  min-height: calc(100vh - 72px);
}

.cart-empty-fullscreen {
  flex: 1;
  display: grid;
  place-content: center;
  min-height: 0;
  padding: 24px 16px 40px;
  box-sizing: border-box;
}

.cart-empty-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 440px;
}

.cart-empty-title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cart-empty-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 400px;
}

.cart-filled-shell {
  position: relative;
  display: grid;
  gap: 32px;
  padding-top: 8px;
}

.cart-processing {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px);
}

.cart-processing[hidden] {
  display: none !important;
}

.cart-processing__panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.cart-processing__spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: cart-processing-spin 0.7s linear infinite;
}

.cart-processing__text {
  margin: 0;
  max-width: 16rem;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

@keyframes cart-processing-spin {
  to {
    transform: rotate(360deg);
  }
}

.cart-items-heading {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.cart-layout.cart-filled-layout {
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.cart-item.cart-item-card {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--off-white);
}

.cart-item.cart-item-card img {
  border-radius: 4px;
}

.cart-item.cart-item-card .cart-item-main p {
  font-size: 0.92rem;
}

.cart-item.cart-item-card > .price {
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
}

.cart-summary-panel {
  position: sticky;
  top: 88px;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.cart-summary-panel .summary-row {
  padding: 14px 0;
}

.cart-summary-panel .summary-row.total {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 1.15rem;
}

.cart-order-form--checkout {
  padding: 28px 28px 32px;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.cart-order-form--checkout .form-grid {
  gap: 18px 20px;
}

.cart-order-form--checkout label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
}

.cart-order-form--checkout input.cart-field-invalid,
.cart-order-form--checkout textarea.cart-field-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.2);
}

.cart-order-form--checkout .form-message--error {
  margin: 0 0 12px;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
}

.cart-order-form--checkout input,
.cart-order-form--checkout textarea {
  min-height: 48px;
  padding: 0 14px;
}

.cart-order-form--checkout textarea {
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}

.cart-order-form--checkout .cart-form-extras {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin-inline: 0;
}

.cart-order-form--checkout .payment-fieldset,
.cart-order-form--checkout .notify-fieldset {
  width: 100%;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.cart-order-form--checkout .payment-fieldset legend,
.cart-order-form--checkout .notify-fieldset legend {
  margin-bottom: 10px;
  padding: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: left;
  width: 100%;
}

.cart-order-form--checkout .cart-fieldset-hint {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: left;
}

.cart-order-form--checkout .payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cart-order-form--checkout .notify-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cart-order-form--checkout .radio-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  text-align: left;
  box-sizing: border-box;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.cart-order-form--checkout .radio-line span {
  color: var(--black);
  line-height: 1.15;
}

.cart-order-form--checkout .radio-line__label-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-order-form--checkout .radio-line__label-stack small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.25;
}

.cart-order-form--checkout .radio-line--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--off-white);
}

.cart-order-form--checkout .radio-line--disabled span,
.cart-order-form--checkout .radio-line--disabled small {
  color: var(--muted);
}

.cart-order-form--checkout .radio-line:hover:not(.radio-line--disabled) {
  border-color: var(--gray);
}

.cart-order-form--checkout .radio-line:has(input:checked) {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.cart-order-form--checkout .radio-line:has(input:checked) span {
  color: var(--white);
}

.cart-order-form--checkout .radio-line input[type="radio"],
.cart-order-form--checkout .radio-line input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--white);
}

.cart-order-form--checkout .radio-line:has(input:checked) input[type="radio"],
.cart-order-form--checkout .radio-line:has(input:checked) input[type="checkbox"] {
  accent-color: var(--white);
}

.cart-order-form--checkout .privacy-check {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 22px 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
}

.cart-order-form--checkout .privacy-check > span {
  flex: 1;
  min-width: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-transform: none;
  text-align: left;
}

.cart-order-form--checkout .privacy-check .text-link {
  font-size: 0.88rem;
}

.cart-order-form--checkout .privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  flex-shrink: 0;
  align-self: center;
  accent-color: var(--black);
  cursor: pointer;
  vertical-align: middle;
}

@media (max-width: 560px) {
  .cart-order-form--checkout .payment-options,
  .cart-order-form--checkout .notify-options {
    grid-template-columns: 1fr;
  }
}

/* Privacy policy — compact, left-aligned */
.privacy-page .page-hero.compact {
  padding: 56px 0 32px;
  text-align: left;
}

.privacy-page .page-hero.compact .container {
  max-width: 640px;
}

.privacy-page .page-hero.compact h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.privacy-page .page-hero.compact p:not(.eyebrow) {
  max-width: none;
  font-size: 0.95rem;
  color: var(--muted);
}

.privacy-page .legal-prose.section {
  padding: 48px 0 72px;
}

.privacy-page .legal-prose.container.narrow {
  max-width: 640px;
}

.privacy-page .legal-prose h2 {
  font-size: 1.05rem;
  padding-top: 6px;
}

.privacy-page .legal-prose p {
  font-size: 0.92rem;
  max-width: none;
  line-height: 1.55;
}

button.cart-remove {
  padding: 8px 0;
  border: 0;
  background: none;
  text-align: right;
  align-self: center;
}

.cart-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  margin-top: 8px;
}

.cart-submit-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.cart-submit-total span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cart-submit-total strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
}

.cart-submit-btn {
  flex: 1 1 200px;
  min-width: min(100%, 200px);
}

.cart-submit-btn--loading {
  opacity: 0.65;
  cursor: wait;
  pointer-events: none;
}

.cart-order-thanks {
  margin: 0 0 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--off-white);
  line-height: 1.5;
}

.cart-order-thanks strong {
  font-weight: 600;
  color: var(--black);
}

.cart-empty-fullscreen > .cart-order-thanks {
  margin: 0 auto 24px;
  max-width: 420px;
  text-align: center;
}

.summary-card {
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--white);
}

.summary-card h2,
.form-card h2,
.contact-panel h2 {
  margin-bottom: 18px;
  font-size: 1.95rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

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

.summary-row strong {
  color: var(--black);
}

.summary-row.total {
  margin-bottom: 18px;
  border-bottom: 0;
  font-size: 1.1rem;
}

.summary-empty {
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.center-link {
  display: table;
  margin: 18px auto 0;
}

.checkout-layout {
  grid-template-columns: minmax(0, 1fr) 400px;
}

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

.form-card {
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--white);
}

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

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-card input,
.form-card select,
.form-card textarea {
  min-height: 48px;
  padding: 12px 14px;
}

.form-card textarea {
  resize: vertical;
}

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

.payment-options {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.payment-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.payment-options input {
  width: auto;
  accent-color: var(--purple);
}

.secure-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-summary {
  position: sticky;
  top: 92px;
}

.mini-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mini-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--soft);
}

.mini-item strong {
  display: block;
  color: var(--black);
  line-height: 1.3;
}

.mini-item span,
.mini-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-layout {
  grid-template-columns: 0.88fr 1.12fr;
}

.contact-panel {
  padding: 26px;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-details div {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
}

.contact-details a {
  display: inline-block;
  margin-right: 16px;
  color: var(--black);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-message {
  margin-top: 12px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #fafafa 0%, var(--off-white) 48%, #f2f2f2 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px 36px;
  padding: 64px 0 52px;
  align-items: start;
}

.footer-brand-col {
  display: grid;
  gap: 10px;
  align-content: start;
  max-width: 28rem;
}

.footer-brand-col .footer-brand {
  margin-bottom: 0;
}

.footer-eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
}

.footer-tagline {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.footer-priority-text {
  margin: 0;
  max-width: 26rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: 1.45rem;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: var(--black);
}

.footer-grid a:not(.brand).active {
  color: var(--black);
  font-weight: 600;
}

.footer-form button {
  min-width: 74px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 500;
  text-transform: none;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  font-size: 0.86rem;
}

@media (max-width: 1120px) {
  .product-grid,
  .shop-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 40rem;
  }

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

  .home-highlight {
    min-height: 80vh;
  }

  .home-highlight__inner {
    min-height: 80vh;
  }

  .home-about-split__inner {
    grid-template-columns: 1fr;
  }

  .home-about-split__media {
    max-height: 420px;
  }

  .home-about-split__media img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .product-layout,
  .cart-layout,
  .checkout-layout,
  .contact-layout,
  .image-copy {
    grid-template-columns: 1fr;
  }

  .cart-layout.cart-filled-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery,
  .checkout-summary,
  .cart-summary-panel {
    position: static;
    top: auto;
  }

  .hero,
  .hero-slider {
    min-height: 80vh;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .section {
    padding: 72px 0;
  }

  .home-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .home-collection-bar {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 14px;
  }

  .home-collection-bar__title {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .home-collection-bar__left {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .home-collection-bar__link {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  .home-after-hero {
    padding-top: 56px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 31;
  }

  .logo-brand img {
    height: 40px;
  }

  .search-form {
    width: 170px;
    min-width: 170px;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 220ms ease;
  }

  .nav-open .nav-menu {
    transform: translateX(0);
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-menu a {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--black);
    font-size: 1rem;
    text-align: center;
  }

  .hero,
  .hero-slider {
    min-height: 80vh;
  }

  .hero-content {
    padding: 84px 0 116px;
  }

  .hero-controls {
    bottom: 22px;
  }

  .section-heading,
  .newsletter-card,
  .split-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .footer-form {
    flex-direction: column;
  }

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

  .product-grid {
    gap: 30px 18px;
  }

  .cart-item.cart-item-card {
    grid-template-columns: 88px 1fr;
    grid-template-rows: auto auto auto;
  }

  .cart-item.cart-item-card img {
    width: 88px;
    height: 88px;
    grid-row: 1 / span 3;
    align-self: start;
  }

  .cart-item.cart-item-card .cart-item-main {
    grid-column: 2;
    grid-row: 1;
  }

  .cart-item.cart-item-card > .price {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .cart-item.cart-item-card > .cart-remove {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    padding-top: 4px;
  }

  .cart-layout.cart-filled-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-summary-panel {
    position: static;
    top: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .cart-panel {
    min-width: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 44px 0 32px;
  }

  .footer-brand-col {
    grid-column: auto;
    max-width: none;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand-col .footer-brand {
    font-size: 1.85rem;
  }

  .footer-brand-col .footer-brand span {
    font-size: 0.88rem;
  }

  .footer-priority-text {
    max-width: none;
    font-size: 0.9rem;
  }

  .footer-grid > div:not(.footer-brand-col) {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }

  .footer-grid > div:not(.footer-brand-col):last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer-grid h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-grid a:not(.brand) {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

  .footer-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .footer-form input {
    width: 100%;
  }

  .footer-form button {
    width: 100%;
    min-height: 46px;
  }

  .footer-bottom {
    padding: 20px 0 28px;
    text-align: center;
  }

  .footer-bottom p {
    margin: 0;
    line-height: 1.55;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .page-hero,
  .page-hero.compact {
    padding: 64px 0 44px;
  }

  .product-grid,
  .shop-grid,
  .category-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .home-featured-card .product-info h3 {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

  .nav {
    gap: 12px;
  }

  .logo-brand {
    justify-self: center;
  }

  .logo-brand img {
    height: 46px;
    max-width: min(148px, 44vw);
  }

  .search-form {
    width: 42px;
    min-width: 42px;
    border: 0;
  }

  .search-form input {
    display: none;
  }

  .search-form.search-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 45;
    width: min(360px, calc(100vw - 32px));
    min-width: 0;
    border: 1px solid var(--black);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  }

  .search-form.search-open input {
    display: block;
  }

  .search-form.search-open .search-results {
    width: 100%;
  }

  .search-form .icon-button {
    border: 0;
    background: transparent;
  }

  .hero,
  .hero-slider {
    min-height: 80vh;
  }

  .hero-content {
    padding: 72px 0 108px;
  }

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

  .hero-dots button {
    width: 24px;
  }

  .hero-dots button.active {
    width: 38px;
  }

  .newsletter-card,
  .form-card,
  .summary-card,
  .contact-panel,
  .empty-cart {
    padding: 20px;
  }

  .thumbnail-row {
    gap: 8px;
  }

  .mini-item {
    grid-template-columns: 56px 1fr;
  }

  .mini-item p {
    grid-column: 2;
  }

  .footer-grid {
    padding: 36px 0 28px;
  }

  .footer-brand-col {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .footer-grid > div:not(.footer-brand-col) {
    padding: 18px 0;
  }

  .footer-bottom {
    padding: 18px 0 32px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
