:root {
  --bg: #ffffff;
  --bg-deep: #f4f4f3;
  --ink: #191919;
  --ink-soft: #5c5c5c;
  --olive: #191919;
  --olive-deep: #111111;
  --chalk: #ffffff;
  --accent: #191919;
  --line: rgba(25, 25, 25, 0.12);
  --shadow: none;
  --radius: 0;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1280px;
  --dd-gray: #d9d9d7;
  --dd-muted: #6b6b6b;
}

html,
body.dd-body,
body {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
}

.grain {
  display: none;
}

.user-bar {
  display: none !important;
}

.dd-header.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--dd-gray);
  box-shadow: none;
}

.header-chrome {
  position: relative;
  z-index: 2;
}

.dd-header .header-bar {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0.85rem 1.25rem 0.35rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.dd-header .header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.dd-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
}

.dd-wordmark:hover {
  color: var(--ink);
}

.dd-search.header-search {
  display: flex;
  align-items: center;
  max-width: 240px;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.dd-search .search-field {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  border: 0;
  background: transparent;
}

.dd-search-icon {
  display: grid;
  place-items: center;
  color: var(--ink);
  flex: 0 0 auto;
}

.dd-search input {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  width: 100%;
  padding: 0.35rem 0;
  color: var(--ink);
}

.dd-search input::placeholder {
  color: #8a8a8a;
}

.dd-search button[type="submit"] {
  display: none;
}

.search-drop {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid var(--dd-gray);
  box-shadow: 0 32px 64px rgba(25, 25, 25, 0.12);
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-drop.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.search-drop-panel {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 1.1rem 1.25rem 1.5rem;
}

.search-drop-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.search-drop-head p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.search-drop-all {
  font-size: 0.82rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.search-drop-slider {
  position: relative;
}

.search-drop-slider.has-nav {
  padding: 0 1.7rem;
}

.search-drop-viewport {
  overflow: hidden;
}

.search-drop-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3.6rem) / 5);
  gap: 0.9rem;
  width: 100%;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.search-drop-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.search-drop-media {
  display: block;
  aspect-ratio: 4 / 5;
  background: #f2f2f0;
  overflow: hidden;
}

.search-drop-media img,
.search-drop-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.search-drop-ph {
  background: #eceae6;
}

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

.search-drop-meta {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0.1rem 0;
}

.search-drop-meta strong {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-drop-price {
  font-size: 0.88rem;
  font-weight: 500;
}

.search-drop-nav {
  position: absolute;
  top: 32%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--dd-gray);
  background: #fff;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.search-drop-nav.is-prev {
  left: 0;
}

.search-drop-nav.is-next {
  right: 0;
}

.search-drop-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

.search-drop-nav:not(:disabled):hover {
  border-color: var(--ink);
}

@media (max-width: 860px) {
  .search-drop {
    max-height: min(78vh, 640px);
    overflow: auto;
    box-shadow: 0 18px 40px rgba(25, 25, 25, 0.12);
  }

  .search-drop-panel {
    padding: 0.85rem 1rem 1.1rem;
  }

  .search-drop-nav {
    display: none;
  }

  .search-drop-viewport {
    overflow: visible;
  }

  .search-drop-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    transform: none !important;
  }

  .search-drop-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.7rem 0;
    border-top: 1px solid var(--dd-gray);
  }

  .search-drop-card:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .search-drop-media {
    aspect-ratio: 3 / 4;
  }

  .search-drop-meta {
    padding: 0;
  }

  .search-drop-card:hover .search-drop-media img {
    transform: none;
  }
}

.dd-header .header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem;
}

.dd-lang.lang-switch {
  border: 0;
  background: transparent;
  gap: 0;
}

.dd-lang .lang-btn {
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.3rem;
}

.dd-lang .lang-btn.active {
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}

.dd-account-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.2rem 0.15rem;
}

.dd-bag.cart-trigger {
  background: transparent;
  border: 0;
  color: var(--ink);
  box-shadow: none;
  position: relative;
  padding: 0.2rem;
  display: grid;
  place-items: center;
}

.dd-bag .cart-count {
  position: absolute;
  top: -0.35rem;
  right: -0.45rem;
  min-width: 1rem;
  height: 1rem;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  display: grid;
  place-items: center;
  padding: 0 0.2rem;
}

