:root {
  --ink: #11100f;
  --coal: #272321;
  --paper: #fffefd;
  --porcelain: #faf8f5;
  --soft: #eee8e0;
  --line: #e3ded8;
  --muted: #746d66;
  --red: #e52c20;
  --red-dark: #bc2118;
  --blue: #dce8f1;
  --pink: #f4dfe2;
  --green: #e2ebe1;
  --shadow: 0 24px 70px rgba(17, 16, 15, 0.16);
  --header: 74px;
  --font: "Helvetica Neue", Avenir, "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --display-modern: "Helvetica Neue", Avenir, "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  --display-classic: "Times New Roman", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 430;
}

body:has(.cart-drawer[aria-hidden="false"]),
body:has(.mega-menu[aria-hidden="false"]),
body:has(.auth-modal[aria-hidden="false"]),
body:has(.zoom-gallery[aria-hidden="false"]),
body:has(.payment-modal[aria-hidden="false"]),
body:has(.filters-panel[aria-hidden="false"]) {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  min-height: var(--header);
  padding: 0 26px;
  margin-bottom: 0;
  background: rgba(255, 254, 253, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, margin-bottom 180ms ease;
}

.site-header.is-overlay {
  margin-bottom: calc(var(--header) * -1);
  background: rgba(255, 255, 255, 0) !important;
  background-color: rgba(255, 255, 255, 0) !important;
  background-image: none !important;
  border-bottom-color: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 253, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 16px 44px rgba(17, 16, 15, 0.08);
  color: var(--ink);
}

.nav-cluster,
.nav-cluster-right,
.quick-nav {
  display: flex;
  align-items: center;
}

.nav-cluster {
  position: relative;
  gap: 8px;
}

.nav-cluster-right {
  justify-content: flex-end;
}

.quick-nav {
  display: none;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.quick-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand {
  justify-self: center;
  color: inherit;
  line-height: 0;
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.brand-logo-box {
  display: grid;
  width: clamp(104px, 10vw, 148px);
  height: 38px;
  place-items: center;
  overflow: hidden;
}

.brand-logo-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-box-donella {
  width: clamp(108px, 10.5vw, 154px);
}

.brand-logo-box-dnl {
  width: clamp(104px, 10vw, 148px);
}

.brand-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: currentColor;
  opacity: 0.22;
}

.drawer-brand {
  justify-content: flex-start;
}

.icon-button,
.plain-icon {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  text-decoration: none;
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#menuButton span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.plain-icon {
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.close-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
}

.cart-button span {
  position: absolute;
  right: 0;
  bottom: 2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.icon-button:focus-visible,
.plain-icon:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.primary-link:focus-visible,
.ghost-link:focus-visible,
.hero-arrow:focus-visible,
.filter-chip:focus-visible,
.segmented button:focus-visible,
.size-grid button:focus-visible,
.swatches button:focus-visible,
.favorite-button:focus-visible,
.quick-add button:focus-visible,
.quick-add select:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #e7ded5;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.44)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12vh 24px 8vh;
  text-align: center;
  color: #fff;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: rgba(17, 16, 15, 0.16);
  color: #fff;
  cursor: pointer;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.hero-font-selector {
  position: absolute;
  right: 28px;
  bottom: 76px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-font-selector span {
  font-weight: 700;
}

.hero-font-selector button {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.hero-font-selector button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 180ms ease;
}

.hero-font-selector button:hover::after,
.hero-font-selector button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-content h1,
.collection-hero h1,
.page-head h1,
.success-screen h1,
.pdp h1,
.collection-stories h2,
.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-font-modern .hero-content h1 {
  font-family: var(--display-modern);
  font-weight: 300;
  line-height: 0.98;
}

.hero-font-classic .hero-content h1 {
  font-family: var(--display-classic);
  font-style: italic;
  font-weight: 400;
}

.hero-font-modern .hero-content p:not(.eyebrow) {
  font-family: var(--display-modern);
  font-weight: 420;
}

.hero-font-classic .hero-content p:not(.eyebrow) {
  font-family: var(--display-classic);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
}

.hero-content h1 {
  font-size: clamp(62px, 11vw, 142px);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 430;
  line-height: 1.45;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.primary-link,
.ghost-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-link,
.primary-button {
  background: var(--red);
  color: #fff;
}

.primary-link:hover,
.primary-button:hover {
  background: var(--red-dark);
}

.ghost-link,
.secondary-button {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.wide {
  width: 100%;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.hero-dots {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-arrow {
  position: absolute;
  top: 54%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(17, 16, 15, 0.18);
  color: #fff;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  border-color: #fff;
  background: rgba(17, 16, 15, 0.32);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-left {
  left: 28px;
}

.hero-arrow-right {
  right: 28px;
}

.hero-dots button {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dots .is-active {
  background: #fff;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 0;
}

.category-tile {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: rgba(255, 254, 253, 0.84);
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.category-tile:last-child {
  border-right: 0;
}

.category-tile:hover {
  background: var(--porcelain);
  color: var(--ink);
}

.category-tile.is-active {
  color: var(--ink);
}

.category-tile::after {
  content: "";
  position: absolute;
  right: 22%;
  bottom: 0;
  left: 22%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 180ms ease;
}

.category-tile:hover::after,
.category-tile.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.category-tile span {
  display: block;
  font-family: var(--display-modern);
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 360;
  line-height: 1;
  text-transform: uppercase;
}

.home-product-switcher {
  padding: 18px 0 44px;
}

.home-product-track {
  transform: translateX(0);
  transition: opacity 180ms ease, transform 220ms ease;
}

.home-product-track.is-switching {
  opacity: 0;
  transform: translateX(-24px);
}

.home-product-track.is-entering {
  animation: productSlideIn 260ms ease both;
}

@keyframes productSlideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.text-link,
.text-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
  cursor: pointer;
}

.collection-stories {
  display: grid;
  gap: 34px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 28px 36px;
  transition: opacity 180ms ease, transform 220ms ease;
}

.collection-stories.is-switching {
  opacity: 0;
  transform: translateX(-18px);
}

.collection-stories.is-entering {
  animation: productSlideIn 260ms ease both;
}

.story-panel {
  display: grid;
  gap: 22px;
  align-items: center;
}

.story-panel-lead,
.story-panel-split {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.story-panel-full {
  gap: 18px;
}

.story-visual {
  min-height: 340px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.76), transparent 22%),
    linear-gradient(135deg, #f6e3e3, #fff 120%);
  overflow: hidden;
  position: relative;
}

.story-visual.has-image {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #f7f4f0;
}

.story-visual.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-visual.has-image::before {
  display: none;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 14% 34% 14%;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-radius: 999px 999px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.14)),
    repeating-linear-gradient(90deg, rgba(17, 16, 15, 0.04) 0 2px, transparent 2px 8px);
}

.story-visual.is-dnl {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), transparent 22%),
    linear-gradient(135deg, #d7edf2, #fff 120%);
}

.story-visual.is-kids {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.76), transparent 22%),
    linear-gradient(135deg, #f4e7f2, #e6f1ec 120%);
}

.story-copy {
  max-width: 520px;
}

.dynamic-story.is-dnl {
  background: #eef8fb;
}

.dynamic-story.is-donella {
  background: #fff7f4;
}

.story-copy h2 {
  font-size: clamp(28px, 3.4vw, 52px);
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.story-copy-under {
  max-width: 760px;
}

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

.product-section {
  padding: 34px 0 76px;
}

.section-heading {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 0 28px 28px;
}

.section-heading h2,
.collection-hero h1,
.page-head h1,
.success-screen h1 {
  font-size: clamp(36px, 5.8vw, 74px);
}

.section-heading-compact h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.section-heading-compact {
  align-items: center;
}

.section-heading p:not(.eyebrow),
.collection-hero p,
.page-head p,
.success-screen p,
.pdp-desc {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading > p {
  max-width: 410px;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.product-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-visual {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(145deg, var(--tone, var(--soft)), #fff 130%);
  transition: background 240ms ease;
}

.product-visual.has-photo {
  background: #f8f8f6;
}

.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.025);
}

.product-visual.has-photo::before,
.product-visual.has-photo .fabric-lines,
.product-visual.has-photo .visual-mark {
  display: none;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 15% 24% 18%;
  border: 1px solid rgba(17, 16, 15, 0.14);
  border-radius: 999px 999px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.14)),
    repeating-linear-gradient(90deg, rgba(17, 16, 15, 0.04) 0 2px, transparent 2px 8px);
  box-shadow: inset 0 -22px 60px rgba(255, 255, 255, 0.28);
  transform: translateY(6px);
  transition: transform 220ms ease;
}

.product-card:hover .product-visual::before {
  transform: translateY(0) scale(1.035);
}

.visual-mark {
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(17, 16, 15, 0.45);
  font-family: var(--serif);
  font-size: 22px;
}

.product-card:has(.product-badges) .visual-mark {
  top: 58px;
}

.product-badges {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: grid;
  gap: 7px;
}

.product-badges span {
  width: max-content;
  border: 1px solid rgba(17, 16, 15, 0.22);
  background: rgba(255, 255, 255, 0.88);
  padding: 7px 9px;
  color: var(--coal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(17, 16, 15, 0.08);
  backdrop-filter: blur(8px);
}

.product-badges .badge-sale {
  border-color: rgba(229, 44, 32, 0.76);
  background: rgba(255, 246, 245, 0.94);
  color: var(--red-dark);
}

.product-badges .badge-new {
  border-color: rgba(17, 16, 15, 0.34);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.favorite-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.favorite-button:hover {
  transform: scale(1.04);
}

.favorite-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.favorite-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.favorite-button.is-active svg {
  fill: currentColor;
}

.fabric-lines {
  position: absolute;
  inset: auto 20px 20px;
  height: 46px;
  border-top: 1px solid rgba(17, 16, 15, 0.1);
  border-bottom: 1px solid rgba(17, 16, 15, 0.1);
}

.gallery-controls {
  position: absolute;
  top: 42%;
  right: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-card:hover .gallery-controls,
.product-card:focus-within .gallery-controls {
  opacity: 1;
  transform: translateY(0);
}

.gallery-controls button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.gallery-progress {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 2px;
  overflow: hidden;
  background: rgba(17, 16, 15, 0.12);
  opacity: 0;
  transition: opacity 160ms ease;
}

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

.gallery-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: rgba(17, 16, 15, 0.5);
  transform: translateX(calc(var(--gallery-step, 0) * 100%));
  transition: transform 220ms ease;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  min-height: 68px;
  padding: 16px 20px;
  align-items: center;
}

.product-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.product-price {
  margin: 0;
  font-size: 17px;
  font-weight: 720;
}

.product-price.is-sale {
  display: grid;
  gap: 2px;
  text-align: right;
}

.product-price del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 520;
}

.product-price strong {
  font: inherit;
}

.quick-add {
  display: grid;
  grid-template-columns: minmax(116px, 0.92fr) 1fr;
  gap: 8px;
  border-top: 1px solid #f0ece7;
  background: #fff;
  padding: 10px;
}

.quick-add select,
.quick-add button {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 620;
  cursor: pointer;
}

.quick-add select {
  border-radius: 6px;
  padding: 0 30px 0 12px;
}

.quick-add button {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.quick-add button:hover {
  background: var(--red-dark);
}

.collection-hero,
.page-head {
  display: flex;
  min-height: 122px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px 22px;
  background: linear-gradient(135deg, var(--porcelain), #fff, var(--blue));
}

.page-head-compact {
  min-height: 92px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.page-head-compact h1 {
  font-size: clamp(28px, 3vw, 38px);
}

.collection-hero.is-dnl {
  background: linear-gradient(135deg, #eef8fa, #d9eef3);
}

.collection-hero.is-donella {
  background: linear-gradient(135deg, var(--porcelain), #fff8f6);
}

.collection-hero > div:first-child,
.page-head > * {
  max-width: 760px;
}

.collection-hero h1 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.collection-hero p:not(.eyebrow) {
  margin: 8px 0 0;
  max-width: 560px;
  font-size: 14px;
}

.collection-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.collection-metrics span,
.active-filters button,
.active-filters a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 14px;
  color: var(--coal);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.catalog-layout {
  display: block;
}

.filters-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 55;
  width: min(100%, 380px);
  height: 100svh;
  padding: 28px;
  overflow: auto;
  border-right: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(-104%);
  transition: transform 220ms ease;
}

.filters-panel[aria-hidden="false"] {
  transform: translateX(0);
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.filter-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-head h2,
.summary-panel h2,
.drawer-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
}

.filter-group {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.filter-group p {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 950;
}

.filter-group label {
  display: block;
  margin: 12px 0;
  color: var(--coal);
  font-size: 14px;
}

.filter-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.filter-category-list a {
  display: grid;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.filter-category-list a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip,
.segmented button,
.size-grid button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.filter-chip {
  padding: 0 14px;
}

.filter-chip.is-active,
.segmented .is-active,
.size-grid .is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.catalog-main {
  min-width: 0;
  padding: 28px 0 72px;
}

.catalog-titlebar {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-titlebar > div {
  min-width: 0;
}

.catalog-heading-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-trigger {
  position: relative;
  min-height: 0;
  padding: 0 0 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
  transform: scaleX(0.56);
  transform-origin: left;
  transition: opacity 160ms ease, transform 180ms ease;
}

.filter-trigger:hover::after,
.filter-trigger:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.range-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.range-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.dual-range {
  position: relative;
  height: 34px;
  margin-top: 18px;
}

.dual-range-track {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--line) 0,
      var(--line) var(--min),
      var(--red) var(--min),
      var(--red) var(--max),
      var(--line) var(--max),
      var(--line) 100%
    );
  transform: translateY(-50%);
}

.dual-range input {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
}

.dual-range input::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  pointer-events: auto;
  appearance: none;
}

.dual-range input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  pointer-events: auto;
}

.catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px 24px;
}

.catalog-toolbar h2 {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 28px);
  font-family: var(--display-modern);
  font-weight: 420;
  line-height: 1.1;
}

.select-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.select-label select {
  min-height: 30px;
  border: 0;
  border-bottom: 1px solid rgba(17, 16, 15, 0.2);
  background: transparent;
  padding: 0 24px 4px 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 520;
  cursor: pointer;
}

.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.view-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

.view-switch > span {
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.view-switch button {
  position: relative;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 0 8px;
  cursor: pointer;
}

.view-switch button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 180ms ease;
}

.view-switch button:hover::after,
.view-switch button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.grid-icon {
  display: grid;
  width: 20px;
  height: 18px;
  gap: 3px;
}

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

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

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

.grid-icon i {
  display: block;
  min-width: 0;
  background: currentColor;
  opacity: 0.5;
}

.view-switch button.is-active .grid-icon i,
.view-switch button:hover .grid-icon i {
  opacity: 0.95;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 28px 24px;
}

.catalog-heading-row .active-filters {
  padding: 0;
}

.catalog-heading-row .active-filters button,
.catalog-heading-row .active-filters a {
  border: 0;
  border-bottom: 1px solid rgba(17, 16, 15, 0.28);
  background: transparent;
  padding: 4px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 520;
}

.active-filters button {
  cursor: pointer;
}

.catalog-grid {
  max-width: none;
  padding: 0 28px;
}

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

.catalog-grid.view-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  background: var(--porcelain);
}

.empty-state h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 30px;
}

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

.pdp {
  padding: 28px;
}

.pdp-toolbar {
  display: flex;
  max-width: 1440px;
  margin: 0 auto 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.segmented {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  border: 1px solid var(--ink);
}

.segmented button {
  border: 0;
  border-right: 1px solid var(--ink);
  background: #fff;
}

.segmented button:last-child {
  border-right: 0;
}

.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  max-width: 1440px;
  margin: 0 auto;
  gap: 34px;
  align-items: start;
}

.pdp.is-suwen .pdp-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  max-width: 1220px;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #fff;
}

.pdp.is-suwen .pdp-gallery {
  grid-template-columns: 1fr;
}

.pdp.is-suwen .gallery-tile:not(:first-child) {
  display: none;
}

.gallery-tile {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 2 / 3;
  place-items: end center;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.8), transparent 25%),
    linear-gradient(145deg, var(--tone), #fff 130%);
  color: rgba(17, 16, 15, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
  cursor: zoom-in;
}

.gallery-tile.has-photo {
  background: #f7f7f4;
}

.gallery-tile.has-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-tile.has-photo::before,
.gallery-tile.has-photo span {
  display: none;
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 14% 28% 20%;
  border: 1px solid rgba(17, 16, 15, 0.13);
  border-radius: 999px 999px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(90deg, rgba(17, 16, 15, 0.04) 0 2px, transparent 2px 8px);
}

.buy-panel {
  position: sticky;
  top: calc(var(--header) + 24px);
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
}

.buy-panel-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.pdp h1 {
  font-size: clamp(34px, 4.3vw, 60px);
}

.pdp-favorite {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.pdp-favorite svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdp-favorite.is-active {
  border-color: rgba(229, 44, 32, 0.2);
  background: #fff4f3;
  color: var(--red);
}

.pdp-favorite.is-active svg {
  fill: currentColor;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0;
  font-size: 24px;
  font-weight: 950;
}

.pdp-price del {
  color: var(--muted);
  font-size: 15px;
}

.pdp-price strong {
  font: inherit;
}

.pdp-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pdp-meta-row strong {
  color: var(--ink);
}

.option-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.option-title,
.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 950;
}

.option-title small {
  color: var(--muted);
}

.option-title button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.swatches,
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.swatches button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 3px #fff;
  cursor: pointer;
}

.swatches .is-active {
  border-color: var(--ink);
}

.size-grid button {
  position: relative;
  display: grid;
  min-width: 64px;
  min-height: 44px;
  place-items: center;
}

.size-grid button.is-out {
  color: rgba(17, 16, 15, 0.34);
  cursor: not-allowed;
}

.size-grid button.is-out::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 1px;
  background: rgba(17, 16, 15, 0.42);
  transform: rotate(-18deg);
}

.form-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 40px 48px 40px;
  align-items: center;
  border: 1px solid var(--line);
}

.stepper button {
  min-height: 38px;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.stepper output {
  text-align: center;
  font-weight: 900;
}

.stepper.small {
  grid-template-columns: 32px 38px 32px;
}

.pdp-accordions {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.pdp-accordions details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.pdp-accordions summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
}

.pdp-accordions p {
  color: var(--muted);
  line-height: 1.6;
}

.zoom-gallery {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 1fr auto;
  gap: 18px;
  padding: 32px;
  background: rgba(255, 254, 253, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.zoom-gallery[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.zoom-stage {
  position: relative;
  grid-column: 2;
  display: grid;
  min-height: 72svh;
  place-items: end center;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(145deg, var(--tone), #fff 130%);
}

.zoom-stage.has-photo {
  background: rgba(255, 255, 255, 0.96);
}

.zoom-stage.has-photo img {
  display: block;
  max-width: min(74vw, 760px);
  max-height: 82vh;
  object-fit: contain;
}

.zoom-stage.has-photo::before,
.zoom-stage.has-photo span {
  display: none;
}

.zoom-stage::before {
  content: "";
  position: absolute;
  inset: 10% 34% 16%;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-radius: 999px 999px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(90deg, rgba(17, 16, 15, 0.04) 0 2px, transparent 2px 8px);
}

.zoom-stage span {
  position: relative;
  color: rgba(17, 16, 15, 0.46);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.zoom-close,
.zoom-arrow {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.zoom-close {
  position: absolute;
  right: 26px;
  top: 22px;
  z-index: 2;
  font-size: 34px;
}

.zoom-arrow {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 46px;
}

.zoom-arrow-left {
  grid-column: 1;
}

.zoom-arrow-right {
  grid-column: 3;
}

.zoom-thumbs {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.zoom-thumbs button {
  width: 52px;
  height: 70px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--tone), #fff 130%);
  cursor: pointer;
  opacity: 0.62;
}

.zoom-thumbs button.has-photo {
  overflow: hidden;
  background: #fff;
}

.zoom-thumbs button.has-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-thumbs button.is-active {
  border-color: var(--ink);
  opacity: 1;
}

.cart-page,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  max-width: 1320px;
  margin: 0 auto;
  gap: 32px;
  padding: 38px 28px 86px;
  align-items: start;
}

.cart-list,
.checkout-steps {
  display: grid;
  gap: 14px;
}

.cart-line {
  display: grid;
  grid-template-columns: 86px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.cart-line.is-compact {
  grid-template-columns: 58px 1fr auto;
  padding: 12px 0;
  border-width: 0 0 1px;
}

.cart-line a {
  font-weight: 900;
  text-decoration: none;
}

.cart-line p {
  margin: 7px 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-visual {
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.74), transparent 25%),
    linear-gradient(145deg, var(--tone), #fff 125%);
}

.mini-visual.has-photo {
  overflow: hidden;
  background: #f7f7f4;
}

.mini-visual.has-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.summary-panel.sticky {
  position: sticky;
  top: calc(var(--header) + 24px);
}

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

.summary-row.total {
  border-bottom: 0;
  font-size: 20px;
}

fieldset {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

legend {
  padding: 0 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

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

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

label {
  color: var(--coal);
  font-size: 13px;
  font-weight: 850;
}

input,
textarea {
  display: block;
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px;
  color: var(--ink);
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.radio-card {
  position: relative;
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card span {
  display: block;
  margin-top: 0;
  color: inherit;
  font-weight: 650;
}

.radio-card:has(input:checked) {
  border-color: #4a9fd4;
  background: #f8fcff;
  box-shadow: inset 3px 0 0 #4a9fd4;
  color: var(--ink);
}

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

.payment-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.bank-info {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.bank-info p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.bank-info p:last-child {
  border-bottom: 0;
}

.bank-info span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.payment-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.payment-modal-card {
  position: relative;
  width: min(100%, 480px);
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.payment-modal-card h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.payment-close {
  position: absolute;
  right: 16px;
  top: 14px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
  padding: 38px 28px 86px;
  align-items: start;
}

.profile-panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.profile-content {
  min-height: 420px;
}

.profile-panel h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
}

.profile-list {
  display: grid;
  gap: 10px;
}

.profile-list p,
.profile-card-line {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.profile-list span,
.profile-card-line span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.profile-list strong,
.profile-card-line strong {
  font-size: 15px;
}

.address-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.address-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.address-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.address-card em {
  justify-self: start;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.address-card.is-current {
  border-color: var(--ink);
  box-shadow: inset 3px 0 0 var(--ink);
}

.address-card.is-current em {
  color: var(--red);
}

.profile-menu {
  display: grid;
  position: sticky;
  top: calc(var(--header) + 18px);
  border: 1px solid var(--line);
  background: #fff;
}

.profile-menu button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.profile-menu button:last-child {
  border-bottom: 0;
}

.profile-menu button.is-active {
  color: var(--ink);
  box-shadow: inset 3px 0 0 var(--ink);
}

.success-screen {
  display: grid;
  min-height: calc(100svh - var(--header));
  place-items: center;
  padding: 34px;
  text-align: center;
  background: linear-gradient(135deg, #fff, var(--green), var(--pink));
}

.success-screen > * {
  max-width: 720px;
}

.mega-menu,
.cart-drawer,
.auth-modal {
  position: fixed;
  z-index: 50;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, opacity 220ms ease;
}

.mega-menu,
.cart-drawer {
  top: 0;
  width: min(100%, 440px);
  height: 100svh;
  padding: 26px;
  overflow: auto;
}

.mega-menu {
  left: 0;
  transform: translateX(-104%);
}

.cart-drawer {
  right: 0;
  transform: translateX(104%);
}

.mega-menu[aria-hidden="false"],
.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.auth-modal {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 16, 15, 0.28);
  opacity: 0;
  pointer-events: none;
}

.auth-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.auth-card {
  width: min(100%, 440px);
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform 220ms ease;
}

.auth-modal[aria-hidden="false"] .auth-card {
  transform: translateY(0);
}

.auth-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
}

.auth-actions {
  display: grid;
  gap: 12px;
}

.auth-guest {
  justify-self: center;
  margin-top: 6px;
}

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.mega-grid {
  display: grid;
  gap: 18px;
}

.mega-grid a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.2;
  text-decoration: none;
}

.menu-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.drawer-lines {
  display: grid;
  gap: 0;
}

.drawer-summary {
  position: sticky;
  bottom: -26px;
  margin: 24px -26px -26px;
  padding: 20px 26px 26px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.drawer-summary .primary-button,
.drawer-summary .secondary-button,
.summary-panel .primary-button {
  margin-top: 14px;
}

.search-panel {
  position: absolute;
  left: 92px;
  top: 50%;
  z-index: 35;
  width: min(340px, calc(100vw - 120px));
  opacity: 0;
  pointer-events: none;
  transform: translate(-14px, -50%) scaleX(0.94);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.search-panel[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scaleX(1);
}

.search-box {
  position: relative;
}

.search-box label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-box input {
  min-height: 42px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(17, 16, 15, 0.08);
}

.search-box #searchResults {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 360px;
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-result {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.search-empty {
  margin: 0;
  padding: 14px;
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 70;
  max-width: calc(100% - 32px);
  padding: 13px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(17, 16, 15, 0.36);
}

.site-footer {
  margin-top: 58px;
  padding: 58px 28px 28px;
  border-top: 1px solid var(--line);
  background: #f8f6f2;
  color: var(--ink);
}

.footer-brand,
.footer-grid,
.footer-contact,
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  max-width: 1440px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  padding-bottom: 42px;
}

.footer-brand h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 0.98;
}

.footer-brand p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 430;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 0.18fr)) minmax(210px, 0.24fr) minmax(220px, 0.24fr) minmax(280px, 0.34fr);
  gap: 24px;
  align-items: end;
  padding: 28px 0;
}

.footer-contact span,
.footer-socials > span,
.footer-apps > span,
.footer-newsletter label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.footer-contact strong {
  font-size: 16px;
  font-weight: 520;
}

.footer-icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-icon-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(17, 16, 15, 0.22);
  color: var(--ink);
  font-size: 12px;
  font-weight: 520;
  text-decoration: none;
}

.footer-icon-links a span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(17, 16, 15, 0.18);
  color: var(--ink);
  font-size: 9px;
  font-weight: 720;
}

.footer-store-links a span {
  width: 34px;
}

.footer-newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(17, 16, 15, 0.34);
}

.footer-newsletter input,
.footer-newsletter button {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.footer-newsletter button {
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 120px 1fr 120px;
  }

  .brand {
    justify-self: center;
  }

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

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

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

  .story-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-contact {
    grid-template-columns: 1fr;
  }

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

  .pdp-grid,
  .pdp.is-suwen .pdp-grid {
    grid-template-columns: 1fr;
  }

  .buy-panel,
  .summary-panel.sticky {
    position: static;
  }

  .gallery-tile {
    min-height: 0;
  }

  .cart-page,
  .checkout-layout,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-menu {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 66px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 14px;
  }

  .brand-lockup {
    gap: 7px;
  }

  .brand-logo-box {
    width: 84px;
    height: 30px;
  }

  .brand-logo-box-donella {
    width: 88px;
  }

  .brand-logo-box-dnl {
    width: 84px;
  }

  .brand-divider {
    height: 22px;
  }

  .hide-mobile {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: calc(92svh - var(--header));
  }

  .hero-content {
    padding: 9vh 18px 8vh;
  }

  .hero-dots {
    right: 18px;
    bottom: 18px;
  }

  .hero-font-selector {
    right: 18px;
    bottom: 66px;
    max-width: calc(100% - 36px);
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-arrow {
    top: 58%;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .hero-arrow-left {
    left: 14px;
  }

  .hero-arrow-right {
    right: 14px;
  }

  .category-strip {
    grid-template-columns: 1fr 1fr;
  }

  .category-tile {
    min-height: 52px;
    padding: 12px;
  }

  .section-heading,
  .collection-hero,
  .page-head,
  .catalog-toolbar,
  .pdp-toolbar {
    display: grid;
  }

  .collection-stories {
    padding: 48px 18px 30px;
  }

  .story-panel-lead,
  .story-panel-split {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 280px;
  }

  .story-visual.has-image {
    min-height: 0;
  }

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

  .section-heading,
  .catalog-toolbar,
  .active-filters {
    padding-left: 18px;
    padding-right: 18px;
  }

  .catalog-tools {
    justify-content: flex-start;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 18px;
    padding-right: 18px;
  }

  .catalog-grid.view-2,
  .catalog-grid.view-3,
  .catalog-grid.view-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdp {
    padding: 18px;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-tile:not(:first-child) {
    min-height: 0;
  }

  .buy-panel {
    padding: 22px;
  }

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

  .cart-line .stepper,
  .cart-line .text-button {
    grid-column: 2;
    justify-self: start;
  }

  .profile-content {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-actions,
  .primary-link,
  .ghost-link,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

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

  .catalog-grid.view-2,
  .catalog-grid.view-3,
  .catalog-grid.view-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-add {
    grid-template-columns: 1fr;
  }

  .search-panel {
    left: 48px;
    width: calc(100vw - 70px);
  }

  .story-products {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: grid;
  }

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

  .product-info {
    min-height: 64px;
  }

  .collection-hero,
  .page-head {
    min-height: 230px;
    padding: 44px 18px 30px;
  }

  .segmented {
    width: 100%;
  }

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

  .mega-menu,
  .cart-drawer {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