.dd-nav.cat-nav {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  padding: 0.15rem 1.25rem 0.9rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.dd-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
}

.dd-nav a:hover,
.dd-nav a.active,
.dd-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.btn {
  border-radius: 0;
  letter-spacing: 0.01em;
}

.btn-primary,
.hero-card-cta.btn-primary {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-primary:hover {
  background: #000;
}

.btn-ghost,
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

/* Homepage */
.dd-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  min-height: min(78vh, 720px);
  background: #f3f1ee;
}

.dd-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
}

.dd-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  font-weight: 600;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
}

.dd-hero-copy p {
  max-width: 16rem;
  margin: 0 0 1.6rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.dd-hero-media {
  position: relative;
  min-height: 320px;
  background: #111;
  overflow: hidden;
}

.dd-hero-slides {
  position: absolute;
  inset: 0;
}

.dd-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.dd-hero-slide.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.dd-hero-media img,
.dd-hero-slide img {
  width: 100%;
  height: 100%;
  min-height: min(78vh, 720px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.dd-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.88);
  color: #1c2418;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.dd-hero-prev { left: 0.7rem; }
.dd-hero-next { right: 0.7rem; }

.dd-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.dd-hero-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.45);
  cursor: pointer;
}

.dd-hero-dots button.is-on {
  background: #faf7f0;
}

.hero-hotspots {
  position: absolute;
  inset: 0;
}

.hero-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: inherit;
  z-index: 3;
}

.hero-hotspot-pulse {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(250, 247, 240, 0.92);
  animation: hero-hotspot-pulse 1.9s ease-out infinite;
}

.hero-hotspot-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #faf7f0;
  box-shadow: 0 0 0 2px rgba(28, 36, 24, 0.72);
  position: relative;
  z-index: 1;
}

.hero-hotspot-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  min-width: 8.5rem;
  max-width: 12rem;
  padding: 0.45rem 0.6rem;
  background: rgba(250, 247, 240, 0.96);
  color: #1c2418;
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(28, 36, 24, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  text-align: center;
}

.hero-hotspot:hover .hero-hotspot-tip,
.hero-hotspot:focus-visible .hero-hotspot-tip {
  opacity: 1;
}

@keyframes hero-hotspot-pulse {
  0% { transform: scale(0.45); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}

.dd-ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.7rem 0;
}

.dd-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: dd-marquee 36s linear infinite;
}

.dd-ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
}

.dd-ticker-sep {
  flex-shrink: 0;
}

@keyframes dd-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .dd-ticker-track {
    animation: none;
  }
}

.dd-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 3.5rem 1.25rem 1.5rem;
}

.dd-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dd-section-head h2,
.dd-cats h2,
.dd-editorial-copy h2,
.dd-shop-head h1,
.dd-pdp-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dd-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.dd-section-head a,
.dd-link {
  color: var(--ink);
  font-size: 0.92rem;
}

.dd-cats {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.dd-cats h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 1.25rem;
}

.dd-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.dd-cat-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.dd-cat-card img,
.dd-cat-card .dd-cat-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-cat-ph {
  background: #2a2a2a;
}

.dd-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
}

.dd-cat-card span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.dd-editorial {
  width: min(100%, var(--max));
  margin: 0 auto 1rem;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
}

.dd-editorial-media {
  min-height: 420px;
  background: #111;
  overflow: hidden;
}

.dd-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.dd-editorial-copy {
  background: var(--ink);
  color: #fff;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dd-editorial-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.dd-editorial-copy p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
}

.dd-editorial-copy a {
  color: #fff;
  width: fit-content;
  border-color: #fff;
}

.dd-values {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.dd-values h3 {
  font-size: 1rem;
  margin: 0.55rem 0 0.35rem;
}

.dd-values p {
  margin: 0;
  color: var(--dd-muted);
  font-size: 0.92rem;
}

.dd-value-icon {
  font-size: 1.15rem;
}

/* Product cards */
.item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 0.9rem;
}

.item-card-wrap {
  background: transparent;
  box-shadow: none;
}

.item-thumb {
  aspect-ratio: 4 / 5;
  background: #f2f2f0;
  border-radius: 0;
}

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

.item-card-col-btn {
  display: none;
}

.item-card-wrap .item-card-fav {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.15rem;
  z-index: 2;
}
.item-card-wrap .item-card-fav.is-on {
  color: #111;
}

.item-media {
  position: relative;
}

.item-meta {
  padding: 0.7rem 0.1rem 0;
}

.item-meta-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
}

.item-meta-top .title {
  flex: 1;
  min-width: 0;
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
}

.item-card-fit-btn {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.22rem 0.5rem;
  border: 1px solid var(--dd-gray);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
}

.item-card-fit-btn:hover {
  border-color: var(--ink);
}

.item-card-fit-btn.is-in {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.item-meta .brand-line {
  display: none;
}

.item-meta .title {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
}

.item-meta .price {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
}

.item-meta .size {
  display: block;
  color: var(--dd-muted);
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

/* Shop */
.dd-shop {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

.dd-crumb {
  font-size: 0.82rem;
  color: var(--dd-muted);
  width: min(100%, var(--max));
  margin: 1rem auto 0.75rem;
  padding: 0 1.25rem;
}

.dd-shop .dd-crumb {
  width: auto;
  margin: 0 0 1.1rem;
  padding: 0;
}

.dd-crumb a {
  color: inherit;
  text-decoration: none;
}

.dd-shop-head h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 0.4rem;
}

.dd-shop-head p {
  margin: 0 0 1.5rem;
  color: var(--dd-muted);
}

.dd-shop-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2.25rem 2.5rem;
  align-items: start;
}

.dd-filters {
  position: sticky;
  top: 6.5rem;
}

.dd-filters .filter-group {
  border-top: 1px solid var(--dd-gray);
  padding: 0.55rem 0 0.6rem;
}

.dd-filters .filter-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.dd-filters summary,
.dd-filters .filter-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  margin-bottom: 0.35rem;
}

.dd-filters details summary::-webkit-details-marker {
  display: none;
}

.dd-filters details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dd-filters details > summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  opacity: 0.55;
}

.dd-filters details[open] > summary::after {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

#filter-form .dd-check input,
.dd-filters .filter-group .dd-check input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  min-width: 15px;
  padding: 0;
  margin: 0;
  border: 1px solid #b8b8b6;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  flex: none;
  box-sizing: border-box;
  cursor: pointer;
}

#filter-form .dd-check input:checked,
.dd-filters .filter-group .dd-check input[type="radio"]:checked {
  border-color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 4px var(--ink);
}

.dd-check {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  padding: 0.12rem 0;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--ink);
  cursor: pointer;
}

.dd-check span {
  min-width: 0;
}

.dd-check:hover span {
  color: var(--ink);
}

.dd-size-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.28rem;
}

.dd-chip,
.dd-filters .filter-group .dd-chip {
  display: flex;
  margin: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
}

.dd-chip--all {
  grid-column: 1 / -1;
}

.dd-chip input,
.dd-filters .filter-group .dd-chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  pointer-events: none;
}

.dd-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 1.65rem;
  padding: 0 0.3rem;
  border: 1px solid var(--dd-gray);
  background: #fff;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--ink);
  box-sizing: border-box;
}

.dd-chip--all span {
  min-width: 0;
  padding: 0 0.5rem;
}

.dd-chip input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.dd-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin-top: 0.05rem;
}

.dd-color {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
}

.dd-color.is-on {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}

.dd-price-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.3rem;
  align-items: center;
}

.dd-price-field {
  display: grid;
  gap: 0;
  min-width: 0;
}

.dd-price-field > span:not(.dd-price-input) {
  display: none;
}

.dd-price-input {
  display: flex;
  align-items: center;
  height: 1.85rem;
  border: 1px solid var(--dd-gray);
  background: #fff;
}

.dd-price-prefix {
  padding: 0 0.1rem 0 0.45rem;
  color: var(--dd-muted);
  font-size: 0.78rem;
}

#filter-form .dd-price-input input,
.dd-price-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.2rem 0.4rem 0.2rem 0.1rem;
  font: inherit;
  font-size: 0.8rem;
  color: var(--ink);
  box-sizing: border-box;
  -moz-appearance: textfield;
}

.dd-price-input input::-webkit-outer-spin-button,
.dd-price-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dd-price-input input:focus {
  outline: none;
}

.dd-price-input:focus-within {
  border-color: var(--ink);
}

.dd-price-dash {
  padding-bottom: 0;
  color: var(--dd-muted);
  font-size: 0.85rem;
  line-height: 1;
}

.dd-filters .filters-reset {
  width: auto;
  margin-top: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--dd-muted);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-align: left;
}

.dd-filters .filters-reset:hover {
  color: var(--ink);
  border-color: transparent;
}

.dd-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.1rem;
  min-height: 2rem;
}

.dd-h-filters {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.15rem;
  flex: 1;
  min-width: 0;
}

.dd-h-pill {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.28rem 0.7rem;
  font-size: 0.82rem;
  color: var(--dd-muted);
  cursor: pointer;
  white-space: nowrap;
}

.dd-h-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.dd-h-pill:hover {
  color: var(--ink);
}

.dd-h-pill:has(input:checked) {
  color: var(--ink);
  font-weight: 500;
  box-shadow: inset 0 -1px 0 var(--ink);
}

.dd-shop-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-size: 0.86rem;
  flex: none;
}

.dd-shop-tools .muted {
  margin: 0;
  white-space: nowrap;
}

.dd-shop-tools select {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  padding: 0.2rem 0;
}

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

/* Product */
.dd-pdp.detail {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: start;
  justify-content: stretch;
}

.dd-pdp .detail-info {
  max-width: none;
  width: 100%;
  min-width: 0;
}

.dd-gallery.gallery,
.dd-pdp .gallery,
.dd-pdp .gallery:has(.gallery-thumbs),
.dd-gallery.gallery:has(.gallery-thumbs) {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.dd-pdp .dd-gallery {
  --gallery-max-h: min(62dvh, calc(100svh - 17rem));
}

.dd-gallery .gallery-main {
  width: 100%;
  max-width: none;
  background: #f4f4f2;
  border-radius: 0;
  min-height: 0;
  max-height: var(--gallery-max-h);
  aspect-ratio: 3 / 4;
}

.dd-gallery .gallery-thumbs-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.4rem;
  align-items: center;
}

.dd-gallery .gallery-thumbs-nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--dd-gray);
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.dd-gallery .gallery-thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.45rem;
  margin-top: 0;
  max-height: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 0.05rem 0;
}

.dd-gallery .gallery-thumbs button {
  flex: 0 0 auto;
  width: 4.6rem;
  height: 4.6rem;
  border: 1px solid transparent;
  padding: 0;
  background: #f4f4f2;
  aspect-ratio: 1;
  overflow: hidden;
  scroll-snap-align: start;
}

.dd-gallery .gallery-thumbs button.active {
  border-color: var(--ink);
}

.dd-gallery .gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-unique {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dd-muted);
  margin: 0 0 0.55rem;
}

.dd-pdp-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.45rem;
  line-height: 1.1;
}

.dd-pdp .amount {
  font-size: 1.15rem;
  font-weight: 500;
}

.dd-pdp-lead {
  margin: 0.85rem 0 0.55rem;
  color: var(--ink-soft);
}

.dd-stock {
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: #c45c28;
}

.dd-pdp label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.dd-pdp-size {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.dd-pdp-size-label {
  color: var(--ink-soft);
}

.dd-pdp-size-value {
  font-weight: 500;
}

.dd-pdp select {
  width: 100%;
  border: 1px solid var(--dd-gray);
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: #fff;
  margin-bottom: 0.75rem;
}

.dd-meta {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0.75rem 0 1.1rem;
}

.dd-pdp-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.dd-pdp-actions .btn-primary {
  min-height: 48px;
}

.dd-pdp-fit {
  width: 100%;
  min-height: 44px;
  margin: 0 0 0.85rem;
}

.dd-pdp-fit.is-in {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.dd-heart {
  width: 48px;
  border: 1px solid var(--dd-gray);
  background: #fff;
  cursor: pointer;
}

.dd-help {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.dd-help a,
.dd-link-btn {
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
  text-align: left;
}

.pdp-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pdp-modal[hidden] {
  display: none !important;
}

.pdp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 24, 0.45);
}

.pdp-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: min(86vh, 40rem);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--dd-gray, #ddd);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 16px 48px rgba(28, 36, 24, 0.2);
}

.pdp-modal-card h2 {
  font-family: var(--font-display, Georgia, serif);
  margin: 0 1.5rem 0.85rem 0;
  font-size: 1.55rem;
  line-height: 1.15;
}

.pdp-modal-x {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink-soft);
  line-height: 1;
}

.pdp-modal-body h3 {
  margin: 1rem 0 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-modal-body p,
.pdp-modal-intro {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pdp-ask-form {
  display: grid;
  gap: 0.75rem;
}

.pdp-ask-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
}

.pdp-ask-form input,
.pdp-ask-form textarea {
  width: 100%;
  border: 1px solid var(--dd-gray);
  background: #fff;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.pdp-ask-form .btn {
  width: 100%;
}

body.pdp-modal-open {
  overflow: hidden;
}

.dd-acc details {
  border-top: 1px solid var(--dd-gray);
  padding: 0.85rem 0;
}

.dd-acc summary {
  cursor: pointer;
  font-weight: 500;
}

.dd-acc p,
.dd-acc table {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.dd-related {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.product-buy-bar {
  background: #fff;
  border-top: 1px solid var(--dd-gray);
}

/* Story / sustainability */
.dd-page {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.dd-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
}

.dd-page h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 2rem 0 0.6rem;
}

.dd-page p,
.dd-page li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Footer */
.dd-footer.site-footer {
  background: #fff;
  color: var(--ink);
  margin-top: 0;
  padding: 0;
  text-align: left;
}

.dd-footer-cta {
  background: var(--ink);
  color: #fff;
  padding: 2.4rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.dd-footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.35rem;
}

.dd-footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.dd-newsletter {
  display: flex;
  gap: 0;
  min-width: min(100%, 360px);
}

.dd-newsletter input {
  flex: 1;
  border: 0;
  padding: 0.85rem 0.9rem;
  font: inherit;
}

.dd-newsletter button {
  background: #fff;
  color: var(--ink);
  border: 0;
  padding: 0 1.1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.dd-footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.dd-footer-grid a,
.dd-footer-grid p {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  margin: 0.25rem 0;
  font-size: 0.92rem;
}

.dd-footer-label {
  font-weight: 600;
  color: var(--ink) !important;
  margin-bottom: 0.55rem !important;
}

.dd-wordmark--footer {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.dd-footer-tag {
  max-width: 14rem;
}

.dd-footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dd-muted);
  font-size: 0.8rem;
}

.dd-footer-motto {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-footer-links {
  display: none;
}

.dd-search-toggle {
  display: none;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.dd-filter-launch {
  display: none;
}

.dd-filters .filters-sheet-head {
  display: none;
}

.dd-filters .filters-apply {
  display: none;
}

@media (min-width: 981px) {
  .dd-h-filters {
    display: flex;
  }
  .dd-filters .filter-group--cats {
    display: none;
  }
}

@media (max-width: 980px) {
  .dd-hero,
  .dd-editorial,
  .dd-shop-layout,
  .dd-pdp.detail {
    grid-template-columns: 1fr;
  }

  .dd-hero {
    min-height: 0;
  }

  .dd-hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .dd-hero-media img,
  .dd-hero-slide img {
    min-height: 0;
    height: 100%;
  }

  .hero-hotspot {
    left: var(--x-m, var(--x));
    top: var(--y-m, var(--y));
  }

  .dd-nav.cat-nav {
    display: none !important;
  }

  .dd-header .dd-search.header-search {
    display: none;
  }

  .dd-header .dd-lang,
  .dd-header .dd-account-btn {
    display: none;
  }

  .dd-search-toggle {
    display: grid;
  }

  .dd-header .header-bar {
    grid-template-columns: 1fr auto 1fr;
    padding: 0.45rem 0.75rem;
    gap: 0.25rem;
    align-items: center;
  }

  .dd-header .header-left {
    gap: 0;
    justify-self: start;
  }

  .dd-header .brand.dd-wordmark {
    justify-self: center;
    grid-column: 2;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .dd-header .header-actions {
    gap: 0.1rem;
    justify-self: end;
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex !important;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .dd-wordmark {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    max-width: 100%;
    overflow: visible;
    line-height: 1.15;
  }

  .dd-header a.dd-wordmark.brand {
    line-height: 1.15;
  }

  .header-chrome.search-open .dd-header .dd-search.header-search,
  .header-chrome.search-open .dd-search.header-search {
    display: flex !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 70;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.85rem 0.7rem;
    background: #fff;
    border-bottom: 1px solid var(--dd-gray);
  }

  .dd-shop {
    padding: 0.85rem 0.9rem 5.5rem;
  }

  .dd-shop .dd-crumb {
    padding: 0;
    margin: 0 0 0.7rem;
  }

  .dd-shop-toolbar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem 0.75rem;
    align-items: center;
  }

  .dd-filter-launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dd-gray);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 0.8rem;
    min-height: 42px;
    cursor: pointer;
  }

  .dd-h-filters {
    display: flex;
    grid-column: 1 / -1;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.15rem;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .dd-shop-tools {
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 0.55rem;
  }

  .dd-shop-tools .muted {
    display: none;
  }

  .dd-shop-tools select {
    max-width: 11rem;
  }

  .dd-cat-grid,
  .dd-values,
  .item-grid,
  .dd-shop .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.7rem;
  }

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

  .dd-filters {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 80;
    width: 100%;
    max-height: min(86dvh, 40rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    padding: 0.85rem 1.1rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--dd-gray);
    box-shadow: 0 -18px 48px rgba(25, 25, 25, 0.16);
    transform: translateY(110%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    pointer-events: none;
  }

  .dd-filters.is-open,
  body.filters-open .dd-filters {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .dd-filters .filters-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 0.15rem 0 0.7rem;
    margin-bottom: 0.25rem;
    z-index: 1;
  }

  .dd-filters .filters-sheet-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
  }

  .dd-filters .filters-sheet-close {
    border: 0;
    background: transparent;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    padding: 0.1rem 0.35rem;
  }

  .dd-filters .filter-group--cats {
    display: none;
  }

  .dd-filters .filters-apply {
    display: block;
    width: 100%;
    margin-top: 0.85rem;
    min-height: 48px;
    border: 0;
    background: var(--ink);
    color: #fff;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
  }

  .dd-filters .dd-price-input {
    display: flex;
    height: 2.45rem;
  }

  .dd-filters .dd-price-field > span:not(.dd-price-input) {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dd-muted);
    margin-bottom: 0.2rem;
  }

  .filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(25, 25, 25, 0.4);
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .filters-backdrop[hidden] {
    display: none !important;
  }

  body.filters-open {
    overflow: hidden;
  }

  .dd-pdp.detail {
    padding: 0 0 6.75rem;
    gap: 1rem;
  }

  .dd-pdp .dd-gallery {
    --gallery-max-h: none;
  }

  .dd-gallery.gallery,
  .dd-pdp .gallery,
  .dd-pdp .gallery:has(.gallery-thumbs),
  .dd-gallery.gallery:has(.gallery-thumbs) {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }

  .dd-gallery .gallery-main {
    order: 1;
    width: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 3 / 4;
    border-radius: 0;
  }

  .dd-gallery .gallery-thumbs-carousel {
    order: 2;
    display: block;
    padding: 0 0.9rem;
  }

  .dd-gallery .gallery-thumbs-nav {
    display: none;
  }

  .dd-gallery .gallery-thumbs {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dd-pdp .detail-info {
    padding: 0 0.9rem;
  }

  .dd-crumb {
    padding: 0.75rem 0.9rem 0.15rem;
    margin: 0;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dd-pdp-title {
    font-size: 1.55rem;
  }

  .dd-pdp-actions .btn-primary {
    display: none;
  }

  .dd-pdp-actions {
    grid-template-columns: 48px;
    justify-content: start;
  }

  .dd-related {
    padding: 0 0.9rem 6.5rem;
  }

  .product-buy-bar {
    z-index: 55;
    background: #fff;
  }

  .dd-footer-cta {
    padding: 1.6rem 0.9rem;
  }
}

@media (max-width: 640px) {
  .dd-footer-grid {
    grid-template-columns: 1fr;
  }

  .dd-pdp-actions {
    grid-template-columns: 48px;
  }

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