/*
=============================================================
DUVA BLACK + WHITE STOREFRONT
=============================================================
This file controls the entire storefront appearance.

FAST EDITS
- Main black: --black
- Main white: --white
- Light section background: --off-white
- Borders: --line
- Page width: --max-width
- Side spacing: --gutter

HERO VIDEO
Replace assets/video/duva-hero.mp4 with your own MP4.
Keep the same filename and no HTML changes are required.
=============================================================
*/

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --soft-gray: #eeeeec;
  --mid-gray: #6f6f6a;
  --line: #dadad6;
  --max-width: 1500px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
}
body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; }
img { display: block; width: 100%; }

/* Announcement */
.announcement {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-button {
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .2s ease, color .2s ease, top .2s ease;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.logo-mark {
  grid-column: 2;
  font-family: "Instrument Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .18em;
}
.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button, .menu-button, .drawer-close {
  background: transparent;
  cursor: pointer;
}
.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.ui-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.count-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
}
.site-header.scrolled .count-badge {
  background: var(--black);
  color: var(--white);
}

/* Search expands inside header */
.header-search { position: relative; display: flex; align-items: center; }
.header-search input {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: none;
  background: transparent;
  color: inherit;
  transition: width .25s ease, opacity .2s ease;
}
.header-search.open input,
.header-search:focus-within input {
  width: 220px;
  opacity: 1;
  padding-left: 8px;
}
.header-search-results {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(360px, 82vw);
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}
.header-search.open .header-search-results:not(:empty) { display: grid; }
.header-search-result {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

/* Mobile menu */
.menu-button { display: none; width: 40px; height: 40px; padding: 9px; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 5px 0; background: currentColor; }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  width: min(88vw, 380px);
  padding: 90px 34px 34px;
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--line);
  transform: translateX(-105%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.mobile-menu .drawer-close { position: absolute; top: 22px; right: 24px; font-size: 30px; }

/* Shared typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--mid-gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Video-first hero */
.hero {
  position: relative;
  height: calc(100svh - 34px);
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  /* Temporary background shown before the campaign video is added. */
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255,255,255,.28) 0%,
      rgba(120,120,120,.18) 22%,
      rgba(35,35,35,.92) 60%,
      #000 100%
    );
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.35) 38%,
      rgba(0,0,0,0) 75%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--gutter) clamp(55px, 9vh, 110px);
  color: var(--white);
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.07em;
}
.hero h1 span {
  display: block;
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.72rem, 1vw, .95rem);
  line-height: 1;
  letter-spacing: .25em;
}
.hero-copy { margin: 28px 0; color: rgba(255,255,255,.78); font-size: 15px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button-primary { background: var(--black); color: var(--white); }
.hero .button-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.hero .button-outline { background: transparent; border-color: var(--white); color: var(--white); }
.button:hover { background: var(--black); color: var(--white); }
.hero .button-primary:hover { background: transparent; color: var(--white); }
.button-full { width: 100%; }

/* Campaign editorial grid */
.campaign-section {
  padding: clamp(64px, 9vw, 120px) var(--gutter);
  background: var(--white);
}
.campaign-section-featured {
  padding-bottom: clamp(18px, 2.5vw, 32px);
}
.campaign-statement {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 560px;
  background: #f2efeb;
  overflow: hidden;
  border-radius: 2px;
}
.campaign-transformation-card {
  min-width: 0;
  min-height: 560px;
  height: 100%;
  aspect-ratio: auto;
  background: #f6efea;
}
.campaign-tile.campaign-transformation-card img {
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.01);
}
.campaign-tile.campaign-transformation-card:hover img {
  transform: scale(1.04);
}
.campaign-statement-quote {
  display: flex;
  align-items: center;
  padding: clamp(36px, 5vw, 76px);
}
.campaign-statement-quote p {
  max-width: 520px;
  margin: 0;
  color: var(--black);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}
.campaign-head {
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}
.campaign-head .eyebrow {
  color: rgba(10,10,10,.5);
  margin-bottom: 14px;
}
.campaign-head h2 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -.03em;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.05;
  color: var(--black);
  margin: 0;
}
.campaign-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: clamp(10px, 1.4vw, 18px);
  max-width: 1440px;
  margin: 0 auto;
}
.campaign-grid-mosaic {
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
}
.campaign-grid-mosaic .campaign-tile-lg {
  grid-column: 1;
  aspect-ratio: auto;
  height: 100%;
  min-height: 560px;
}
.campaign-stack {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 18px);
  height: 100%;
}
.campaign-stack .campaign-tile {
  flex: 1;
  aspect-ratio: auto;
  min-height: 0;
}
.campaign-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  background: #111;
  text-decoration: none;
  isolation: isolate;
}
.campaign-tile-lg { grid-row: span 1; }
.campaign-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.campaign-tile:hover img { transform: scale(1.08); }
.campaign-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.06) 42%, rgba(0,0,0,0) 65%);
  pointer-events: none;
}
.campaign-tile-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2.4vw, 30px);
  color: var(--white);
}
.campaign-tile-copy .eyebrow {
  color: rgba(255,255,255,.78);
  margin-bottom: 8px;
}
.campaign-tile-copy h3 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -.02em;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  line-height: 1.08;
  margin: 0 0 12px;
}
.campaign-tile-link {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 2px;
}
@media (max-width: 860px) {
  .campaign-statement {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .campaign-transformation-card {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .campaign-statement-quote {
    min-height: 260px;
  }
  .campaign-grid {
    grid-template-columns: 1fr;
  }
  .campaign-tile,
  .campaign-tile-lg {
    aspect-ratio: 4 / 5;
  }
  .campaign-grid-mosaic {
    grid-template-columns: 1fr;
  }
  .campaign-grid-mosaic .campaign-tile-lg {
    grid-column: auto;
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
  }
  .campaign-stack {
    grid-column: auto;
    flex-direction: column;
  }
  .campaign-stack .campaign-tile {
    aspect-ratio: 4 / 5;
    flex: none;
  }
}

/* The Collective — full group photos, shown whole */
.collective-section {
  padding: clamp(48px, 7vw, 90px) var(--gutter);
  background: var(--white);
  max-width: 1440px;
  margin: 0 auto;
}
.collective-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.collective-head .eyebrow { color: rgba(10,10,10,.5); margin-bottom: 10px; }
.collective-head h2 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -.03em;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  color: var(--black);
  margin: 0;
}
.collective-duo {
  display: grid;
  grid-template-columns: 1fr;
}
.collective-photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: #111;
  isolation: isolate;
}
.collective-photo img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.collective-photo:hover img { transform: scale(1.04); }
.collective-cta {
  display: block;
  text-align: center;
  margin-top: clamp(20px, 3vw, 32px);
  color: var(--black);
  text-decoration: none;
}
.collective-cta .campaign-tile-link {
  color: var(--black);
  border-bottom-color: rgba(10,10,10,.55);
}
@media (max-width: 700px) {
  .collective-duo {
    grid-template-columns: 1fr;
  }
}

/* Shop by category */
.category-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 18px);
  max-width: 1440px;
  margin: 0 auto clamp(64px, 9vw, 120px);
  padding: 0 var(--gutter);
}
.category-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  background: #111;
  text-decoration: none;
  isolation: isolate;
}
.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.category-tile-women img { object-position: 50% 12%; }
.category-tile-men img { object-position: 50% 0%; }
.category-tile:hover img { transform: scale(1.08); }
.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.02) 55%);
  pointer-events: none;
}
.category-tile-copy {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 2.4vw, 30px);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.category-tile-copy h3 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0;
}
@media (max-width: 700px) {
  .category-banner { grid-template-columns: 1fr; }
  .category-tile { aspect-ratio: 3 / 4; }
}

/* Lifestyle gallery strip */
.gallery-strip {
  padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 120px);
  background: var(--white);
}
.gallery-strip-head {
  max-width: 1440px;
  margin: 0 auto 28px;
  padding: 0 var(--gutter);
}
.gallery-strip-head .eyebrow { color: rgba(10,10,10,.5); margin-bottom: 10px; }
.gallery-strip-head h2 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -.03em;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  color: var(--black);
  margin: 0;
}
.gallery-strip-track {
  display: flex;
  gap: clamp(8px, 1.2vw, 14px);
  overflow-x: auto;
  padding: 0 var(--gutter) 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.gallery-strip-track::-webkit-scrollbar { display: none; }
.gallery-strip-item {
  flex: 0 0 auto;
  width: clamp(240px, 27vw, 360px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  scroll-snap-align: start;
  background: #111;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  transition: transform .5s ease;
}
.gallery-strip-item:hover img { transform: scale(1.06); }

/* Shop */
.shop-section,
.founders-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.section-heading,
.founders-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2,
.about-section h2,
.founders-heading h2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 16px;
}
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft-gray);
}
.product-image::before {
  content: "PRODUCT IMAGE";
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
}
.favorite-toggle.active { background: var(--black); color: var(--white); }
.product-info { padding-top: 14px; }
.product-category { margin: 0 0 5px; color: var(--mid-gray); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-size: 13px; font-weight: 600; }
.product-meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 12px; }
.add-button {
  min-height: 36px;
  padding: 0 13px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Benefits */
.benefit-bar {
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--black);
  color: var(--white);
}
.benefit-bar article { display: flex; gap: 14px; align-items: flex-start; }
.benefit-bar article > span { font-size: 18px; }
.benefit-bar h3 { margin: 0 0 5px; font-size: 10px; letter-spacing: .12em; }
.benefit-bar p { margin: 0; color: #bdbdbd; font-size: 11px; }

/* Story */
.about-section {
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.story-copy { max-width: 620px; color: var(--mid-gray); font-size: 14px; }
.story-copy p { margin: 0 0 16px; }
.story-copy strong { color: var(--black); }
.story-image { margin: 0; min-height: 620px; overflow: hidden; background: var(--soft-gray); }
.story-image img { height: 100%; min-height: 620px; object-fit: cover; filter: none; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.founder-card { border: 1px solid var(--line); background: var(--white); }
.founder-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft-gray); }
.founder-image img { height: 100%; object-fit: cover; filter: none; }
.founder-copy { padding: 32px; }
.founder-role, .founder-credentials { color: var(--mid-gray); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy h3 { margin: 6px 0 16px; font-family: "Instrument Sans", sans-serif; font-size: 34px; }
.founder-copy > p:not(.founder-role):not(.founder-credentials) { color: var(--mid-gray); font-size: 13px; }

/* Footer */
.site-footer {
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.2fr;
  gap: 42px;
  background: var(--black);
  color: var(--white);
}
.site-footer .logo { font-family: "Instrument Sans", sans-serif; font-size: 30px; font-weight: 700; letter-spacing: .16em; }
.site-footer h3 { margin: 0 0 16px; font-size: 10px; letter-spacing: .13em; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #bdbdbd; font-size: 12px; }
.newsletter-form > div { display: flex; border-bottom: 1px solid var(--white); }
.newsletter-form input { width: 100%; border: 0; padding: 13px 0; background: transparent; color: var(--white); outline: none; }
.newsletter-form button { background: transparent; color: var(--white); cursor: pointer; font-size: 20px; }

/* Drawers, modal, chat */
.drawer, .chat-panel, .modal-card { background: var(--white); color: var(--black); }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(92vw, 460px);
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s ease;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-family: "Instrument Sans", sans-serif; }
.drawer-close { font-size: 28px; }
.drawer-content { flex: 1; overflow: auto; padding: 20px 0; }
.drawer-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.subtotal { margin-bottom: 18px; display: flex; justify-content: space-between; font-size: 12px; }
.mini-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mini-item-image {
  display: block;
  width: 92px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft-gray);
}
.mini-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mini-item-details { min-width: 0; }
.mini-item-details h3 { margin: 0 0 6px; font-size: 13px; }
.mini-item-option { margin: 3px 0; font-size: 10px; color: #6b6b6b; text-transform: uppercase; letter-spacing: .06em; }
.mini-item-price { margin: 10px 0 12px; font-size: 12px; }
.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  border: 1px solid var(--line);
}
.quantity-control button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.quantity-control button:hover { background: var(--soft-gray); }
.quantity-control span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.remove-button { align-self: start; background: transparent; cursor: pointer; }
.empty-state { padding: 50px 0; color: var(--mid-gray); text-align: center; }
.modal { position: fixed; inset: 0; z-index: 110; padding: 20px; display: none; place-items: center; background: rgba(0,0,0,.45); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(100%, 520px); padding: 44px; border: 1px solid var(--line); }
.modal-card .drawer-close { position: absolute; top: 15px; right: 17px; }
.modal-card input { width: 100%; margin: 15px 0; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.page-overlay { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(0,0,0,.35); cursor: pointer; }
.page-overlay.open { display: block; }
.chat-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border: 1px solid var(--black); border-radius: 50%; background: var(--white); color: var(--black); cursor: pointer; font-size: 10px; font-weight: 700; }
.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 100; width: min(90vw, 360px); padding: 20px; display: none; border: 1px solid var(--line); }
.chat-panel.open { display: block; }
.chat-header { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.chat-header small { display: block; color: var(--mid-gray); }
.chat-messages { min-height: 130px; padding: 15px 0; }
.chat-bubble { padding: 12px; background: var(--soft-gray); font-size: 12px; }
.chat-form { display: flex; border: 1px solid var(--line); }
.chat-form input { width: 100%; border: 0; padding: 12px; outline: none; }
.chat-form button { width: 45px; background: var(--black); color: var(--white); cursor: pointer; }
/* Premium added-to-bag confirmation used by quick add and product pages. */
.toast {
  position: fixed;
  right: 24px;
  top: 92px;
  z-index: 220;
  width: min(380px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 38px 54px minmax(0, 1fr) 26px;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(17,17,17,.98);
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px,-8px,0);
  transition: opacity 200ms ease, transform 240ms ease, visibility 200ms ease;
  pointer-events: none;
}
.toast.show { opacity: 1; visibility: visible; transform: translate3d(0,0,0); pointer-events: auto; }
.toast-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.toast-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.toast-product-image { width: 54px; height: 64px; object-fit: cover; display: block; border-radius: 5px; background: #f1f1f1; }
.toast-copy { min-width: 0; }
.toast-title { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 800; line-height: 1.2; letter-spacing: .17em; }
.toast-message { display: block; font-size: 13px; font-weight: 500; line-height: 1.4; color: rgba(255,255,255,.82); }
.toast-actions { display: flex; gap: 18px; margin-top: 8px; }
.toast-link { border: 0; border-bottom: 1px solid rgba(255,255,255,.72); padding: 0 0 2px; background: transparent; color: #fff; font: inherit; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; cursor: pointer; }
.toast-checkout { color: #fff; }
.toast-close { align-self: start; width: 28px; height: 28px; border: 0; background: transparent; color: rgba(255,255,255,.7); font-size: 22px; line-height: 1; cursor: pointer; }
.toast-close:hover { color: #fff; }
@media (max-width: 600px) {
  .toast { top: auto; right: 12px; bottom: 12px; width: calc(100vw - 24px); grid-template-columns: 38px 58px minmax(0,1fr) 26px; gap: 10px; padding: 12px; }
  .toast-icon { width: 38px; height: 38px; }
  .toast-product-image { width: 58px; height: 70px; }
  .toast-actions { gap: 13px; }
}

/* Responsive */
@media (max-width: 980px) {
  .site-header { height: 68px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-search input { position: absolute; top: 50px; right: 0; background: var(--white); color: var(--black); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 460px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .announcement { padding-inline: 10px; font-size: 8px; }
  .announcement .text-button { font-size: 8px; }
  .site-header { padding: 0 12px; }
  .logo-mark { font-size: 21px; }
  .header-actions { gap: 0; }
  .header-search { display: none; }
  .hero { height: calc(100svh - 34px); min-height: 620px; }
  .hero-content { padding: 0 22px 55px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .shop-section, .about-section, .founders-section { padding: 72px 20px; }
  .product-grid { gap: 24px 10px; }
  .benefit-bar { grid-template-columns: 1fr; padding: 30px 20px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-copy { padding: 24px; }
  .site-footer { grid-template-columns: 1fr; padding: 55px 20px; }
}


/* =========================================================
   PHOTO + TYPOGRAPHY CORRECTION
   Keeps the interface monochrome while preserving full-color photos.
   ========================================================= */

:root {
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Instrument Sans", Arial, sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}

.logo,
.logo-mark,
.hero h1,
.section-heading h2,
.about-section h2,
.founders-heading h2,
.founder-copy h3,
.drawer-header h2,
.modal-card h2,
.legal-page h1,
.legal-page h2,
.utility-page h1,
.utility-page h2,
.panel h1,
.panel h2 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.03em;
}

/* Keep every actual photograph in full color. */
.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-image,
.product-image img,
.product-card img,
.hero-video,
.hero video,
img {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* Slightly softer, more premium typography proportions. */
.hero h1 {
  font-weight: 600 !important;
  letter-spacing: -0.055em !important;
}

.section-heading h2,
.about-section h2,
.founders-heading h2 {
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.desktop-nav a,
.button,
.eyebrow,
.founder-role,
.founder-credentials {
  font-family: var(--font-body) !important;
}


/* =========================================================
   HERO VIDEO LAYERING
   The gradient remains visible until a real MP4 loads.
   ========================================================= */

.hero-video {
  z-index: 0;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-overlay { z-index: 1; }

.hero-content { z-index: 2; }

.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-card img,
.product-image,
.hero-video {
  filter: none !important;
  -webkit-filter: none !important;
}
/* =========================================================
   2026 STOREFRONT UPDATE
   Gradient hero, side-by-side story and collection filtering.
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 56% 22%, rgba(255,255,255,.68) 0%, rgba(184,184,184,.54) 19%, rgba(66,66,66,.72) 46%, rgba(12,12,12,.98) 82%),
    linear-gradient(115deg, #090909 0%, #777 52%, #111 100%);
}

.shop-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.filter-trigger {
  min-width: 170px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.shop-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 42px; align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.filter-panel-heading { padding-bottom: 17px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--black); }
.filter-panel-heading p, .filter-panel-heading button { margin: 0; background: none; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.filter-panel-heading button { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.filter-group { margin: 0; padding: 24px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-group legend { width: 100%; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.filter-group > label { margin: 9px 0; display: flex; gap: 10px; align-items: center; color: #444; cursor: pointer; font-size: 12px; }
.filter-group input { accent-color: #111; }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.size-options label { cursor: pointer; }
.size-options input { position: absolute; opacity: 0; pointer-events: none; }
.size-options span { min-height: 34px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 10px; }
.size-options input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.shop-results-bar { min-height: 45px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.shop-results-bar p, .shop-results-bar label { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.shop-results-bar label { display: flex; align-items: center; gap: 9px; }
.shop-results-bar select { border: 0; background: transparent; font-size: 10px; outline: none; }
.empty-products { grid-column: 1 / -1; min-height: 340px; display: grid; place-content: center; text-align: center; }
.empty-products p { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button { padding: 12px; background: transparent; cursor: pointer; text-decoration: underline; }

.about-section { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); align-items: stretch; }
.story-content { align-self: center; }
.story-image { min-height: 0; aspect-ratio: 4 / 5; align-self: center; }
.story-image img { min-height: 0; height: 100%; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .shop-filters { position: static; display: none; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px; border: 1px solid var(--line); }
  .shop-filters.open { display: grid; }
  .filter-panel-heading { grid-column: 1 / -1; }
  .filter-group { padding: 0; border-bottom: 0; }
  .about-section { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 34px; }
}

@media (max-width: 620px) {
  .shop-heading { align-items: flex-start; flex-direction: column; }
  .filter-trigger { width: 100%; }
  .shop-filters.open { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: minmax(0, 1.15fr) minmax(135px, .85fr); gap: 18px; align-items: start; }
  .about-section h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .story-copy { font-size: 11px; line-height: 1.45; }
  .story-copy p { margin-bottom: 11px; }
  .story-image { position: sticky; top: 82px; aspect-ratio: 3 / 5; }
}

/* =========================================================
   COMPACT PRODUCT GRID
   Keeps product photography smaller so more of the collection is
   visible at once. Adjust the column counts below to resize the cards.
   ========================================================= */
.shop-results .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 14px;
}

.shop-results .product-image {
  aspect-ratio: 4 / 5;
}

.shop-results .product-info {
  padding-top: 10px;
}

.shop-results .product-meta {
  margin-top: 8px;
}

.shop-results .favorite-toggle {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.shop-results .add-button {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 8px;
}

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

@media (max-width: 980px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
  }
}

@media (max-width: 620px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .shop-results .product-info h3 {
    font-size: 11px;
  }

  .shop-results .product-price {
    font-size: 10px;
  }

  .shop-results .add-button {
    min-height: 30px;
    padding-inline: 8px;
  }
}

/* =========================================================
   PRODUCT IMAGE CAROUSELS
   Front → back → details → full product board.
   ========================================================= */
.product-carousel {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  touch-action: pan-y;
}

.product-carousel > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.product-card:hover .product-carousel > img {
  transform: scale(1.015);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
}

.carousel-prev { left: 9px; }
.carousel-next { right: 9px; }

.product-carousel:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
}

.carousel-arrow:hover { background: #fff; }

.product-dots {
  position: absolute;
  left: 50%;
  bottom: 11px;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
}

.product-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
}

.product-dot.active {
  width: 18px;
  border-radius: 999px;
  background: #111;
}

@media (hover: none), (max-width: 760px) {
  .carousel-arrow {
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
}


/* Product galleries, colour swatches and product detail pages */
.product-image-link { display:block; width:100%; height:100%; color:inherit; }
.product-image-link img { width:100%; height:100%; object-fit:cover; }
.product-title-link { color:inherit; text-decoration:none; }
.product-title-link:hover { text-decoration:underline; text-underline-offset:4px; }
.product-colors { display:flex; align-items:center; gap:7px; margin:10px 0 2px; min-height:18px; }
.color-swatch,.filter-swatch { display:inline-block; width:16px; height:16px; border-radius:50%; border:1px solid rgba(0,0,0,.28); box-shadow:inset 0 0 0 2px rgba(255,255,255,.35); flex:none; }
.color-count { margin-left:3px; font-size:10px; color:#666; text-transform:uppercase; letter-spacing:.08em; }
.color-black { background:#171717; }.color-cream { background:#e9e1d2; }.color-brown { background:#5b4638; }.color-olive { background:#4d5140; }.color-plum { background:#563747; }
.color-filter-group label { gap:8px; }
.filter-swatch { width:14px; height:14px; }
.product-page-main { padding:130px 5vw 80px; background:#fff; min-height:100vh; }
.product-detail { max-width:1440px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr); gap:56px; align-items:start; }
.product-gallery { display:grid; grid-template-columns:90px minmax(0,1fr); gap:16px; position:sticky; top:110px; }
.product-thumbnails { display:flex; flex-direction:column; gap:10px; }
.product-thumbnail { border:1px solid transparent; background:#fff; padding:0; cursor:pointer; aspect-ratio:1/1.2; overflow:hidden; }
.product-thumbnail.active { border-color:#111; }
.product-thumbnail img { width:100%; height:100%; object-fit:cover; }
.product-main-image { background:#fff; aspect-ratio:4/5; overflow:hidden; position:relative; }
.product-main-image img { width:100%; height:100%; object-fit:cover; transition:opacity .2s ease; }
.product-details-panel { padding:20px 0; }
.product-breadcrumb { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#666; margin-bottom:28px; }
.product-details-panel h1 { font-size:clamp(34px,4vw,58px); line-height:.98; margin:0 0 18px; letter-spacing:-.04em; }
.product-detail-price { font-size:19px; margin:0 0 28px; }
.product-description { color:#444; line-height:1.75; margin-bottom:30px; }
.option-label { display:flex; justify-content:space-between; font-size:11px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; margin:24px 0 12px; }
.detail-color-options,.detail-size-options { display:flex; flex-wrap:wrap; gap:10px; }
.detail-color-button { width:34px; height:34px; border-radius:50%; border:1px solid #bbb; padding:4px; background:#fff; cursor:pointer; }
.detail-color-button span { width:100%; height:100%; border-radius:50%; display:block; }
.detail-color-button.active { outline:2px solid #111; outline-offset:2px; }
.detail-size-button { min-width:48px; height:44px; border:1px solid #bbb; background:transparent; cursor:pointer; }
.detail-size-button.active { background:#111; color:#fff; border-color:#111; }
.product-add-button { width:100%; border:0; background:#111; color:#fff; padding:18px; margin-top:28px; font-weight:700; letter-spacing:.12em; cursor:pointer; }
.product-accordions { margin-top:28px; border-top:1px solid #ccc; }
.product-accordions details { border-bottom:1px solid #ccc; padding:17px 0; }
.product-accordions summary { cursor:pointer; font-size:12px; font-weight:700; letter-spacing:.1em; }
.product-accordions p { color:#555; line-height:1.65; font-size:13px; }
.recommendations { max-width:1440px; margin:90px auto 0; }
.recommendations h2 { font-size:clamp(28px,4vw,48px); margin-bottom:28px; }
.recommendation-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.recommendation-card { color:#111; text-decoration:none; }
.recommendation-card img { width:100%; aspect-ratio:4/5; object-fit:cover; background:#fff; }
.recommendation-card h3 { font-size:14px; margin:12px 0 5px; }
.recommendation-card p { margin:0; font-size:13px; color:#555; }
@media(max-width:900px){.product-detail{grid-template-columns:1fr;gap:25px}.product-gallery{position:static;grid-template-columns:1fr}.product-thumbnails{order:2;flex-direction:row;overflow:auto}.product-thumbnail{min-width:74px}.recommendation-grid{grid-template-columns:repeat(2,1fr)}.product-page-main{padding:100px 18px 60px}}

/* Production storefront additions */
.size-guide-link{border:0;background:transparent;padding:0;text-decoration:underline;font:inherit;font-size:10px;font-weight:700;letter-spacing:.1em;cursor:pointer}.size-guide-modal-card{max-width:680px}.size-guide-table-wrap{overflow:auto;margin:24px 0}.size-guide-table{width:100%;border-collapse:collapse}.size-guide-table th,.size-guide-table td{padding:13px 12px;border-bottom:1px solid var(--line);text-align:left;font-size:12px}.size-guide-note{font-size:12px;line-height:1.7;color:#555}
.payment-options{margin:18px 0 14px}.payment-options>span{display:block;font-size:9px;letter-spacing:.13em;font-weight:700;margin-bottom:9px}.payment-option-list{display:flex;flex-wrap:wrap;gap:6px}.payment-pill{border:1px solid #d4d4d4;border-radius:4px;padding:5px 7px;background:#fff;font-size:9px;font-weight:700}.track-order-link{display:block;text-align:center;margin-top:15px;color:inherit;font-size:10px;font-weight:700;letter-spacing:.09em;text-decoration:underline}.checkout-modal-card{max-width:620px;max-height:90vh;overflow:auto}.checkout-form{display:grid;gap:11px;margin-top:20px}.checkout-form input,.checkout-form select{width:100%;padding:14px;border:1px solid var(--line);background:#fff}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:11px}.checkout-status{min-height:18px;font-size:11px;line-height:1.5;color:#8a2525}.checkout-form button:disabled{opacity:.55;cursor:wait}
.tracking-page{min-height:100vh;background:#fff;padding:150px 20px 80px}.tracking-card{max-width:820px;margin:0 auto}.tracking-card h1{font-size:clamp(42px,7vw,88px);line-height:.92;margin:12px 0 20px}.tracking-form{display:grid;grid-template-columns:1fr 210px auto;gap:10px;margin:35px 0 20px}.tracking-form input,.tracking-form select{padding:15px;border:1px solid var(--line);background:#fff}.tracking-status{padding:12px 0;color:#8a2525}.tracking-summary{border:1px solid var(--line);padding:22px;margin-top:24px}.tracking-summary span{font-size:10px;letter-spacing:.12em}.tracking-summary strong{display:block;font-size:28px;margin:8px 0}.tracking-summary p{margin:4px 0;color:#555}.tracking-timeline{margin:28px 0}.tracking-timeline article{display:grid;grid-template-columns:18px 1fr;gap:12px;padding-bottom:22px}.tracking-timeline article>span{width:10px;height:10px;border-radius:50%;background:#111;margin-top:4px;position:relative}.tracking-timeline article>span:after{content:"";position:absolute;top:10px;left:4px;width:1px;height:42px;background:#ccc}.tracking-timeline article:last-child>span:after{display:none}.tracking-timeline p{margin:4px 0}.tracking-timeline small{color:#666}.tracking-carrier-link{display:inline-flex}
@media(max-width:700px){.form-row,.tracking-form{grid-template-columns:1fr}.tracking-page{padding-top:110px}.payment-option-list{gap:4px}}


@media (max-width: 480px) {
  .mini-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 12px;
  }
  .mini-item-image { width: 76px; }
}

/* Premium collection card interactions */
.product-image-link { position: relative; }
.product-image-link img { position:absolute; inset:0; transition:opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.product-hover-image { opacity:0; }
@media (hover:hover) {
  .product-card:hover .product-primary-image { opacity:0; transform:scale(1.015); }
  .product-card:hover .product-hover-image { opacity:1; transform:scale(1.015); }
}
.quick-view-button {
  position:absolute; z-index:4; left:12px; right:12px; bottom:44px;
  min-height:40px; border:0; background:rgba(17,17,17,.94); color:#fff;
  font-size:9px; font-weight:800; letter-spacing:.13em; cursor:pointer;
  opacity:0; transform:translateY(10px); transition:opacity .22s ease, transform .22s ease, background .2s ease;
}
.product-card:hover .quick-view-button,.quick-view-button:focus-visible { opacity:1; transform:translateY(0); }
.quick-view-button:hover { background:#000; color:#fff; }
.favorite-toggle { z-index:5; border:1px solid rgba(0,0,0,.1); transition:transform .2s ease, background .2s ease, color .2s ease; }
.favorite-toggle:hover { transform:scale(1.07); }
.favorite-toggle svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.7; }
.favorite-toggle.active svg { fill:currentColor; }
.add-button { position:relative; overflow:hidden; transition:transform .18s ease, background .2s ease; }
.add-button::after { content:""; position:absolute; inset:0; background:rgba(255,255,255,.16); transform:translateX(-110%) skewX(-18deg); transition:transform .45s ease; }
.add-button:hover { transform:translateY(-2px); background:#000; color:#fff; }
.add-button:hover::after { transform:translateX(110%) skewX(-18deg); }
.add-button:active { transform:translateY(0) scale(.97); }

/* Quick view modal */
.quick-view-modal { z-index:120; }
.quick-view-card { width:min(1040px,94vw); max-width:1040px; max-height:92vh; overflow:auto; padding:0; background:#fff; }
.quick-view-close { z-index:4; top:14px; right:14px; background:rgba(255,255,255,.9); border-radius:50%; }
.quick-view-layout { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(350px,.95fr); }
.quick-view-gallery { padding:24px; background:#f5f5f5; }
.quick-view-main-image { aspect-ratio:4/5; overflow:hidden; background:#fff; }
.quick-view-main-image img { width:100%; height:100%; display:block; object-fit:cover; }
.quick-view-thumbnails { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px; }
.quick-view-thumb { border:1px solid transparent; padding:0; background:#fff; cursor:pointer; aspect-ratio:4/5; overflow:hidden; }
.quick-view-thumb.active { border-color:#111; }
.quick-view-thumb img { width:100%; height:100%; object-fit:cover; }
.quick-view-details { padding:clamp(34px,5vw,68px); align-self:center; }
.quick-view-details h2 { margin:0 0 12px; font-family:"Instrument Sans",sans-serif; font-size:clamp(30px,3.5vw,48px); line-height:1; letter-spacing:-.04em; }
.quick-view-price { font-size:16px; margin:0 0 22px; }
.quick-view-description { color:#555; line-height:1.65; font-size:13px; margin:0 0 26px; }
.quick-option-heading { display:flex; justify-content:space-between; gap:15px; margin:22px 0 11px; font-size:10px; font-weight:800; letter-spacing:.12em; }
.quick-option-heading a { color:inherit; text-underline-offset:3px; }
.quick-colors,.quick-sizes { display:flex; flex-wrap:wrap; gap:10px; }
.quick-color { width:32px; height:32px; border-radius:50%; padding:4px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-color span { display:block; width:100%; height:100%; border-radius:50%; }
.quick-color.active { outline:2px solid #111; outline-offset:2px; }
.quick-size { min-width:46px; height:42px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-size.active,.quick-size:hover { background:#111; color:#fff; border-color:#111; }
.quick-view-error { min-height:18px; margin:12px 0 0; font-size:11px; color:#8a2525; }
.quick-view-add { width:100%; margin-top:8px; }
.quick-view-full-link { display:block; margin-top:17px; color:inherit; text-align:center; font-size:10px; font-weight:800; letter-spacing:.1em; text-underline-offset:4px; }
@media (max-width:760px) {
  .quick-view-button { opacity:1; transform:none; left:8px; right:8px; bottom:42px; min-height:34px; }
  .quick-view-layout { grid-template-columns:1fr; }
  .quick-view-gallery { padding:12px; }
  .quick-view-details { padding:28px 20px 32px; }
  .quick-view-card { max-height:94vh; }
}


/* Keep Favorites exactly the same size as the Shopping Bag drawer. */
#cartDrawer,
#favoritesDrawer {
  width: min(92vw, 460px);
  max-width: 460px;
  padding: 30px;
}

/* Compact confirmation after adding an item to the shopping bag. */
.toast {
  max-width: 380px;
}


/* FINAL: matching Shopping Bag and Favorites drawers */
#cartDrawer,
#favoritesDrawer {
  width: min(84vw, 850px) !important;
  max-width: 850px !important;
  padding: 34px 60px !important;
}

#cartDrawer .drawer-header,
#favoritesDrawer .drawer-header {
  min-height: 145px;
  padding-bottom: 28px;
}

#cartDrawer .drawer-header h2,
#favoritesDrawer .drawer-header h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.055em;
}

#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  padding: 40px 0 22px;
}

#favoritesDrawer .mini-item,
#cartDrawer .mini-item {
  grid-template-columns: 184px minmax(0, 1fr) 28px;
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 36px;
}

#favoritesDrawer .mini-item-image,
#cartDrawer .mini-item-image {
  width: 184px;
  aspect-ratio: 4 / 5;
}

#favoritesDrawer .mini-item-details h3,
#cartDrawer .mini-item-details h3 {
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 1.12;
}

#favoritesDrawer .mini-item-price,
#cartDrawer .mini-item-price {
  margin: 20px 0;
  font-size: 25px;
}

#favoritesDrawer .favorite-colors {
  margin: 12px 0 6px;
}

#favoritesDrawer .favorite-add-button {
  min-width: 180px;
  min-height: 58px;
  padding: 0 24px;
}

/* FINAL: always-visible add-to-bag confirmation */
.toast {
  position: fixed !important;
  top: 96px !important;
  right: 24px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 99999 !important;
  width: min(430px, calc(100vw - 32px)) !important;
  max-width: 430px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: grid !important;
  transform: translate3d(18px, -8px, 0) !important;
}

.toast.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) !important;
  pointer-events: auto !important;
}

@media (max-width: 760px) {
  #cartDrawer,
  #favoritesDrawer {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 24px 20px !important;
  }

  #cartDrawer .drawer-header,
  #favoritesDrawer .drawer-header {
    min-height: 110px;
  }

  #favoritesDrawer .mini-item,
  #cartDrawer .mini-item {
    grid-template-columns: 108px minmax(0, 1fr) 24px;
    gap: 16px;
  }

  #favoritesDrawer .mini-item-image,
  #cartDrawer .mini-item-image {
    width: 108px;
  }

  #favoritesDrawer .mini-item-details h3,
  #cartDrawer .mini-item-details h3 {
    font-size: 18px;
  }

  #favoritesDrawer .mini-item-price,
  #cartDrawer .mini-item-price {
    font-size: 18px;
  }

  .toast {
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    width: calc(100vw - 24px) !important;
  }
}

/* CORRECTION: keep Favorites compact instead of using the full Shopping Bag width. */
#favoritesDrawer {
  width: min(92vw, 460px) !important;
  max-width: 460px !important;
}

#favoritesDrawer .drawer-header {
  padding: 28px 32px 24px !important;
}

#favoritesDrawer .drawer-content {
  padding: 0 32px 32px !important;
}

#favoritesDrawer .mini-item {
  grid-template-columns: 96px minmax(0, 1fr) 24px !important;
  gap: 18px !important;
  padding: 24px 0 !important;
}

#favoritesDrawer .mini-item-image {
  width: 96px !important;
}

#favoritesDrawer .mini-item-details h3 {
  font-size: 22px !important;
  line-height: 1.08 !important;
}

#favoritesDrawer .mini-item-price {
  font-size: 18px !important;
}

#favoritesDrawer .favorite-add-button {
  min-width: 0 !important;
  width: auto !important;
  padding: 13px 18px !important;
}

@media (max-width: 560px) {
  #favoritesDrawer {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  #favoritesDrawer .drawer-header,
  #favoritesDrawer .drawer-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #favoritesDrawer .mini-item {
    grid-template-columns: 82px minmax(0, 1fr) 20px !important;
    gap: 14px !important;
  }

  #favoritesDrawer .mini-item-image {
    width: 82px !important;
  }
}

/* =========================================================
   COLLECTION GRID — FINAL RESPONSIVE OVERRIDE
   Keeps cards readable and prevents horizontal clipping when
   the browser is zoomed in or out.
   ========================================================= */
.shop-section {
  width: 100%;
  max-width: 1680px;
  overflow: hidden;
}

.shop-layout {
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  gap: clamp(24px, 2.5vw, 42px);
  width: 100%;
  min-width: 0;
}

.shop-results,
.shop-results .product-grid,
.shop-results .product-card,
.shop-results .product-info,
.shop-results .product-meta {
  min-width: 0;
}

/* Three comfortable cards on ordinary and zoomed-out desktop views. */
.shop-results .product-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.2vw, 42px) clamp(14px, 1.5vw, 24px);
}

.shop-results .product-card {
  width: 100%;
  overflow: hidden;
}

.shop-results .product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.shop-results .product-info h3,
.shop-results .product-category {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-results .product-meta {
  align-items: flex-end;
  flex-wrap: wrap;
}

.shop-results .product-colors {
  min-width: 0;
  flex: 1 1 150px;
  flex-wrap: wrap;
}

.shop-results .add-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Four cards only when there is genuinely enough room. */
@media (min-width: 1800px) {
  .shop-section { max-width: 1900px; }
  .shop-results .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

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

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

@media (max-width: 520px) {
  .shop-results .product-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DUVA GIT UPDATE — compact drawers, quick view and mobile story
   ========================================================= */
#cartDrawer,
#favoritesDrawer {
  width: min(92vw, 460px) !important;
  max-width: 460px !important;
  padding: 28px !important;
}

#cartDrawer .drawer-header,
#favoritesDrawer .drawer-header {
  min-height: auto !important;
  padding-bottom: 20px !important;
}

#cartDrawer .drawer-header h2,
#favoritesDrawer .drawer-header h2 {
  font-size: clamp(28px, 3vw, 38px) !important;
}

#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  padding: 22px 0 !important;
}

#cartDrawer .mini-item,
#favoritesDrawer .mini-item {
  grid-template-columns: 96px minmax(0, 1fr) 24px !important;
  gap: 16px !important;
  padding-bottom: 22px !important;
  margin-bottom: 22px !important;
}

#cartDrawer .mini-item-image,
#favoritesDrawer .mini-item-image {
  width: 96px !important;
}

#cartDrawer .mini-item-details h3,
#favoritesDrawer .mini-item-details h3 {
  margin-bottom: 8px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

#cartDrawer .mini-item-price,
#favoritesDrawer .mini-item-price {
  margin: 10px 0 !important;
  font-size: 15px !important;
}

#favoritesDrawer .favorite-add-button {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px !important;
  font-size: 9px !important;
  letter-spacing: .12em;
}

.quick-view-card {
  width: min(900px, 92vw) !important;
  max-width: 900px !important;
  max-height: 82vh !important;
  overflow: hidden !important;
}
.quick-view-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr) !important;
  max-height: 82vh;
}
.quick-view-gallery { padding: 18px !important; overflow: auto; }
.quick-view-details {
  padding: 34px !important;
  max-height: 82vh;
  overflow-y: auto;
}
.quick-view-details h2 { font-size: clamp(28px, 3vw, 40px) !important; }
.quick-view-thumbnails { grid-template-columns: repeat(5, minmax(44px, 1fr)) !important; }

@media (max-width: 620px) {
  .about-section {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }
  .story-image {
    position: static !important;
    top: auto !important;
    aspect-ratio: 4 / 5 !important;
    order: -1;
  }
  .story-copy { font-size: 13px !important; line-height: 1.65 !important; }
  #cartDrawer,
  #favoritesDrawer {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 22px !important;
  }
  .quick-view-card { width: 100vw !important; max-height: 94vh !important; }
  .quick-view-layout { grid-template-columns: 1fr !important; max-height: 94vh; overflow-y: auto; }
  .quick-view-gallery, .quick-view-details { overflow: visible; max-height: none; }
}

/* =========================================================
   DUVA UPDATE ROUND 2 — storefront polish and accessibility
   ========================================================= */

/* Clear keyboard focus without changing the black-and-white look. */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Prevent the page behind a drawer or modal from moving. */
body.panel-open { overflow: hidden; }

/* Make the sticky header feel lighter and more premium. */
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

/* Give product cards stronger spacing and a cleaner hover state. */
.product-card {
  min-width: 0;
  transition: transform .25s ease;
}
.product-image {
  overflow: hidden;
  background: #f2f2f0;
}
.product-primary-image,
.product-hover-image {
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), opacity .3s ease;
}
@media (hover: hover) {
  .product-card:hover .product-primary-image,
  .product-card:hover .product-hover-image {
    transform: scale(1.025);
  }
}
.product-info { padding-top: 15px; }
.product-info h3 { line-height: 1.25; }
.product-title-link { text-underline-offset: 4px; }
.product-title-link:hover { text-decoration: underline; }
.product-meta { gap: 14px; }
.add-button {
  min-height: 40px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

/* Keep the catalog readable at every browser zoom and screen width. */
.shop-results .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 30px);
  row-gap: clamp(34px, 5vw, 72px);
}
@media (max-width: 1180px) {
  .shop-results .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .shop-results .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-info { padding-top: 11px; }
  .product-category { font-size: 8px; }
  .product-info h3 { font-size: 13px; }
  .product-meta { align-items: flex-start; flex-direction: column; gap: 9px; }
  .add-button { width: 100%; }
}
@media (max-width: 390px) {
  .shop-results .product-grid { column-gap: 10px; }
  .product-colors .color-swatch:nth-of-type(n+4) { display: none; }
}

/* Make carousel controls appear intentional rather than always busy. */
.carousel-arrow,
.quick-view-button,
.product-dots {
  transition: opacity .2s ease, transform .2s ease;
}
@media (hover: hover) {
  .product-card .carousel-arrow,
  .product-card .quick-view-button { opacity: 0; }
  .product-card:hover .carousel-arrow,
  .product-card:hover .quick-view-button,
  .product-card:focus-within .carousel-arrow,
  .product-card:focus-within .quick-view-button { opacity: 1; }
}

/* Better drawer separation, scrolling, and mobile sizing. */
#cartDrawer,
#favoritesDrawer {
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 55px rgba(0, 0, 0, .14);
}
#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
#cartDrawer .drawer-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mini-item-image {
  overflow: hidden;
  background: var(--off-white);
}
.mini-item-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.remove-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .2s ease;
}
.remove-button:hover { background: var(--soft-gray); }

/* Stronger and more consistent confirmation message. */
.toast {
  z-index: 9999 !important;
  width: min(430px, calc(100vw - 32px));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
  border: 1px solid rgba(255,255,255,.18);
}
.toast-product-image {
  width: 56px;
  height: 70px;
  object-fit: cover;
  background: #eee;
}
.toast-message { line-height: 1.35; }
@media (max-width: 620px) {
  .toast {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    width: auto;
  }
}

/* Quick view: cleaner hierarchy and easier option selection. */
.quick-view-main-image img { object-fit: contain; }
.quick-color,
.quick-size {
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.quick-color:hover,
.quick-size:hover { transform: translateY(-1px); }
.quick-size.active {
  background: var(--black);
  color: var(--white);
}
.quick-view-error {
  min-height: 20px;
  margin: 8px 0;
  color: #9f1515;
  font-size: 12px;
  font-weight: 600;
}

/* Improve touch targets on mobile. */
@media (max-width: 760px) {
  .icon-button,
  .menu-button,
  .drawer-close { min-width: 44px; min-height: 44px; }
  .quick-size { min-width: 46px; min-height: 44px; }
  .quick-color { min-width: 40px; min-height: 40px; }
  .filter-trigger { min-height: 44px; }
}

/* Respect visitors who disable motion. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   DUVA UPDATE ROUND 3 — shopping clarity and premium details
   ========================================================= */

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

/* Active filters are visible and removable without reopening the filter panel. */
.active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 26px;
}
.active-filter-chips[hidden] { display: none; }
.filter-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.filter-chip:hover { background: var(--black); color: var(--white); }

/* Cart progress gives customers a useful next step without being loud. */
.shipping-progress {
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.shipping-progress p {
  margin: 0 0 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.45;
}
.shipping-progress-track {
  height: 3px;
  overflow: hidden;
  background: #dededb;
}
.shipping-progress-track span {
  display: block;
  height: 100%;
  background: var(--black);
  transition: width .35s ease;
}

/* Dismissible announcement retains the minimal black-and-white direction. */
.announcement {
  position: relative;
  transition: opacity .22s ease, transform .22s ease;
}
.announcement-hiding { opacity: 0; transform: translateY(-100%); }
.announcement-close {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
}

/* Floating utility control appears only after meaningful scrolling. */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease, color .2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--black); color: var(--white); }

/* Images fade in cleanly as their files arrive. */
.product-image img,
.quick-view-gallery img,
.mini-item-image img { transition: opacity .25s ease, transform .55s cubic-bezier(.2, .7, .2, 1); }
.image-loading { opacity: 0; }

/* Slightly stronger catalog hierarchy and more useful empty state. */
.shop-results-bar { gap: 20px; }
.empty-products {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  text-align: center;
}
.empty-products p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}

@media (max-width: 760px) {
  .active-filter-chips { margin-bottom: 20px; }
  .filter-chip { min-height: 38px; }
  .back-to-top { right: 16px; bottom: 76px; }
  .announcement { padding-right: 46px !important; }
  .shop-results-bar { align-items: flex-start; }
}

/* =========================================================
   DUVA QUICK VIEW — TOP ALIGNMENT FIX
   Keeps product information aligned with the top of the image.
   ========================================================= */
.quick-view-layout {
  align-items: start !important;
}

.quick-view-details {
  align-self: start !important;
  padding-top: 34px !important;
}

@media (max-width: 620px) {
  .quick-view-details {
    padding-top: 28px !important;
  }
}

/* =========================================================
   DUVA QUICK VIEW — COMPACT DESKTOP PRODUCT VIEW
   Keeps product images from overwhelming the screen.
   ========================================================= */
@media (min-width: 721px) {
  .quick-view-card {
    width: min(820px, 90vw) !important;
    max-width: 820px !important;
    max-height: 88vh !important;
  }

  .quick-view-layout {
    grid-template-columns: 360px minmax(0, 1fr) !important;
  }

  .quick-view-gallery {
    padding: 18px !important;
  }

  .quick-view-main-image {
    width: 100% !important;
    max-height: 470px !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
  }

  .quick-view-details {
    padding: 32px 34px !important;
  }

  .quick-view-thumbnails {
    grid-template-columns: repeat(5, 52px) !important;
    gap: 7px !important;
  }
}

/* =========================================================
   DUVA PRODUCT PAGE — COMPACT PRODUCT IMAGE
   Fixes oversized/cropped images on product.html.
   ========================================================= */
@media (min-width: 761px) {
  .product-page-main {
    padding: 118px 5vw 72px !important;
  }

  .product-detail {
    max-width: 1120px !important;
    grid-template-columns: minmax(0, 590px) minmax(320px, 1fr) !important;
    gap: 54px !important;
    justify-content: center !important;
  }

  .product-gallery {
    grid-template-columns: 68px minmax(0, 500px) !important;
    gap: 14px !important;
    position: sticky !important;
    top: 108px !important;
    align-items: start !important;
  }

  .product-main-image {
    width: 100% !important;
    max-width: 500px !important;
    height: min(610px, 70vh) !important;
    aspect-ratio: auto !important;
    background: #f7f7f7 !important;
    overflow: hidden !important;
  }

  .product-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .product-thumbnails {
    width: 68px !important;
  }

  .product-thumbnail,
  .product-thumb {
    width: 68px !important;
    height: 82px !important;
    aspect-ratio: auto !important;
  }

  .product-thumbnail img,
  .product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .product-details-panel {
    padding-top: 10px !important;
  }
}

/* Keep mobile images fully visible instead of aggressively cropped. */
@media (max-width: 760px) {
  .product-main-image {
    width: 100% !important;
    max-height: 68vh !important;
    aspect-ratio: 4 / 5 !important;
    background: #f7f7f7 !important;
  }

  .product-main-image img {
    object-fit: contain !important;
    object-position: center !important;
  }
}

/* =========================================================
   DUVA PRODUCT PAGE — NORMAL RETAIL SIZE
   Main image + recommended product cards.
   ========================================================= */
@media (min-width: 761px) {
  .product-page-main {
    padding: 112px 32px 70px !important;
  }

  .product-detail {
    width: min(100%, 980px) !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    grid-template-columns: 430px minmax(0, 1fr) !important;
    gap: 52px !important;
    align-items: start !important;
  }

  .product-gallery {
    width: 430px !important;
    max-width: 430px !important;
    grid-template-columns: 58px 356px !important;
    gap: 16px !important;
    position: static !important;
  }

  .product-main-image {
    width: 356px !important;
    height: 445px !important;
    max-width: 356px !important;
    max-height: 445px !important;
    aspect-ratio: 4 / 5 !important;
    background: #f6f6f6 !important;
    overflow: hidden !important;
  }

  .product-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .product-thumbnails {
    width: 58px !important;
    gap: 9px !important;
  }

  .product-thumbnail,
  .product-thumb {
    width: 58px !important;
    height: 72px !important;
  }

  .product-details-panel {
    width: 100% !important;
    max-width: 430px !important;
    padding-top: 4px !important;
  }

  /* Recommended / related products should be normal card size,
     not another giant gallery. */
  .recommendations,
  .recommended-products,
  .related-products,
  .you-may-also-like {
    width: min(100% - 48px, 1120px) !important;
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .recommendations-grid,
  .recommended-grid,
  .related-products-grid,
  .you-may-also-like-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .recommendations .product-card,
  .recommended-products .product-card,
  .related-products .product-card,
  .you-may-also-like .product-card {
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .recommendations .product-card-image,
  .recommended-products .product-card-image,
  .related-products .product-card-image,
  .you-may-also-like .product-card-image,
  .recommendations .product-image,
  .recommended-products .product-image,
  .related-products .product-image,
  .you-may-also-like .product-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
  }

  .recommendations .product-card img,
  .recommended-products .product-card img,
  .related-products .product-card img,
  .you-may-also-like .product-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 760px) {
  .product-detail {
    width: 100% !important;
  }

  .product-gallery {
    width: 100% !important;
  }

  .product-main-image {
    width: min(100%, 390px) !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 4 / 5 !important;
    margin: 0 auto !important;
  }

  .product-main-image img {
    object-fit: contain !important;
  }

  .recommendations-grid,
  .recommended-grid,
  .related-products-grid,
  .you-may-also-like-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

/* =========================================================
   DUVA RECOMMENDATIONS — NORMAL CARD SIZE
   Correct selectors used by product.html:
   .recommendation-grid + .recommendation-card
   ========================================================= */
.recommendations {
  width: min(100% - 48px, 1080px) !important;
  max-width: 1080px !important;
  margin: 72px auto 0 !important;
}

.recommendations h2 {
  margin-bottom: 24px !important;
}

.recommendation-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px)) !important;
  justify-content: center !important;
  gap: 22px !important;
}

.recommendation-card {
  width: 100% !important;
  max-width: 220px !important;
  margin: 0 auto !important;
}

.recommendation-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.recommendation-card h3 {
  margin: 10px 0 4px !important;
  font-size: 14px !important;
}

.recommendation-card p {
  margin: 0 !important;
  font-size: 13px !important;
}

/* Override the old <=900px rule that made recommendations two giant columns. */
@media (max-width: 900px) {
  .recommendations {
    width: min(100% - 36px, 760px) !important;
  }

  .recommendation-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 200px)) !important;
    justify-content: center !important;
    gap: 18px !important;
  }

  .recommendation-card {
    max-width: 200px !important;
  }
}

@media (max-width: 520px) {
  .recommendations {
    width: calc(100% - 28px) !important;
  }

  .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .recommendation-card {
    max-width: none !important;
  }
}



/* DUVA NEW CATALOG COLOR SWATCHES */
.color-pink { background:#e8cdd3; }
.color-navy { background:#1d2940; }
.color-grey { background:#b8b8b4; }
.color-midnight { background:#111c35; }
.color-slate { background:#fff; }
.color-white { background:#fff; }
.color-sand { background:#d8c8b2; }

/* Keep the expanded catalog balanced at normal card sizes. */
@media (min-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (min-width: 721px) and (max-width: 1179px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* =========================================================
   FINAL PRODUCT IMAGE SIZE FIX
   Full images visible everywhere; no giant/cropped cards.
   ========================================================= */

/* MAIN SHOP / COLLECTION CARDS */
.shop-results .product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(210px, 260px)) !important;
  justify-content: start !important;
  gap: 34px 22px !important;
}

.shop-results .product-card {
  width: 100% !important;
  max-width: 260px !important;
}

.shop-results .product-image,
.shop-results .product-carousel {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  background: #f7f7f7 !important;
  overflow: hidden !important;
}

.shop-results .product-image-link {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  background: #f7f7f7 !important;
}

.shop-results .product-image-link img,
.shop-results .product-primary-image,
.shop-results .product-hover-image,
.shop-results .product-card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

/* No zooming/cropping on hover. */
@media (hover: hover) {
  .shop-results .product-card:hover .product-primary-image,
  .shop-results .product-card:hover .product-hover-image {
    transform: none !important;
  }
}

/* OPENED PRODUCT PAGE */
@media (min-width: 761px) {
  .product-page-main {
    padding: 112px 30px 70px !important;
  }

  .product-detail {
    width: min(100%, 960px) !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 400px minmax(0, 1fr) !important;
    gap: 52px !important;
    align-items: start !important;
  }

  .product-gallery {
    width: 400px !important;
    max-width: 400px !important;
    grid-template-columns: 54px 330px !important;
    gap: 16px !important;
    position: static !important;
  }

  .product-main-image {
    width: 330px !important;
    height: 412px !important;
    max-width: 330px !important;
    max-height: 412px !important;
    aspect-ratio: 4 / 5 !important;
    background: #f7f7f7 !important;
    overflow: hidden !important;
  }

  .product-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .product-thumbnails {
    width: 54px !important;
  }

  .product-thumbnail,
  .product-thumb {
    width: 54px !important;
    height: 68px !important;
  }

  .product-details-panel {
    max-width: 420px !important;
  }
}

/* QUICK VIEW */
@media (min-width: 721px) {
  .quick-view-card {
    width: min(760px, 90vw) !important;
    max-width: 760px !important;
    max-height: 86vh !important;
  }

  .quick-view-layout {
    grid-template-columns: 310px minmax(0, 1fr) !important;
  }

  .quick-view-gallery {
    padding: 16px !important;
  }

  .quick-view-main-image,
  .quick-view-main {
    width: 100% !important;
    max-width: 310px !important;
    height: 390px !important;
    max-height: 390px !important;
    background: #f7f7f7 !important;
  }

  .quick-view-main-image img,
  .quick-view-main img,
  .quick-view-gallery img {
    object-fit: contain !important;
    object-position: center !important;
  }
}

/* RECOMMENDED PRODUCTS */
.recommendations {
  width: min(100% - 48px, 1080px) !important;
  max-width: 1080px !important;
  margin: 70px auto 0 !important;
}

.recommendation-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 210px)) !important;
  justify-content: center !important;
  gap: 22px !important;
}

.recommendation-card {
  width: 100% !important;
  max-width: 210px !important;
}

.recommendation-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #f7f7f7 !important;
}

/* TABLET */
@media (max-width: 900px) and (min-width: 621px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(3, minmax(180px, 230px)) !important;
    justify-content: center !important;
  }

  .shop-results .product-card {
    max-width: 230px !important;
  }

  .recommendation-grid {
    grid-template-columns: repeat(3, minmax(150px, 190px)) !important;
  }

  .recommendation-card {
    max-width: 190px !important;
  }
}

/* MOBILE */
@media (max-width: 620px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 12px !important;
  }

  .shop-results .product-card {
    max-width: none !important;
  }

  .product-main-image {
    width: min(100%, 350px) !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    margin: 0 auto !important;
    background: #f7f7f7 !important;
  }

  .product-main-image img {
    object-fit: contain !important;
  }

  .recommendations {
    width: calc(100% - 28px) !important;
  }

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

  .recommendation-card {
    max-width: none !important;
  }
}

/* =========================================================
   DUVA STOREFRONT PHOTO FIX — FINAL
   Card-ready thumbnails fill the card while preserving the full outfit.
   ========================================================= */
.product-image::before {
  content: none !important;
  display: none !important;
}

.shop-results .product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px 18px !important;
  width: 100% !important;
}

.shop-results .product-card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

.shop-results .product-image,
.shop-results .product-carousel {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  background: #f7f7f6 !important;
  overflow: hidden !important;
}

.shop-results .product-image-link {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.shop-results .product-image-link img,
.shop-results .product-primary-image,
.shop-results .product-hover-image,
.shop-results .product-card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

.shop-results .product-hover-image {
  opacity: 0;
}

.shop-results .product-card:hover .product-primary-image {
  opacity: 0;
}

.shop-results .product-card:hover .product-hover-image {
  opacity: 1;
}

.recommendation-card img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #f7f7f6 !important;
}

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

@media (max-width: 820px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px 12px !important;
  }
}

@media (max-width: 460px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 8px !important;
  }
}


/* =========================================================
   ORIGINAL PRODUCT IMAGES — NO PROCESSING / NO DISTORTION
   Uses the exact uploaded image files as-is.
   ========================================================= */

/* Hide any legacy placeholder label. */
.product-image::before {
  content: none !important;
  display: none !important;
}

/* Storefront cards use the same 2:3 portrait proportion as the uploaded photos. */
.shop-results .product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px 18px !important;
}

.shop-results .product-card {
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.shop-results .product-image,
.shop-results .product-carousel {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 2 / 3 !important;
  height: auto !important;
  overflow: hidden !important;
  background: #f7f7f7 !important;
}

.shop-results .product-image-link {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.shop-results .product-primary-image,
.shop-results .product-hover-image,
.shop-results .product-image-link img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

/* Keep gallery images and recommended images proportional and undistorted. */
.product-main-image img,
.quick-view-main-image img,
.quick-view-main img,
.recommendation-card img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.recommendation-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2 / 3 !important;
  background: #f7f7f7 !important;
}

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

@media (max-width: 820px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px 12px !important;
  }
}


/* =========================================================
   WOMEN / MEN SHOP TABS
   ========================================================= */
.shop-audience-tabs {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 22px;
  border-bottom: 1px solid #d9d9d5;
}

.shop-audience-tab {
  position: relative;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: #8a8a84;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  cursor: pointer;
}

.shop-audience-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #0a0a0a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.shop-audience-tab.active {
  color: #0a0a0a;
}

.shop-audience-tab.active::after {
  transform: scaleX(1);
}

.shop-audience-tab:hover {
  color: #0a0a0a;
}

@media (max-width: 720px) {
  .shop-audience-tabs {
    gap: 24px;
    margin-top: 18px;
  }
}


/* =========================================================
   DUVA D-MARK HEADER LOGO
   ========================================================= */
.logo-image-link,
.wordmark.logo-image-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
  text-decoration: none !important;
}

.logo-mark.logo-image-link {
  grid-column: 2;
}

.header-d-logo {
  display: block !important;
  width: 46px !important;
  height: 34px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: invert(1);
  transition: filter .2s ease, transform .2s ease;
}

.site-header.scrolled .header-d-logo {
  filter: none;
}

.wordmark .header-d-logo {
  filter: none;
  width: 42px !important;
  height: 31px !important;
}

.logo-image-link:hover .header-d-logo {
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .header-d-logo {
    width: 40px !important;
    height: 30px !important;
  }

  .wordmark .header-d-logo {
    width: 38px !important;
    height: 28px !important;
  }
}


/* =========================================================
   DUVA WORDMARK: D MARK + UVA
   ========================================================= */
.duva-wordmark{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  line-height:1 !important;
}

.duva-wordmark .header-d-logo{
  width:52px !important;
  height:34px !important;
  object-fit:contain !important;
  flex:0 0 auto !important;
}

.duva-wordmark .header-uva{
  font-family:"Instrument Sans","DM Sans",sans-serif !important;
  font-size:30px !important;
  font-weight:800 !important;
  letter-spacing:-.055em !important;
  color:#fff !important;
  line-height:1 !important;
  transform:translateY(1px);
}

.site-header.scrolled .duva-wordmark .header-uva{
  color:#0a0a0a !important;
}

.wordmark.duva-wordmark .header-d-logo{
  width:46px !important;
  height:31px !important;
  filter:none !important;
}

.wordmark.duva-wordmark .header-uva{
  color:#0a0a0a !important;
  font-size:27px !important;
}

@media(max-width:720px){
  .duva-wordmark .header-d-logo{
    width:44px !important;
    height:30px !important;
  }

  .duva-wordmark .header-uva{
    font-size:25px !important;
  }
}

/* =========================================================
   CLEANER WOMEN / MEN SHOP EXPERIENCE
   ========================================================= */
.shop-heading{
  padding-top:64px !important;
  padding-bottom:34px !important;
  text-align:center !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:column !important;
  gap:0 !important;
}

.shop-heading > div{
  width:100% !important;
  text-align:center !important;
}

.shop-heading .eyebrow{
  display:none !important;
}

.shop-heading h2{
  margin:0 !important;
  font-family:"Instrument Sans","DM Sans",sans-serif !important;
  font-size:clamp(2rem,3.1vw,3.25rem) !important;
  font-weight:700 !important;
  letter-spacing:-.04em !important;
  line-height:1 !important;
}

.shop-subtitle{
  margin:14px auto 0 !important;
  max-width:560px !important;
  color:#666 !important;
  font-size:15px !important;
  line-height:1.5 !important;
}

.shop-audience-tabs{
  display:flex !important;
  justify-content:center !important;
  gap:46px !important;
  margin:34px auto 0 !important;
  border-bottom:0 !important;
}

.shop-audience-tab{
  position:relative !important;
  padding:0 0 12px !important;
  color:#8a8a8a !important;
  font-size:16px !important;
  font-weight:600 !important;
  letter-spacing:.01em !important;
}

.shop-audience-tab.active{
  color:#0a0a0a !important;
}

.shop-audience-tab::after{
  height:2px !important;
  bottom:0 !important;
}

.shop-toolbar,
.shop-controls{
  border-top:1px solid #ececec !important;
  border-bottom:1px solid #ececec !important;
}

.filter-trigger{
  margin-top:28px !important;
}

/* Desktop WOMEN/MEN shortcuts beside menu */
.desktop-shop-links{
  display:flex;
  gap:34px;
  align-items:center;
  justify-self:start;
  margin-left:18px;
}

.desktop-shop-links a{
  color:inherit;
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  white-space:nowrap;
}

@media (min-width: 721px) {
  .site-header:not(.scrolled) .desktop-shop-links a{
    color:#fff;
  }
}

.site-header.scrolled .desktop-shop-links a{
  color:#111;
}

.desktop-shop-links a:hover{
  opacity:.58;
}

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

@media(max-width:720px){
  .shop-heading{
    padding-top:46px !important;
    padding-bottom:26px !important;
  }

  .shop-heading h2{
    font-size:clamp(1.8rem,9vw,2.5rem) !important;
  }

  .shop-subtitle{
    font-size:13px !important;
    padding:0 20px;
  }

  .shop-audience-tabs{
    gap:34px !important;
    margin-top:26px !important;
  }

  .shop-audience-tab{
    font-size:14px !important;
  }
}


/* =========================================================
   FINAL DUVA HEADER + SHOP POLISH
   ========================================================= */

/* D + UVA should read as ONE wordmark. */
.duva-wordmark{
  gap:0 !important;
  column-gap:0 !important;
  white-space:nowrap !important;
}

.duva-wordmark .header-d-logo{
  width:50px !important;
  height:32px !important;
  margin:0 -7px 0 0 !important;
  padding:0 !important;
  object-fit:contain !important;
}

.duva-wordmark .header-uva{
  margin:0 !important;
  padding:0 !important;
  font-family:"Instrument Sans","DM Sans",Arial,sans-serif !important;
  font-size:29px !important;
  font-weight:800 !important;
  letter-spacing:-.075em !important;
  line-height:1 !important;
  color:#0a0a0a !important;
  transform:none !important;
}

/* D image + UVA are always the same visual color — but only over the
   transparent desktop hero header. On mobile the header background is
   always solid white, so forcing these white made the logo invisible
   any time the header wasn't in its "scrolled" state (i.e. right after
   scrolling back up) — this is what looked like the header vanishing. */
@media (min-width: 721px) {
  .site-header:not(.scrolled) .duva-wordmark .header-d-logo{
    filter:invert(1) !important;
  }
  .site-header:not(.scrolled) .duva-wordmark .header-uva{
    color:#fff !important;
  }
}
.site-header.scrolled .duva-wordmark .header-d-logo,
.wordmark.duva-wordmark .header-d-logo{
  filter:none !important;
}
.site-header.scrolled .duva-wordmark .header-uva,
.wordmark.duva-wordmark .header-uva{
  color:#0a0a0a !important;
}

.wordmark.duva-wordmark .header-d-logo{
  width:46px !important;
  height:30px !important;
  margin-right:-6px !important;
}
.wordmark.duva-wordmark .header-uva{
  font-size:27px !important;
}

/* -------- Cleaner collection intro -------- */
.shop-section{
  max-width:none !important;
  overflow:visible !important;
  padding-left:clamp(20px,4vw,64px) !important;
  padding-right:clamp(20px,4vw,64px) !important;
}

.shop-intro{
  max-width:760px;
  margin:0 auto;
  padding:58px 0 28px;
  text-align:center;
}

.shop-intro h2{
  margin:0;
  font-family:"Instrument Sans","DM Sans",Arial,sans-serif;
  font-size:clamp(2rem,3.1vw,3rem);
  font-weight:700;
  line-height:1.02;
  letter-spacing:-.045em;
}

.shop-intro > p{
  margin:14px auto 0;
  color:#666;
  font-size:14px;
  line-height:1.55;
}

.shop-audience-tabs{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:52px !important;
  width:max-content !important;
  margin:30px auto 0 !important;
  border:0 !important;
}

.shop-audience-tab{
  position:relative !important;
  min-width:74px;
  padding:0 0 11px !important;
  border:0 !important;
  background:none !important;
  color:#9a9a9a !important;
  font-size:15px !important;
  font-weight:650 !important;
  letter-spacing:.015em !important;
  cursor:pointer;
}

.shop-audience-tab.active{
  color:#111 !important;
}

.shop-audience-tab::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px !important;
  background:#111;
  transform:scaleX(0);
  transition:transform .2s ease;
}

.shop-audience-tab.active::after{
  transform:scaleX(1);
}

/* -------- Compact toolbar instead of giant centered filter -------- */
.shop-toolbar{
  min-height:64px;
  margin:0 calc(clamp(20px,4vw,64px) * -1);
  padding:0 clamp(20px,4vw,64px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-top:1px solid #e7e7e7 !important;
  border-bottom:1px solid #e7e7e7 !important;
}

.shop-toolbar-left{
  display:flex;
  align-items:center;
  gap:28px;
}

.filter-trigger{
  min-width:0 !important;
  width:auto !important;
  margin:0 !important;
  padding:0 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:9px !important;
  border:0 !important;
  background:transparent !important;
  color:#111;
  font-size:10px !important;
  font-weight:700 !important;
  letter-spacing:.14em !important;
}

.toolbar-filter-icon{
  font-size:15px;
  line-height:1;
  transform:rotate(90deg);
}

.toolbar-filter-count{
  color:#777;
  letter-spacing:.02em;
}

.toolbar-product-count{
  margin:0;
  padding-left:28px;
  border-left:1px solid #e4e4e4;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  color:#333;
}

.sort-control{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
}

.sort-control select{
  min-width:112px;
  border:0;
  background:transparent;
  color:#222;
  font:inherit;
  font-size:11px;
  font-weight:600;
  letter-spacing:0;
  outline:none;
  cursor:pointer;
}

/* Filters open as a clean horizontal panel, not a permanent sidebar. */
.shop-layout{
  display:block !important;
  width:100% !important;
}

.shop-filters{
  position:static !important;
  display:none !important;
  width:100% !important;
  margin:0 !important;
  padding:28px 0 32px !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:34px !important;
  border-bottom:1px solid #e7e7e7;
}

.shop-filters.open{
  display:grid !important;
}

.shop-filters .filter-panel-heading{
  grid-column:1 / -1;
  padding:0 0 16px !important;
}

.shop-filters .filter-group{
  padding:0 !important;
  border:0 !important;
}

.shop-results{
  width:100% !important;
  padding-top:34px;
}

.shop-results .product-grid{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:42px 20px !important;
}

/* Make the page feel less empty before products. */
.toolbar-product-count,
.sort-control{
  white-space:nowrap;
}

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

@media(max-width:800px){
  .shop-intro{
    padding:42px 0 24px;
  }

  .shop-toolbar{
    min-height:58px;
  }

  .toolbar-product-count{
    display:none;
  }

  .shop-filters.open{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .shop-results .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:28px 12px !important;
  }
}

@media(max-width:520px){
  .duva-wordmark .header-d-logo{
    width:42px !important;
    height:28px !important;
    margin-right:-6px !important;
  }

  .duva-wordmark .header-uva{
    font-size:24px !important;
  }

  .shop-section{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .shop-intro h2{
    font-size:clamp(1.75rem,9vw,2.2rem);
  }

  .shop-intro > p{
    font-size:12px;
  }

  .shop-audience-tabs{
    gap:32px !important;
    margin-top:24px !important;
  }

  .shop-toolbar{
    margin:0 -14px;
    padding:0 14px;
  }

  .shop-toolbar-left{
    gap:12px;
  }

  .sort-control > span{
    display:none;
  }

  .sort-control select{
    min-width:88px;
  }

  .shop-filters.open{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }
}


/* =========================================================
   COMPACT PREMIUM SHOP HEADER
   ========================================================= */
.shop-section{
  padding-top:0 !important;
}

.shop-compact-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  padding:42px 0 28px;
  border-bottom:1px solid #e8e8e8;
}

.shop-compact-copy{
  max-width:620px;
}

.shop-kicker{
  margin:0 0 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  color:#111;
}

.shop-compact-copy h2{
  margin:0;
  font-family:"Instrument Sans","DM Sans",Arial,sans-serif;
  font-size:clamp(1.65rem,2.4vw,2.55rem);
  font-weight:650;
  line-height:1.08;
  letter-spacing:-.035em;
  text-transform:none;
}

.shop-audience-tabs.compact{
  margin:0 !important;
  gap:30px !important;
  align-self:flex-end;
}

.shop-audience-tabs.compact .shop-audience-tab{
  min-width:auto !important;
  font-size:12px !important;
  padding-bottom:8px !important;
  letter-spacing:.08em !important;
}

.shop-category-row{
  display:flex;
  align-items:center;
  gap:28px;
  padding:18px 0;
  border-bottom:1px solid #ececec;
  overflow-x:auto;
  scrollbar-width:none;
}

.shop-category-row::-webkit-scrollbar{
  display:none;
}

.shop-category-chip{
  flex:0 0 auto;
  border:0;
  background:transparent;
  padding:0;
  color:#767676;
  font:inherit;
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  cursor:pointer;
}

.shop-category-chip.active{
  color:#111;
}

.shop-category-chip:hover{
  color:#111;
}

.compact-toolbar{
  margin:0 !important;
  min-height:56px !important;
  padding:0 !important;
  border-top:0 !important;
  border-bottom:1px solid #e8e8e8 !important;
}

.compact-toolbar .filter-trigger{
  font-size:10px !important;
}

.compact-toolbar .toolbar-product-count{
  font-size:10px !important;
}

.compact-toolbar .sort-control{
  font-size:10px !important;
}

.shop-results{
  padding-top:28px !important;
}

@media(max-width:720px){
  .shop-compact-head{
    align-items:flex-start;
    flex-direction:column;
    gap:24px;
    padding:30px 0 22px;
  }

  .shop-audience-tabs.compact{
    align-self:flex-start;
  }

  .shop-category-row{
    gap:22px;
    padding:16px 0;
  }

  .compact-toolbar{
    min-height:52px !important;
  }
}


/* =========================================================
   STRONGER WOMEN / MEN COLLECTION DISTINCTION
   ========================================================= */
.gender-collection-head{
  align-items:center !important;
  padding:42px 0 30px !important;
}

.gender-collection-head .shop-compact-copy{
  max-width:680px !important;
}

.gender-collection-head .shop-kicker{
  margin:0 0 12px !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.17em !important;
  color:#111 !important;
}

.gender-collection-head .shop-compact-copy h2{
  max-width:640px !important;
  font-size:clamp(1.7rem,2.5vw,2.65rem) !important;
  line-height:1.08 !important;
}

.shop-collection-copy{
  margin:14px 0 0 !important;
  max-width:560px !important;
  color:#686868 !important;
  font-size:13px !important;
  line-height:1.6 !important;
}

/* Segmented control */
.shop-audience-tabs.segmented{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:0 !important;
  min-width:240px !important;
  margin:0 !important;
  border:1px solid #111 !important;
  background:#fff !important;
}

.shop-audience-tabs.segmented .shop-audience-tab{
  min-width:0 !important;
  padding:14px 24px !important;
  border:0 !important;
  background:#fff !important;
  color:#111 !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.12em !important;
  line-height:1 !important;
}

.shop-audience-tabs.segmented .shop-audience-tab + .shop-audience-tab{
  border-left:1px solid #111 !important;
}

.shop-audience-tabs.segmented .shop-audience-tab::after{
  display:none !important;
}

.shop-audience-tabs.segmented .shop-audience-tab.active{
  background:#111 !important;
  color:#fff !important;
}

.shop-audience-tabs.segmented .shop-audience-tab:hover{
  background:#f3f3f3 !important;
}

.shop-audience-tabs.segmented .shop-audience-tab.active:hover{
  background:#111 !important;
  color:#fff !important;
}

/* Make the selected collection feel visually anchored. */
.shop-category-row{
  padding-top:16px !important;
  padding-bottom:16px !important;
}

.shop-category-chip.active{
  color:#111 !important;
  text-decoration:underline;
  text-underline-offset:5px;
  text-decoration-thickness:1px;
}

@media(max-width:760px){
  .gender-collection-head{
    align-items:flex-start !important;
    padding:32px 0 24px !important;
  }

  .shop-audience-tabs.segmented{
    width:100% !important;
    min-width:0 !important;
  }

  .shop-audience-tabs.segmented .shop-audience-tab{
    padding:13px 16px !important;
  }

  .shop-collection-copy{
    font-size:12px !important;
  }
}


/* DUVA WORDMARK — subtle character spacing */
.duva-wordmark {
  gap: 2px !important;
  column-gap: 2px !important;
}

.duva-wordmark .header-d-logo {
  margin-right: 0 !important;
}

.duva-wordmark .header-uva {
  letter-spacing: -0.025em !important;
}

.wordmark.duva-wordmark .header-d-logo {
  margin-right: 0 !important;
}


/* =========================================================
   FINAL ADD-TO-BAG NOTIFICATION
   One consistent toast, always visible in the top-right.
   ========================================================= */
#toast.toast {
  position: fixed !important;
  top: 88px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;

  z-index: 2147483000 !important;
  box-sizing: border-box !important;
  width: min(390px, calc(100vw - 32px)) !important;
  max-width: 390px !important;
  min-height: 92px !important;

  display: grid !important;
  grid-template-columns: 38px 58px minmax(0, 1fr) 28px !important;
  gap: 11px !important;
  align-items: center !important;

  margin: 0 !important;
  padding: 13px !important;

  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 8px !important;
  background: #0b0b0b !important;
  color: #fff !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.24) !important;

  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate3d(12px, -6px, 0) !important;
  transition:
    opacity .18s ease,
    transform .22s ease,
    visibility .18s ease !important;

  pointer-events: none !important;
}

#toast.toast.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0,0,0) !important;
  pointer-events: auto !important;
}

#toast.toast[hidden] {
  display: grid !important;
}

#toast .toast-icon {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 50% !important;
}

#toast .toast-product-image {
  width: 58px !important;
  height: 70px !important;
  border-radius: 4px !important;
  object-fit: cover !important;
  background: #f2f2f2 !important;
}

#toast .toast-title {
  display: block !important;
  margin: 0 0 5px !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: .15em !important;
}

#toast .toast-message {
  display: block !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

#toast .toast-actions {
  display: flex !important;
  gap: 14px !important;
  margin-top: 8px !important;
}

#toast .toast-link {
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.72) !important;
  border-radius: 0 !important;
  padding: 0 0 2px !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  cursor: pointer !important;
}

#toast .toast-close {
  align-self: start !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.7) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

/* Mobile still stays at the TOP, not the bottom. */
@media (max-width: 620px) {
  #toast.toast {
    top: 76px !important;
    right: 12px !important;
    bottom: auto !important;
    left: 12px !important;
    width: auto !important;
    max-width: none !important;
    grid-template-columns: 34px 52px minmax(0,1fr) 26px !important;
    gap: 9px !important;
    min-height: 82px !important;
    padding: 11px !important;
  }

  #toast .toast-icon {
    width: 34px !important;
    height: 34px !important;
  }

  #toast .toast-product-image {
    width: 52px !important;
    height: 64px !important;
  }
}


body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; }
img { display: block; width: 100%; }

/* Announcement */
.announcement {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-button {
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .2s ease, color .2s ease, top .2s ease;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.logo-mark {
  grid-column: 2;
  font-family: "Instrument Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .18em;
}
.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button, .menu-button, .drawer-close {
  background: transparent;
  cursor: pointer;
}
.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.ui-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.count-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
}
.site-header.scrolled .count-badge {
  background: var(--black);
  color: var(--white);
}

/* Search expands inside header */
.header-search { position: relative; display: flex; align-items: center; }
.header-search input {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: none;
  background: transparent;
  color: inherit;
  transition: width .25s ease, opacity .2s ease;
}
.header-search.open input,
.header-search:focus-within input {
  width: 220px;
  opacity: 1;
  padding-left: 8px;
}
.header-search-results {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(360px, 82vw);
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}
.header-search.open .header-search-results:not(:empty) { display: grid; }
.header-search-result {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

/* Mobile menu */
.menu-button { display: none; width: 40px; height: 40px; padding: 9px; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 5px 0; background: currentColor; }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  width: min(88vw, 380px);
  padding: 90px 34px 34px;
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--line);
  transform: translateX(-105%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.mobile-menu .drawer-close { position: absolute; top: 22px; right: 24px; font-size: 30px; }

/* Shared typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--mid-gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Video-first hero */
.hero {
  position: relative;
  height: calc(100svh - 34px);
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  /* Temporary background shown before the campaign video is added. */
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255,255,255,.28) 0%,
      rgba(120,120,120,.18) 22%,
      rgba(35,35,35,.92) 60%,
      #000 100%
    );
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.35) 38%,
      rgba(0,0,0,0) 75%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--gutter) clamp(55px, 9vh, 110px);
  color: var(--white);
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.07em;
}
.hero h1 span {
  display: block;
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.72rem, 1vw, .95rem);
  line-height: 1;
  letter-spacing: .25em;
}
.hero-copy { margin: 28px 0; color: rgba(255,255,255,.78); font-size: 15px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button-primary { background: var(--black); color: var(--white); }
.hero .button-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.hero .button-outline { background: transparent; border-color: var(--white); color: var(--white); }
.button:hover { background: var(--black); color: var(--white); }
.hero .button-primary:hover { background: transparent; color: var(--white); }
.button-full { width: 100%; }

/* Shop */
.shop-section,
.founders-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.section-heading,
.founders-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2,
.about-section h2,
.founders-heading h2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 16px;
}
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft-gray);
}
.product-image::before {
  content: "PRODUCT IMAGE";
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
}
.favorite-toggle.active { background: var(--black); color: var(--white); }
.product-info { padding-top: 14px; }
.product-category { margin: 0 0 5px; color: var(--mid-gray); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-size: 13px; font-weight: 600; }
.product-meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 12px; }
.add-button {
  min-height: 36px;
  padding: 0 13px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Benefits */
.benefit-bar {
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--black);
  color: var(--white);
}
.benefit-bar article { display: flex; gap: 14px; align-items: flex-start; }
.benefit-bar article > span { font-size: 18px; }
.benefit-bar h3 { margin: 0 0 5px; font-size: 10px; letter-spacing: .12em; }
.benefit-bar p { margin: 0; color: #bdbdbd; font-size: 11px; }

/* Story */
.about-section {
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.story-copy { max-width: 620px; color: var(--mid-gray); font-size: 14px; }
.story-copy p { margin: 0 0 16px; }
.story-copy strong { color: var(--black); }
.story-image { margin: 0; min-height: 620px; overflow: hidden; background: var(--soft-gray); }
.story-image img { height: 100%; min-height: 620px; object-fit: cover; filter: none; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.founder-card { border: 1px solid var(--line); background: var(--white); }
.founder-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft-gray); }
.founder-image img { height: 100%; object-fit: cover; filter: none; }
.founder-copy { padding: 32px; }
.founder-role, .founder-credentials { color: var(--mid-gray); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy h3 { margin: 6px 0 16px; font-family: "Instrument Sans", sans-serif; font-size: 34px; }
.founder-copy > p:not(.founder-role):not(.founder-credentials) { color: var(--mid-gray); font-size: 13px; }

/* Footer */
.site-footer {
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.2fr;
  gap: 42px;
  background: var(--black);
  color: var(--white);
}
.site-footer .logo { font-family: "Instrument Sans", sans-serif; font-size: 30px; font-weight: 700; letter-spacing: .16em; }
.site-footer h3 { margin: 0 0 16px; font-size: 10px; letter-spacing: .13em; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #bdbdbd; font-size: 12px; }
.newsletter-form > div { display: flex; border-bottom: 1px solid var(--white); }
.newsletter-form input { width: 100%; border: 0; padding: 13px 0; background: transparent; color: var(--white); outline: none; }
.newsletter-form button { background: transparent; color: var(--white); cursor: pointer; font-size: 20px; }

/* Drawers, modal, chat */
.drawer, .chat-panel, .modal-card { background: var(--white); color: var(--black); }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(92vw, 460px);
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s ease;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-family: "Instrument Sans", sans-serif; }
.drawer-close { font-size: 28px; }
.drawer-content { flex: 1; overflow: auto; padding: 20px 0; }
.drawer-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.subtotal { margin-bottom: 18px; display: flex; justify-content: space-between; font-size: 12px; }
.mini-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mini-item-image {
  display: block;
  width: 92px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft-gray);
}
.mini-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mini-item-details { min-width: 0; }
.mini-item-details h3 { margin: 0 0 6px; font-size: 13px; }
.mini-item-option { margin: 3px 0; font-size: 10px; color: #6b6b6b; text-transform: uppercase; letter-spacing: .06em; }
.mini-item-price { margin: 10px 0 12px; font-size: 12px; }
.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  border: 1px solid var(--line);
}
.quantity-control button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.quantity-control button:hover { background: var(--soft-gray); }
.quantity-control span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.remove-button { align-self: start; background: transparent; cursor: pointer; }
.empty-state { padding: 50px 0; color: var(--mid-gray); text-align: center; }
.modal { position: fixed; inset: 0; z-index: 110; padding: 20px; display: none; place-items: center; background: rgba(0,0,0,.45); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(100%, 520px); padding: 44px; border: 1px solid var(--line); }
.modal-card .drawer-close { position: absolute; top: 15px; right: 17px; }
.modal-card input { width: 100%; margin: 15px 0; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.page-overlay { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(0,0,0,.35); cursor: pointer; }
.page-overlay.open { display: block; }
.chat-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border: 1px solid var(--black); border-radius: 50%; background: var(--white); color: var(--black); cursor: pointer; font-size: 10px; font-weight: 700; }
.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 100; width: min(90vw, 360px); padding: 20px; display: none; border: 1px solid var(--line); }
.chat-panel.open { display: block; }
.chat-header { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.chat-header small { display: block; color: var(--mid-gray); }
.chat-messages { min-height: 130px; padding: 15px 0; }
.chat-bubble { padding: 12px; background: var(--soft-gray); font-size: 12px; }
.chat-form { display: flex; border: 1px solid var(--line); }
.chat-form input { width: 100%; border: 0; padding: 12px; outline: none; }
.chat-form button { width: 45px; background: var(--black); color: var(--white); cursor: pointer; }
/* Premium added-to-bag confirmation used by quick add and product pages. */
.toast {
  position: fixed;
  right: 24px;
  top: 92px;
  z-index: 220;
  width: min(380px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 38px 54px minmax(0, 1fr) 26px;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(17,17,17,.98);
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px,-8px,0);
  transition: opacity 200ms ease, transform 240ms ease, visibility 200ms ease;
  pointer-events: none;
}
.toast.show { opacity: 1; visibility: visible; transform: translate3d(0,0,0); pointer-events: auto; }
.toast-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.toast-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.toast-product-image { width: 54px; height: 64px; object-fit: cover; display: block; border-radius: 5px; background: #f1f1f1; }
.toast-copy { min-width: 0; }
.toast-title { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 800; line-height: 1.2; letter-spacing: .17em; }
.toast-message { display: block; font-size: 13px; font-weight: 500; line-height: 1.4; color: rgba(255,255,255,.82); }
.toast-actions { display: flex; gap: 18px; margin-top: 8px; }
.toast-link { border: 0; border-bottom: 1px solid rgba(255,255,255,.72); padding: 0 0 2px; background: transparent; color: #fff; font: inherit; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; cursor: pointer; }
.toast-checkout { color: #fff; }
.toast-close { align-self: start; width: 28px; height: 28px; border: 0; background: transparent; color: rgba(255,255,255,.7); font-size: 22px; line-height: 1; cursor: pointer; }
.toast-close:hover { color: #fff; }
@media (max-width: 600px) {
  .toast { top: auto; right: 12px; bottom: 12px; width: calc(100vw - 24px); grid-template-columns: 38px 58px minmax(0,1fr) 26px; gap: 10px; padding: 12px; }
  .toast-icon { width: 38px; height: 38px; }
  .toast-product-image { width: 58px; height: 70px; }
  .toast-actions { gap: 13px; }
}

/* Responsive */
@media (max-width: 980px) {
  .site-header { height: 68px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-search input { position: absolute; top: 50px; right: 0; background: var(--white); color: var(--black); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 460px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .announcement { padding-inline: 10px; font-size: 8px; }
  .announcement .text-button { font-size: 8px; }
  .site-header { padding: 0 12px; }
  .logo-mark { font-size: 21px; }
  .header-actions { gap: 0; }
  .header-search { display: none; }
  .hero { height: calc(100svh - 34px); min-height: 620px; }
  .hero-content { padding: 0 22px 55px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .shop-section, .about-section, .founders-section { padding: 72px 20px; }
  .product-grid { gap: 24px 10px; }
  .benefit-bar { grid-template-columns: 1fr; padding: 30px 20px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-copy { padding: 24px; }
  .site-footer { grid-template-columns: 1fr; padding: 55px 20px; }
}


/* =========================================================
   PHOTO + TYPOGRAPHY CORRECTION
   Keeps the interface monochrome while preserving full-color photos.
   ========================================================= */

:root {
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Instrument Sans", Arial, sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}

.logo,
.logo-mark,
.hero h1,
.section-heading h2,
.about-section h2,
.founders-heading h2,
.founder-copy h3,
.drawer-header h2,
.modal-card h2,
.legal-page h1,
.legal-page h2,
.utility-page h1,
.utility-page h2,
.panel h1,
.panel h2 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.03em;
}

/* Keep every actual photograph in full color. */
.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-image,
.product-image img,
.product-card img,
.hero-video,
.hero video,
img {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* Slightly softer, more premium typography proportions. */
.hero h1 {
  font-weight: 600 !important;
  letter-spacing: -0.055em !important;
}

.section-heading h2,
.about-section h2,
.founders-heading h2 {
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.desktop-nav a,
.button,
.eyebrow,
.founder-role,
.founder-credentials {
  font-family: var(--font-body) !important;
}


/* =========================================================
   HERO VIDEO LAYERING
   The gradient remains visible until a real MP4 loads.
   ========================================================= */

.hero-video {
  z-index: 0;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-overlay { z-index: 1; }

.hero-content { z-index: 2; }

.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-card img,
.product-image,
.hero-video {
  filter: none !important;
  -webkit-filter: none !important;
}
/* =========================================================
   2026 STOREFRONT UPDATE
   Gradient hero, side-by-side story and collection filtering.
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 56% 22%, rgba(255,255,255,.68) 0%, rgba(184,184,184,.54) 19%, rgba(66,66,66,.72) 46%, rgba(12,12,12,.98) 82%),
    linear-gradient(115deg, #090909 0%, #777 52%, #111 100%);
}

.shop-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.filter-trigger {
  min-width: 170px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.shop-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 42px; align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.filter-panel-heading { padding-bottom: 17px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--black); }
.filter-panel-heading p, .filter-panel-heading button { margin: 0; background: none; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.filter-panel-heading button { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.filter-group { margin: 0; padding: 24px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-group legend { width: 100%; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.filter-group > label { margin: 9px 0; display: flex; gap: 10px; align-items: center; color: #444; cursor: pointer; font-size: 12px; }
.filter-group input { accent-color: #111; }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.size-options label { cursor: pointer; }
.size-options input { position: absolute; opacity: 0; pointer-events: none; }
.size-options span { min-height: 34px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 10px; }
.size-options input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.shop-results-bar { min-height: 45px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.shop-results-bar p, .shop-results-bar label { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.shop-results-bar label { display: flex; align-items: center; gap: 9px; }
.shop-results-bar select { border: 0; background: transparent; font-size: 10px; outline: none; }
.empty-products { grid-column: 1 / -1; min-height: 340px; display: grid; place-content: center; text-align: center; }
.empty-products p { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button { padding: 12px; background: transparent; cursor: pointer; text-decoration: underline; }

.about-section { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); align-items: stretch; }
.story-content { align-self: center; }
.story-image { min-height: 0; aspect-ratio: 4 / 5; align-self: center; }
.story-image img { min-height: 0; height: 100%; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .shop-filters { position: static; display: none; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px; border: 1px solid var(--line); }
  .shop-filters.open { display: grid; }
  .filter-panel-heading { grid-column: 1 / -1; }
  .filter-group { padding: 0; border-bottom: 0; }
  .about-section { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 34px; }
}

@media (max-width: 620px) {
  .shop-heading { align-items: flex-start; flex-direction: column; }
  .filter-trigger { width: 100%; }
  .shop-filters.open { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: minmax(0, 1.15fr) minmax(135px, .85fr); gap: 18px; align-items: start; }
  .about-section h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .story-copy { font-size: 11px; line-height: 1.45; }
  .story-copy p { margin-bottom: 11px; }
  .story-image { position: sticky; top: 82px; aspect-ratio: 3 / 5; }
}

/* =========================================================
   COMPACT PRODUCT GRID
   Keeps product photography smaller so more of the collection is
   visible at once. Adjust the column counts below to resize the cards.
   ========================================================= */
.shop-results .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 14px;
}

.shop-results .product-image {
  aspect-ratio: 4 / 5;
}

.shop-results .product-info {
  padding-top: 10px;
}

.shop-results .product-meta {
  margin-top: 8px;
}

.shop-results .favorite-toggle {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.shop-results .add-button {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 8px;
}

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

@media (max-width: 980px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
  }
}

@media (max-width: 620px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .shop-results .product-info h3 {
    font-size: 11px;
  }

  .shop-results .product-price {
    font-size: 10px;
  }

  .shop-results .add-button {
    min-height: 30px;
    padding-inline: 8px;
  }
}

/* =========================================================
   PRODUCT IMAGE CAROUSELS
   Front → back → details → full product board.
   ========================================================= */
.product-carousel {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  touch-action: pan-y;
}

.product-carousel > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.product-card:hover .product-carousel > img {
  transform: scale(1.015);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
}

.carousel-prev { left: 9px; }
.carousel-next { right: 9px; }

.product-carousel:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
}

.carousel-arrow:hover { background: #fff; }

.product-dots {
  position: absolute;
  left: 50%;
  bottom: 11px;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
}

.product-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
}

.product-dot.active {
  width: 18px;
  border-radius: 999px;
  background: #111;
}

@media (hover: none), (max-width: 760px) {
  .carousel-arrow {
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
}


/* Product galleries, colour swatches and product detail pages */
.product-image-link { display:block; width:100%; height:100%; color:inherit; }
.product-image-link img { width:100%; height:100%; object-fit:cover; }
.product-title-link { color:inherit; text-decoration:none; }
.product-title-link:hover { text-decoration:underline; text-underline-offset:4px; }
.product-colors { display:flex; align-items:center; gap:7px; margin:10px 0 2px; min-height:18px; }
.color-swatch,.filter-swatch { display:inline-block; width:16px; height:16px; border-radius:50%; border:1px solid rgba(0,0,0,.28); box-shadow:inset 0 0 0 2px rgba(255,255,255,.35); flex:none; }
.color-count { margin-left:3px; font-size:10px; color:#666; text-transform:uppercase; letter-spacing:.08em; }
.color-black { background:#171717; }.color-cream { background:#e9e1d2; }.color-brown { background:#5b4638; }.color-olive { background:#4d5140; }.color-plum { background:#563747; }
.color-filter-group label { gap:8px; }
.filter-swatch { width:14px; height:14px; }
.product-page-main { padding:130px 5vw 80px; background:#fff; min-height:100vh; }
.product-detail { max-width:1440px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr); gap:56px; align-items:start; }
.product-gallery { display:grid; grid-template-columns:90px minmax(0,1fr); gap:16px; position:sticky; top:110px; }
.product-thumbnails { display:flex; flex-direction:column; gap:10px; }
.product-thumbnail { border:1px solid transparent; background:#fff; padding:0; cursor:pointer; aspect-ratio:1/1.2; overflow:hidden; }
.product-thumbnail.active { border-color:#111; }
.product-thumbnail img { width:100%; height:100%; object-fit:cover; }
.product-main-image { background:#fff; aspect-ratio:4/5; overflow:hidden; position:relative; }
.product-main-image img { width:100%; height:100%; object-fit:cover; transition:opacity .2s ease; }
.product-details-panel { padding:20px 0; }
.product-breadcrumb { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#666; margin-bottom:28px; }
.product-details-panel h1 { font-size:clamp(34px,4vw,58px); line-height:.98; margin:0 0 18px; letter-spacing:-.04em; }
.product-detail-price { font-size:19px; margin:0 0 28px; }
.product-description { color:#444; line-height:1.75; margin-bottom:30px; }
.option-label { display:flex; justify-content:space-between; font-size:11px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; margin:24px 0 12px; }
.detail-color-options,.detail-size-options { display:flex; flex-wrap:wrap; gap:10px; }
.detail-color-button { width:34px; height:34px; border-radius:50%; border:1px solid #bbb; padding:4px; background:#fff; cursor:pointer; }
.detail-color-button span { width:100%; height:100%; border-radius:50%; display:block; }
.detail-color-button.active { outline:2px solid #111; outline-offset:2px; }
.detail-size-button { min-width:48px; height:44px; border:1px solid #bbb; background:transparent; cursor:pointer; }
.detail-size-button.active { background:#111; color:#fff; border-color:#111; }
.product-add-button { width:100%; border:0; background:#111; color:#fff; padding:18px; margin-top:28px; font-weight:700; letter-spacing:.12em; cursor:pointer; }
.product-accordions { margin-top:28px; border-top:1px solid #ccc; }
.product-accordions details { border-bottom:1px solid #ccc; padding:17px 0; }
.product-accordions summary { cursor:pointer; font-size:12px; font-weight:700; letter-spacing:.1em; }
.product-accordions p { color:#555; line-height:1.65; font-size:13px; }
.recommendations { max-width:1440px; margin:90px auto 0; }
.recommendations h2 { font-size:clamp(28px,4vw,48px); margin-bottom:28px; }
.recommendation-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.recommendation-card { color:#111; text-decoration:none; }
.recommendation-card img { width:100%; aspect-ratio:4/5; object-fit:cover; background:#fff; }
.recommendation-card h3 { font-size:14px; margin:12px 0 5px; }
.recommendation-card p { margin:0; font-size:13px; color:#555; }
@media(max-width:900px){.product-detail{grid-template-columns:1fr;gap:25px}.product-gallery{position:static;grid-template-columns:1fr}.product-thumbnails{order:2;flex-direction:row;overflow:auto}.product-thumbnail{min-width:74px}.recommendation-grid{grid-template-columns:repeat(2,1fr)}.product-page-main{padding:100px 18px 60px}}

/* Production storefront additions */
.size-guide-link{border:0;background:transparent;padding:0;text-decoration:underline;font:inherit;font-size:10px;font-weight:700;letter-spacing:.1em;cursor:pointer}.size-guide-modal-card{max-width:680px}.size-guide-table-wrap{overflow:auto;margin:24px 0}.size-guide-table{width:100%;border-collapse:collapse}.size-guide-table th,.size-guide-table td{padding:13px 12px;border-bottom:1px solid var(--line);text-align:left;font-size:12px}.size-guide-note{font-size:12px;line-height:1.7;color:#555}
.payment-options{margin:18px 0 14px}.payment-options>span{display:block;font-size:9px;letter-spacing:.13em;font-weight:700;margin-bottom:9px}.payment-option-list{display:flex;flex-wrap:wrap;gap:6px}.payment-pill{border:1px solid #d4d4d4;border-radius:4px;padding:5px 7px;background:#fff;font-size:9px;font-weight:700}.track-order-link{display:block;text-align:center;margin-top:15px;color:inherit;font-size:10px;font-weight:700;letter-spacing:.09em;text-decoration:underline}.checkout-modal-card{max-width:620px;max-height:90vh;overflow:auto}.checkout-form{display:grid;gap:11px;margin-top:20px}.checkout-form input,.checkout-form select{width:100%;padding:14px;border:1px solid var(--line);background:#fff}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:11px}.checkout-status{min-height:18px;font-size:11px;line-height:1.5;color:#8a2525}.checkout-form button:disabled{opacity:.55;cursor:wait}
.tracking-page{min-height:100vh;background:#fff;padding:150px 20px 80px}.tracking-card{max-width:820px;margin:0 auto}.tracking-card h1{font-size:clamp(42px,7vw,88px);line-height:.92;margin:12px 0 20px}.tracking-form{display:grid;grid-template-columns:1fr 210px auto;gap:10px;margin:35px 0 20px}.tracking-form input,.tracking-form select{padding:15px;border:1px solid var(--line);background:#fff}.tracking-status{padding:12px 0;color:#8a2525}.tracking-summary{border:1px solid var(--line);padding:22px;margin-top:24px}.tracking-summary span{font-size:10px;letter-spacing:.12em}.tracking-summary strong{display:block;font-size:28px;margin:8px 0}.tracking-summary p{margin:4px 0;color:#555}.tracking-timeline{margin:28px 0}.tracking-timeline article{display:grid;grid-template-columns:18px 1fr;gap:12px;padding-bottom:22px}.tracking-timeline article>span{width:10px;height:10px;border-radius:50%;background:#111;margin-top:4px;position:relative}.tracking-timeline article>span:after{content:"";position:absolute;top:10px;left:4px;width:1px;height:42px;background:#ccc}.tracking-timeline article:last-child>span:after{display:none}.tracking-timeline p{margin:4px 0}.tracking-timeline small{color:#666}.tracking-carrier-link{display:inline-flex}
@media(max-width:700px){.form-row,.tracking-form{grid-template-columns:1fr}.tracking-page{padding-top:110px}.payment-option-list{gap:4px}}


@media (max-width: 480px) {
  .mini-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 12px;
  }
  .mini-item-image { width: 76px; }
}

/* Premium collection card interactions */
.product-image-link { position: relative; }
.product-image-link img { position:absolute; inset:0; transition:opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.product-hover-image { opacity:0; }
@media (hover:hover) {
  .product-card:hover .product-primary-image { opacity:0; transform:scale(1.015); }
  .product-card:hover .product-hover-image { opacity:1; transform:scale(1.015); }
}
.quick-view-button {
  position:absolute; z-index:4; left:12px; right:12px; bottom:44px;
  min-height:40px; border:0; background:rgba(17,17,17,.94); color:#fff;
  font-size:9px; font-weight:800; letter-spacing:.13em; cursor:pointer;
  opacity:0; transform:translateY(10px); transition:opacity .22s ease, transform .22s ease, background .2s ease;
}
.product-card:hover .quick-view-button,.quick-view-button:focus-visible { opacity:1; transform:translateY(0); }
.quick-view-button:hover { background:#000; color:#fff; }
.favorite-toggle { z-index:5; border:1px solid rgba(0,0,0,.1); transition:transform .2s ease, background .2s ease, color .2s ease; }
.favorite-toggle:hover { transform:scale(1.07); }
.favorite-toggle svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.7; }
.favorite-toggle.active svg { fill:currentColor; }
.add-button { position:relative; overflow:hidden; transition:transform .18s ease, background .2s ease; }
.add-button::after { content:""; position:absolute; inset:0; background:rgba(255,255,255,.16); transform:translateX(-110%) skewX(-18deg); transition:transform .45s ease; }
.add-button:hover { transform:translateY(-2px); background:#000; color:#fff; }
.add-button:hover::after { transform:translateX(110%) skewX(-18deg); }
.add-button:active { transform:translateY(0) scale(.97); }

/* Quick view modal */
.quick-view-modal { z-index:120; }
.quick-view-card { width:min(1040px,94vw); max-width:1040px; max-height:92vh; overflow:auto; padding:0; background:#fff; }
.quick-view-close { z-index:4; top:14px; right:14px; background:rgba(255,255,255,.9); border-radius:50%; }
.quick-view-layout { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(350px,.95fr); }
.quick-view-gallery { padding:24px; background:#f5f5f5; }
.quick-view-main-image { aspect-ratio:4/5; overflow:hidden; background:#fff; }
.quick-view-main-image img { width:100%; height:100%; display:block; object-fit:cover; }
.quick-view-thumbnails { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px; }
.quick-view-thumb { border:1px solid transparent; padding:0; background:#fff; cursor:pointer; aspect-ratio:4/5; overflow:hidden; }
.quick-view-thumb.active { border-color:#111; }
.quick-view-thumb img { width:100%; height:100%; object-fit:cover; }
.quick-view-details { padding:clamp(34px,5vw,68px); align-self:center; }
.quick-view-details h2 { margin:0 0 12px; font-family:"Instrument Sans",sans-serif; font-size:clamp(30px,3.5vw,48px); line-height:1; letter-spacing:-.04em; }
.quick-view-price { font-size:16px; margin:0 0 22px; }
.quick-view-description { color:#555; line-height:1.65; font-size:13px; margin:0 0 26px; }
.quick-option-heading { display:flex; justify-content:space-between; gap:15px; margin:22px 0 11px; font-size:10px; font-weight:800; letter-spacing:.12em; }
.quick-option-heading a { color:inherit; text-underline-offset:3px; }
.quick-colors,.quick-sizes { display:flex; flex-wrap:wrap; gap:10px; }
.quick-color { width:32px; height:32px; border-radius:50%; padding:4px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-color span { display:block; width:100%; height:100%; border-radius:50%; }
.quick-color.active { outline:2px solid #111; outline-offset:2px; }
.quick-size { min-width:46px; height:42px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-size.active,.quick-size:hover { background:#111; color:#fff; border-color:#111; }
.quick-view-error { min-height:18px; margin:12px 0 0; font-size:11px; color:#8a2525; }
.quick-view-add { width:100%; margin-top:8px; }
.quick-view-full-link { display:block; margin-top:17px; color:inherit; text-align:center; font-size:10px; font-weight:800; letter-spacing:.1em; text-underline-offset:4px; }
@media (max-width:760px) {
  .quick-view-button { opacity:1; transform:none; left:8px; right:8px; bottom:42px; min-height:34px; }
  .quick-view-layout { grid-template-columns:1fr; }
  .quick-view-gallery { padding:12px; }
  .quick-view-details { padding:28px 20px 32px; }
  .quick-view-card { max-height:94vh; }
}


/* Keep Favorites exactly the same size as the Shopping Bag drawer. */
#cartDrawer,
#favoritesDrawer {
  width: min(92vw, 460px);
  max-width: 460px;
  padding: 30px;
}

/* Compact confirmation after adding an item to the shopping bag. */
.toast {
  max-width: 380px;
}


/* FINAL: matching Shopping Bag and Favorites drawers */
#cartDrawer,
#favoritesDrawer {
  width: min(84vw, 850px) !important;
  max-width: 850px !important;
  padding: 34px 60px !important;
}

#cartDrawer .drawer-header,
#favoritesDrawer .drawer-header {
  min-height: 145px;
  padding-bottom: 28px;
}

#cartDrawer .drawer-header h2,
#favoritesDrawer .drawer-header h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.055em;
}

#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  padding: 40px 0 22px;
}

#favoritesDrawer .mini-item,
#cartDrawer .mini-item {
  grid-template-columns: 184px minmax(0, 1fr) 28px;
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 36px;
}

#favoritesDrawer .mini-item-image,
#cartDrawer .mini-item-image {
  width: 184px;
  aspect-ratio: 4 / 5;
}

#favoritesDrawer .mini-item-details h3,
#cartDrawer .mini-item-details h3 {
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 1.12;
}

#favoritesDrawer .mini-item-price,
#cartDrawer .mini-item-price {
  margin: 20px 0;
  font-size: 25px;
}

#favoritesDrawer .favorite-colors {
  margin: 12px 0 6px;
}

#favoritesDrawer .favorite-add-button {
  min-width: 180px;
  min-height: 58px;
  padding: 0 24px;
}

/* FINAL: always-visible add-to-bag confirmation */
.toast {
  position: fixed !important;
  top: 96px !important;
  right: 24px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 99999 !important;
  width: min(430px, calc(100vw - 32px)) !important;
  max-width: 430px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: grid !important;
  transform: translate3d(18px, -8px, 0) !important;
}

.toast.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) !important;
  pointer-events: auto !important;
}

@media (max-width: 760px) {
  #cartDrawer,
  #favoritesDrawer {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 24px 20px !important;
  }

  #cartDrawer .drawer-header,
  #favoritesDrawer .drawer-header {
    min-height: 110px;
  }

  #favoritesDrawer .mini-item,
  #cartDrawer .mini-item {
    grid-template-columns: 108px minmax(0, 1fr) 24px;
    gap: 16px;
  }

  #favoritesDrawer .mini-item-image,
  #cartDrawer .mini-item-image {
    width: 108px;
  }

  #favoritesDrawer .mini-item-details h3,
  #cartDrawer .mini-item-details h3 {
    font-size: 18px;
  }

  #favoritesDrawer .mini-item-price,
  #cartDrawer .mini-item-price {
    font-size: 18px;
  }

  .toast {
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    width: calc(100vw - 24px) !important;
  }
}

/* CORRECTION: keep Favorites compact instead of using the full Shopping Bag width. */
#favoritesDrawer {
  width: min(92vw, 460px) !important;
  max-width: 460px !important;
}

#favoritesDrawer .drawer-header {
  padding: 28px 32px 24px !important;
}

#favoritesDrawer .drawer-content {
  padding: 0 32px 32px !important;
}

#favoritesDrawer .mini-item {
  grid-template-columns: 96px minmax(0, 1fr) 24px !important;
  gap: 18px !important;
  padding: 24px 0 !important;
}

#favoritesDrawer .mini-item-image {
  width: 96px !important;
}

#favoritesDrawer .mini-item-details h3 {
  font-size: 22px !important;
  line-height: 1.08 !important;
}

#favoritesDrawer .mini-item-price {
  font-size: 18px !important;
}

#favoritesDrawer .favorite-add-button {
  min-width: 0 !important;
  width: auto !important;
  padding: 13px 18px !important;
}

@media (max-width: 560px) {
  #favoritesDrawer {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  #favoritesDrawer .drawer-header,
  #favoritesDrawer .drawer-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #favoritesDrawer .mini-item {
    grid-template-columns: 82px minmax(0, 1fr) 20px !important;
    gap: 14px !important;
  }

  #favoritesDrawer .mini-item-image {
    width: 82px !important;
  }
}

/* =========================================================
   COLLECTION GRID — FINAL RESPONSIVE OVERRIDE
   Keeps cards readable and prevents horizontal clipping when
   the browser is zoomed in or out.
   ========================================================= */
.shop-section {
  width: 100%;
  max-width: 1680px;
  overflow: hidden;
}

.shop-layout {
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  gap: clamp(24px, 2.5vw, 42px);
  width: 100%;
  min-width: 0;
}

.shop-results,
.shop-results .product-grid,
.shop-results .product-card,
.shop-results .product-info,
.shop-results .product-meta {
  min-width: 0;
}

/* Three comfortable cards on ordinary and zoomed-out desktop views. */
.shop-results .product-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.2vw, 42px) clamp(14px, 1.5vw, 24px);
}

.shop-results .product-card {
  width: 100%;
  overflow: hidden;
}

.shop-results .product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.shop-results .product-info h3,
.shop-results .product-category {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-results .product-meta {
  align-items: flex-end;
  flex-wrap: wrap;
}

.shop-results .product-colors {
  min-width: 0;
  flex: 1 1 150px;
  flex-wrap: wrap;
}

.shop-results .add-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Four cards only when there is genuinely enough room. */
@media (min-width: 1800px) {
  .shop-section { max-width: 1900px; }
  .shop-results .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

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

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

@media (max-width: 520px) {
  .shop-results .product-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DUVA GIT UPDATE — compact drawers, quick view and mobile story
   ========================================================= */
#cartDrawer,
#favoritesDrawer {
  width: min(92vw, 460px) !important;
  max-width: 460px !important;
  padding: 28px !important;
}

#cartDrawer .drawer-header,
#favoritesDrawer .drawer-header {
  min-height: auto !important;
  padding-bottom: 20px !important;
}

#cartDrawer .drawer-header h2,
#favoritesDrawer .drawer-header h2 {
  font-size: clamp(28px, 3vw, 38px) !important;
}

#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  padding: 22px 0 !important;
}

#cartDrawer .mini-item,
#favoritesDrawer .mini-item {
  grid-template-columns: 96px minmax(0, 1fr) 24px !important;
  gap: 16px !important;
  padding-bottom: 22px !important;
  margin-bottom: 22px !important;
}

#cartDrawer .mini-item-image,
#favoritesDrawer .mini-item-image {
  width: 96px !important;
}

#cartDrawer .mini-item-details h3,
#favoritesDrawer .mini-item-details h3 {
  margin-bottom: 8px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

#cartDrawer .mini-item-price,
#favoritesDrawer .mini-item-price {
  margin: 10px 0 !important;
  font-size: 15px !important;
}

#favoritesDrawer .favorite-add-button {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px !important;
  font-size: 9px !important;
  letter-spacing: .12em;
}

.quick-view-card {
  width: min(900px, 92vw) !important;
  max-width: 900px !important;
  max-height: 82vh !important;
  overflow: hidden !important;
}
.quick-view-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr) !important;
  max-height: 82vh;
}
.quick-view-gallery { padding: 18px !important; overflow: auto; }
.quick-view-details {
  padding: 34px !important;
  max-height: 82vh;
  overflow-y: auto;
}
.quick-view-details h2 { font-size: clamp(28px, 3vw, 40px) !important; }
.quick-view-thumbnails { grid-template-columns: repeat(5, minmax(44px, 1fr)) !important; }

@media (max-width: 620px) {
  .about-section {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }
  .story-image {
    position: static !important;
    top: auto !important;
    aspect-ratio: 4 / 5 !important;
    order: -1;
  }
  .story-copy { font-size: 13px !important; line-height: 1.65 !important; }
  #cartDrawer,
  #favoritesDrawer {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 22px !important;
  }
  .quick-view-card { width: 100vw !important; max-height: 94vh !important; }
  .quick-view-layout { grid-template-columns: 1fr !important; max-height: 94vh; overflow-y: auto; }
  .quick-view-gallery, .quick-view-details { overflow: visible; max-height: none; }
}

/* =========================================================
   DUVA UPDATE ROUND 2 — storefront polish and accessibility
   ========================================================= */

/* Clear keyboard focus without changing the black-and-white look. */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Prevent the page behind a drawer or modal from moving. */
body.panel-open { overflow: hidden; }

/* Make the sticky header feel lighter and more premium. */
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

/* Give product cards stronger spacing and a cleaner hover state. */
.product-card {
  min-width: 0;
  transition: transform .25s ease;
}
.product-image {
  overflow: hidden;
  background: #f2f2f0;
}
.product-primary-image,
.product-hover-image {
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), opacity .3s ease;
}
@media (hover: hover) {
  .product-card:hover .product-primary-image,
  .product-card:hover .product-hover-image {
    transform: scale(1.025);
  }
}
.product-info { padding-top: 15px; }
.product-info h3 { line-height: 1.25; }
.product-title-link { text-underline-offset: 4px; }
.product-title-link:hover { text-decoration: underline; }
.product-meta { gap: 14px; }
.add-button {
  min-height: 40px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

/* Keep the catalog readable at every browser zoom and screen width. */
.shop-results .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 30px);
  row-gap: clamp(34px, 5vw, 72px);
}
@media (max-width: 1180px) {
  .shop-results .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .shop-results .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-info { padding-top: 11px; }
  .product-category { font-size: 8px; }
  .product-info h3 { font-size: 13px; }
  .product-meta { align-items: flex-start; flex-direction: column; gap: 9px; }
  .add-button { width: 100%; }
}
@media (max-width: 390px) {
  .shop-results .product-grid { column-gap: 10px; }
  .product-colors .color-swatch:nth-of-type(n+4) { display: none; }
}

/* Make carousel controls appear intentional rather than always busy. */
.carousel-arrow,
.quick-view-button,
.product-dots {
  transition: opacity .2s ease, transform .2s ease;
}
@media (hover: hover) {
  .product-card .carousel-arrow,
  .product-card .quick-view-button { opacity: 0; }
  .product-card:hover .carousel-arrow,
  .product-card:hover .quick-view-button,
  .product-card:focus-within .carousel-arrow,
  .product-card:focus-within .quick-view-button { opacity: 1; }
}

/* Better drawer separation, scrolling, and mobile sizing. */
#cartDrawer,
#favoritesDrawer {
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 55px rgba(0, 0, 0, .14);
}
#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
#cartDrawer .drawer-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mini-item-image {
  overflow: hidden;
  background: var(--off-white);
}
.mini-item-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.remove-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .2s ease;
}
.remove-button:hover { background: var(--soft-gray); }

/* Stronger and more consistent confirmation message. */
.toast {
  z-index: 9999 !important;
  width: min(430px, calc(100vw - 32px));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
  border: 1px solid rgba(255,255,255,.18);
}
.toast-product-image {
  width: 56px;
  height: 70px;
  object-fit: cover;
  background: #eee;
}
.toast-message { line-height: 1.35; }
@media (max-width: 620px) {
  .toast {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    width: auto;
  }
}

/* Quick view: cleaner hierarchy and easier option selection. */
.quick-view-main-image img { object-fit: contain; }
.quick-color,
.quick-size {
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.quick-color:hover,
.quick-size:hover { transform: translateY(-1px); }
.quick-size.active {
  background: var(--black);
  color: var(--white);
}
.quick-view-error {
  min-height: 20px;
  margin: 8px 0;
  color: #9f1515;
  font-size: 12px;
  font-weight: 600;
}

/* Improve touch targets on mobile. */
@media (max-width: 760px) {
  .icon-button,
  .menu-button,
  .drawer-close { min-width: 44px; min-height: 44px; }
  .quick-size { min-width: 46px; min-height: 44px; }
  .quick-color { min-width: 40px; min-height: 40px; }
  .filter-trigger { min-height: 44px; }
}

/* Respect visitors who disable motion. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   DUVA UPDATE ROUND 3 — shopping clarity and premium details
   ========================================================= */

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

/* Active filters are visible and removable without reopening the filter panel. */
.active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 26px;
}
.active-filter-chips[hidden] { display: none; }
.filter-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.filter-chip:hover { background: var(--black); color: var(--white); }

/* Cart progress gives customers a useful next step without being loud. */
.shipping-progress {
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.shipping-progress p {
  margin: 0 0 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.45;
}
.shipping-progress-track {
  height: 3px;
  overflow: hidden;
  background: #dededb;
}
.shipping-progress-track span {
  display: block;
  height: 100%;
  background: var(--black);
  transition: width .35s ease;
}

/* Dismissible announcement retains the minimal black-and-white direction. */
.announcement {
  position: relative;
  transition: opacity .22s ease, transform .22s ease;
}
.announcement-hiding { opacity: 0; transform: translateY(-100%); }
.announcement-close {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
}

/* Floating utility control appears only after meaningful scrolling. */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease, color .2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--black); color: var(--white); }

/* Images fade in cleanly as their files arrive. */
.product-image img,
.quick-view-gallery img,
.mini-item-image img { transition: opacity .25s ease, transform .55s cubic-bezier(.2, .7, .2, 1); }
.image-loading { opacity: 0; }

/* Slightly stronger catalog hierarchy and more useful empty state. */
.shop-results-bar { gap: 20px; }
.empty-products {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  text-align: center;
}
.empty-products p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}

@media (max-width: 760px) {
  .active-filter-chips { margin-bottom: 20px; }
  .filter-chip { min-height: 38px; }
  .back-to-top { right: 16px; bottom: 76px; }
  .announcement { padding-right: 46px !important; }
  .shop-results-bar { align-items: flex-start; }
}

/* =========================================================
   DUVA QUICK VIEW — TOP ALIGNMENT FIX
   Keeps product information aligned with the top of the image.
   ========================================================= */
.quick-view-layout {
  align-items: start !important;
}

.quick-view-details {
  align-self: start !important;
  padding-top: 34px !important;
}

@media (max-width: 620px) {
  .quick-view-details {
    padding-top: 28px !important;
  }
}

body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; }
img { display: block; width: 100%; }

/* Announcement */
.announcement {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-button {
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .2s ease, color .2s ease, top .2s ease;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.logo-mark {
  grid-column: 2;
  font-family: "Instrument Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .18em;
}
.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button, .menu-button, .drawer-close {
  background: transparent;
  cursor: pointer;
}
.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.ui-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.count-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
}
.site-header.scrolled .count-badge {
  background: var(--black);
  color: var(--white);
}

/* Search expands inside header */
.header-search { position: relative; display: flex; align-items: center; }
.header-search input {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: none;
  background: transparent;
  color: inherit;
  transition: width .25s ease, opacity .2s ease;
}
.header-search.open input,
.header-search:focus-within input {
  width: 220px;
  opacity: 1;
  padding-left: 8px;
}
.header-search-results {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(360px, 82vw);
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}
.header-search.open .header-search-results:not(:empty) { display: grid; }
.header-search-result {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

/* Mobile menu */
.menu-button { display: none; width: 40px; height: 40px; padding: 9px; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 5px 0; background: currentColor; }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  width: min(88vw, 380px);
  padding: 90px 34px 34px;
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--line);
  transform: translateX(-105%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.mobile-menu .drawer-close { position: absolute; top: 22px; right: 24px; font-size: 30px; }

/* Shared typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--mid-gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Video-first hero */
.hero {
  position: relative;
  height: calc(100svh - 34px);
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  /* Temporary background shown before the campaign video is added. */
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255,255,255,.28) 0%,
      rgba(120,120,120,.18) 22%,
      rgba(35,35,35,.92) 60%,
      #000 100%
    );
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.35) 38%,
      rgba(0,0,0,0) 75%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--gutter) clamp(55px, 9vh, 110px);
  color: var(--white);
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.07em;
}
.hero h1 span {
  display: block;
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.72rem, 1vw, .95rem);
  line-height: 1;
  letter-spacing: .25em;
}
.hero-copy { margin: 28px 0; color: rgba(255,255,255,.78); font-size: 15px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button-primary { background: var(--black); color: var(--white); }
.hero .button-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.hero .button-outline { background: transparent; border-color: var(--white); color: var(--white); }
.button:hover { background: var(--black); color: var(--white); }
.hero .button-primary:hover { background: transparent; color: var(--white); }
.button-full { width: 100%; }

/* Shop */
.shop-section,
.founders-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.section-heading,
.founders-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2,
.about-section h2,
.founders-heading h2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 16px;
}
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft-gray);
}
.product-image::before {
  content: "PRODUCT IMAGE";
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
}
.favorite-toggle.active { background: var(--black); color: var(--white); }
.product-info { padding-top: 14px; }
.product-category { margin: 0 0 5px; color: var(--mid-gray); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-size: 13px; font-weight: 600; }
.product-meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 12px; }
.add-button {
  min-height: 36px;
  padding: 0 13px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Benefits */
.benefit-bar {
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--black);
  color: var(--white);
}
.benefit-bar article { display: flex; gap: 14px; align-items: flex-start; }
.benefit-bar article > span { font-size: 18px; }
.benefit-bar h3 { margin: 0 0 5px; font-size: 10px; letter-spacing: .12em; }
.benefit-bar p { margin: 0; color: #bdbdbd; font-size: 11px; }

/* Story */
.about-section {
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.story-copy { max-width: 620px; color: var(--mid-gray); font-size: 14px; }
.story-copy p { margin: 0 0 16px; }
.story-copy strong { color: var(--black); }
.story-image { margin: 0; min-height: 620px; overflow: hidden; background: var(--soft-gray); }
.story-image img { height: 100%; min-height: 620px; object-fit: cover; filter: none; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.founder-card { border: 1px solid var(--line); background: var(--white); }
.founder-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft-gray); }
.founder-image img { height: 100%; object-fit: cover; filter: none; }
.founder-copy { padding: 32px; }
.founder-role, .founder-credentials { color: var(--mid-gray); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy h3 { margin: 6px 0 16px; font-family: "Instrument Sans", sans-serif; font-size: 34px; }
.founder-copy > p:not(.founder-role):not(.founder-credentials) { color: var(--mid-gray); font-size: 13px; }

/* Footer */
.site-footer {
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.2fr;
  gap: 42px;
  background: var(--black);
  color: var(--white);
}
.site-footer .logo { font-family: "Instrument Sans", sans-serif; font-size: 30px; font-weight: 700; letter-spacing: .16em; }
.site-footer h3 { margin: 0 0 16px; font-size: 10px; letter-spacing: .13em; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #bdbdbd; font-size: 12px; }
.newsletter-form > div { display: flex; border-bottom: 1px solid var(--white); }
.newsletter-form input { width: 100%; border: 0; padding: 13px 0; background: transparent; color: var(--white); outline: none; }
.newsletter-form button { background: transparent; color: var(--white); cursor: pointer; font-size: 20px; }

/* Drawers, modal, chat */
.drawer, .chat-panel, .modal-card { background: var(--white); color: var(--black); }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(92vw, 460px);
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s ease;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-family: "Instrument Sans", sans-serif; }
.drawer-close { font-size: 28px; }
.drawer-content { flex: 1; overflow: auto; padding: 20px 0; }
.drawer-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.subtotal { margin-bottom: 18px; display: flex; justify-content: space-between; font-size: 12px; }
.mini-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mini-item-image {
  display: block;
  width: 92px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft-gray);
}
.mini-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mini-item-details { min-width: 0; }
.mini-item-details h3 { margin: 0 0 6px; font-size: 13px; }
.mini-item-option { margin: 3px 0; font-size: 10px; color: #6b6b6b; text-transform: uppercase; letter-spacing: .06em; }
.mini-item-price { margin: 10px 0 12px; font-size: 12px; }
.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  border: 1px solid var(--line);
}
.quantity-control button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.quantity-control button:hover { background: var(--soft-gray); }
.quantity-control span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.remove-button { align-self: start; background: transparent; cursor: pointer; }
.empty-state { padding: 50px 0; color: var(--mid-gray); text-align: center; }
.modal { position: fixed; inset: 0; z-index: 110; padding: 20px; display: none; place-items: center; background: rgba(0,0,0,.45); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(100%, 520px); padding: 44px; border: 1px solid var(--line); }
.modal-card .drawer-close { position: absolute; top: 15px; right: 17px; }
.modal-card input { width: 100%; margin: 15px 0; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.page-overlay { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(0,0,0,.35); cursor: pointer; }
.page-overlay.open { display: block; }
.chat-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border: 1px solid var(--black); border-radius: 50%; background: var(--white); color: var(--black); cursor: pointer; font-size: 10px; font-weight: 700; }
.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 100; width: min(90vw, 360px); padding: 20px; display: none; border: 1px solid var(--line); }
.chat-panel.open { display: block; }
.chat-header { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.chat-header small { display: block; color: var(--mid-gray); }
.chat-messages { min-height: 130px; padding: 15px 0; }
.chat-bubble { padding: 12px; background: var(--soft-gray); font-size: 12px; }
.chat-form { display: flex; border: 1px solid var(--line); }
.chat-form input { width: 100%; border: 0; padding: 12px; outline: none; }
.chat-form button { width: 45px; background: var(--black); color: var(--white); cursor: pointer; }
/* Premium added-to-bag confirmation used by quick add and product pages. */
.toast {
  position: fixed;
  right: 24px;
  top: 92px;
  z-index: 220;
  width: min(460px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 42px 66px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(17,17,17,.98);
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px,-8px,0);
  transition: opacity 200ms ease, transform 240ms ease, visibility 200ms ease;
  pointer-events: none;
}
.toast.show { opacity: 1; visibility: visible; transform: translate3d(0,0,0); pointer-events: auto; }
.toast-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.toast-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.toast-product-image { width: 66px; height: 78px; object-fit: cover; display: block; border-radius: 5px; background: #f1f1f1; }
.toast-copy { min-width: 0; }
.toast-title { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 800; line-height: 1.2; letter-spacing: .17em; }
.toast-message { display: block; font-size: 13px; font-weight: 500; line-height: 1.4; color: rgba(255,255,255,.82); }
.toast-actions { display: flex; gap: 18px; margin-top: 10px; }
.toast-link { border: 0; border-bottom: 1px solid rgba(255,255,255,.72); padding: 0 0 2px; background: transparent; color: #fff; font: inherit; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; cursor: pointer; }
.toast-checkout { color: #fff; }
.toast-close { align-self: start; width: 28px; height: 28px; border: 0; background: transparent; color: rgba(255,255,255,.7); font-size: 22px; line-height: 1; cursor: pointer; }
.toast-close:hover { color: #fff; }
@media (max-width: 600px) {
  .toast { top: auto; right: 12px; bottom: 12px; width: calc(100vw - 24px); grid-template-columns: 38px 58px minmax(0,1fr) 26px; gap: 10px; padding: 12px; }
  .toast-icon { width: 38px; height: 38px; }
  .toast-product-image { width: 58px; height: 70px; }
  .toast-actions { gap: 13px; }
}

/* Responsive */
@media (max-width: 980px) {
  .site-header { height: 68px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-search input { position: absolute; top: 50px; right: 0; background: var(--white); color: var(--black); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 460px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .announcement { padding-inline: 10px; font-size: 8px; }
  .announcement .text-button { font-size: 8px; }
  .site-header { padding: 0 12px; }
  .logo-mark { font-size: 21px; }
  .header-actions { gap: 0; }
  .header-search { display: none; }
  .hero { height: calc(100svh - 34px); min-height: 620px; }
  .hero-content { padding: 0 22px 55px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .shop-section, .about-section, .founders-section { padding: 72px 20px; }
  .product-grid { gap: 24px 10px; }
  .benefit-bar { grid-template-columns: 1fr; padding: 30px 20px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-copy { padding: 24px; }
  .site-footer { grid-template-columns: 1fr; padding: 55px 20px; }
}


/* =========================================================
   PHOTO + TYPOGRAPHY CORRECTION
   Keeps the interface monochrome while preserving full-color photos.
   ========================================================= */

:root {
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Instrument Sans", Arial, sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}

.logo,
.logo-mark,
.hero h1,
.section-heading h2,
.about-section h2,
.founders-heading h2,
.founder-copy h3,
.drawer-header h2,
.modal-card h2,
.legal-page h1,
.legal-page h2,
.utility-page h1,
.utility-page h2,
.panel h1,
.panel h2 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.03em;
}

/* Keep every actual photograph in full color. */
.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-image,
.product-image img,
.product-card img,
.hero-video,
.hero video,
img {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* Slightly softer, more premium typography proportions. */
.hero h1 {
  font-weight: 600 !important;
  letter-spacing: -0.055em !important;
}

.section-heading h2,
.about-section h2,
.founders-heading h2 {
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.desktop-nav a,
.button,
.eyebrow,
.founder-role,
.founder-credentials {
  font-family: var(--font-body) !important;
}


/* =========================================================
   HERO VIDEO LAYERING
   The gradient remains visible until a real MP4 loads.
   ========================================================= */

.hero-video {
  z-index: 0;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-overlay { z-index: 1; }

.hero-content { z-index: 2; }

.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-card img,
.product-image,
.hero-video {
  filter: none !important;
  -webkit-filter: none !important;
}
/* =========================================================
   2026 STOREFRONT UPDATE
   Gradient hero, side-by-side story and collection filtering.
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 56% 22%, rgba(255,255,255,.68) 0%, rgba(184,184,184,.54) 19%, rgba(66,66,66,.72) 46%, rgba(12,12,12,.98) 82%),
    linear-gradient(115deg, #090909 0%, #777 52%, #111 100%);
}

.shop-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.filter-trigger {
  min-width: 170px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.shop-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 42px; align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.filter-panel-heading { padding-bottom: 17px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--black); }
.filter-panel-heading p, .filter-panel-heading button { margin: 0; background: none; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.filter-panel-heading button { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.filter-group { margin: 0; padding: 24px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-group legend { width: 100%; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.filter-group > label { margin: 9px 0; display: flex; gap: 10px; align-items: center; color: #444; cursor: pointer; font-size: 12px; }
.filter-group input { accent-color: #111; }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.size-options label { cursor: pointer; }
.size-options input { position: absolute; opacity: 0; pointer-events: none; }
.size-options span { min-height: 34px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 10px; }
.size-options input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.shop-results-bar { min-height: 45px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.shop-results-bar p, .shop-results-bar label { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.shop-results-bar label { display: flex; align-items: center; gap: 9px; }
.shop-results-bar select { border: 0; background: transparent; font-size: 10px; outline: none; }
.empty-products { grid-column: 1 / -1; min-height: 340px; display: grid; place-content: center; text-align: center; }
.empty-products p { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button { padding: 12px; background: transparent; cursor: pointer; text-decoration: underline; }

.about-section { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); align-items: stretch; }
.story-content { align-self: center; }
.story-image { min-height: 0; aspect-ratio: 4 / 5; align-self: center; }
.story-image img { min-height: 0; height: 100%; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .shop-filters { position: static; display: none; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px; border: 1px solid var(--line); }
  .shop-filters.open { display: grid; }
  .filter-panel-heading { grid-column: 1 / -1; }
  .filter-group { padding: 0; border-bottom: 0; }
  .about-section { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 34px; }
}

@media (max-width: 620px) {
  .shop-heading { align-items: flex-start; flex-direction: column; }
  .filter-trigger { width: 100%; }
  .shop-filters.open { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: minmax(0, 1.15fr) minmax(135px, .85fr); gap: 18px; align-items: start; }
  .about-section h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .story-copy { font-size: 11px; line-height: 1.45; }
  .story-copy p { margin-bottom: 11px; }
  .story-image { position: sticky; top: 82px; aspect-ratio: 3 / 5; }
}

/* =========================================================
   COMPACT PRODUCT GRID
   Keeps product photography smaller so more of the collection is
   visible at once. Adjust the column counts below to resize the cards.
   ========================================================= */
.shop-results .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 14px;
}

.shop-results .product-image {
  aspect-ratio: 4 / 5;
}

.shop-results .product-info {
  padding-top: 10px;
}

.shop-results .product-meta {
  margin-top: 8px;
}

.shop-results .favorite-toggle {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.shop-results .add-button {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 8px;
}

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

@media (max-width: 980px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
  }
}

@media (max-width: 620px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .shop-results .product-info h3 {
    font-size: 11px;
  }

  .shop-results .product-price {
    font-size: 10px;
  }

  .shop-results .add-button {
    min-height: 30px;
    padding-inline: 8px;
  }
}

/* =========================================================
   PRODUCT IMAGE CAROUSELS
   Front → back → details → full product board.
   ========================================================= */
.product-carousel {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  touch-action: pan-y;
}

.product-carousel > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.product-card:hover .product-carousel > img {
  transform: scale(1.015);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
}

.carousel-prev { left: 9px; }
.carousel-next { right: 9px; }

.product-carousel:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
}

.carousel-arrow:hover { background: #fff; }

.product-dots {
  position: absolute;
  left: 50%;
  bottom: 11px;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
}

.product-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
}

.product-dot.active {
  width: 18px;
  border-radius: 999px;
  background: #111;
}

@media (hover: none), (max-width: 760px) {
  .carousel-arrow {
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
}


/* Product galleries, colour swatches and product detail pages */
.product-image-link { display:block; width:100%; height:100%; color:inherit; }
.product-image-link img { width:100%; height:100%; object-fit:cover; }
.product-title-link { color:inherit; text-decoration:none; }
.product-title-link:hover { text-decoration:underline; text-underline-offset:4px; }
.product-colors { display:flex; align-items:center; gap:7px; margin:10px 0 2px; min-height:18px; }
.color-swatch,.filter-swatch { display:inline-block; width:16px; height:16px; border-radius:50%; border:1px solid rgba(0,0,0,.28); box-shadow:inset 0 0 0 2px rgba(255,255,255,.35); flex:none; }
.color-count { margin-left:3px; font-size:10px; color:#666; text-transform:uppercase; letter-spacing:.08em; }
.color-black { background:#171717; }.color-cream { background:#e9e1d2; }.color-brown { background:#5b4638; }.color-olive { background:#4d5140; }.color-plum { background:#563747; }
.color-filter-group label { gap:8px; }
.filter-swatch { width:14px; height:14px; }
.product-page-main { padding:130px 5vw 80px; background:#fff; min-height:100vh; }
.product-detail { max-width:1440px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr); gap:56px; align-items:start; }
.product-gallery { display:grid; grid-template-columns:90px minmax(0,1fr); gap:16px; position:sticky; top:110px; }
.product-thumbnails { display:flex; flex-direction:column; gap:10px; }
.product-thumbnail { border:1px solid transparent; background:#fff; padding:0; cursor:pointer; aspect-ratio:1/1.2; overflow:hidden; }
.product-thumbnail.active { border-color:#111; }
.product-thumbnail img { width:100%; height:100%; object-fit:cover; }
.product-main-image { background:#fff; aspect-ratio:4/5; overflow:hidden; position:relative; }
.product-main-image img { width:100%; height:100%; object-fit:cover; transition:opacity .2s ease; }
.product-details-panel { padding:20px 0; }
.product-breadcrumb { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#666; margin-bottom:28px; }
.product-details-panel h1 { font-size:clamp(34px,4vw,58px); line-height:.98; margin:0 0 18px; letter-spacing:-.04em; }
.product-detail-price { font-size:19px; margin:0 0 28px; }
.product-description { color:#444; line-height:1.75; margin-bottom:30px; }
.option-label { display:flex; justify-content:space-between; font-size:11px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; margin:24px 0 12px; }
.detail-color-options,.detail-size-options { display:flex; flex-wrap:wrap; gap:10px; }
.detail-color-button { width:34px; height:34px; border-radius:50%; border:1px solid #bbb; padding:4px; background:#fff; cursor:pointer; }
.detail-color-button span { width:100%; height:100%; border-radius:50%; display:block; }
.detail-color-button.active { outline:2px solid #111; outline-offset:2px; }
.detail-size-button { min-width:48px; height:44px; border:1px solid #bbb; background:transparent; cursor:pointer; }
.detail-size-button.active { background:#111; color:#fff; border-color:#111; }
.product-add-button { width:100%; border:0; background:#111; color:#fff; padding:18px; margin-top:28px; font-weight:700; letter-spacing:.12em; cursor:pointer; }
.product-accordions { margin-top:28px; border-top:1px solid #ccc; }
.product-accordions details { border-bottom:1px solid #ccc; padding:17px 0; }
.product-accordions summary { cursor:pointer; font-size:12px; font-weight:700; letter-spacing:.1em; }
.product-accordions p { color:#555; line-height:1.65; font-size:13px; }
.recommendations { max-width:1440px; margin:90px auto 0; }
.recommendations h2 { font-size:clamp(28px,4vw,48px); margin-bottom:28px; }
.recommendation-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.recommendation-card { color:#111; text-decoration:none; }
.recommendation-card img { width:100%; aspect-ratio:4/5; object-fit:cover; background:#fff; }
.recommendation-card h3 { font-size:14px; margin:12px 0 5px; }
.recommendation-card p { margin:0; font-size:13px; color:#555; }
@media(max-width:900px){.product-detail{grid-template-columns:1fr;gap:25px}.product-gallery{position:static;grid-template-columns:1fr}.product-thumbnails{order:2;flex-direction:row;overflow:auto}.product-thumbnail{min-width:74px}.recommendation-grid{grid-template-columns:repeat(2,1fr)}.product-page-main{padding:100px 18px 60px}}

/* Production storefront additions */
.size-guide-link{border:0;background:transparent;padding:0;text-decoration:underline;font:inherit;font-size:10px;font-weight:700;letter-spacing:.1em;cursor:pointer}.size-guide-modal-card{max-width:680px}.size-guide-table-wrap{overflow:auto;margin:24px 0}.size-guide-table{width:100%;border-collapse:collapse}.size-guide-table th,.size-guide-table td{padding:13px 12px;border-bottom:1px solid var(--line);text-align:left;font-size:12px}.size-guide-note{font-size:12px;line-height:1.7;color:#555}
.payment-options{margin:18px 0 14px}.payment-options>span{display:block;font-size:9px;letter-spacing:.13em;font-weight:700;margin-bottom:9px}.payment-option-list{display:flex;flex-wrap:wrap;gap:6px}.payment-pill{border:1px solid #d4d4d4;border-radius:4px;padding:5px 7px;background:#fff;font-size:9px;font-weight:700}.track-order-link{display:block;text-align:center;margin-top:15px;color:inherit;font-size:10px;font-weight:700;letter-spacing:.09em;text-decoration:underline}.checkout-modal-card{max-width:620px;max-height:90vh;overflow:auto}.checkout-form{display:grid;gap:11px;margin-top:20px}.checkout-form input,.checkout-form select{width:100%;padding:14px;border:1px solid var(--line);background:#fff}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:11px}.checkout-status{min-height:18px;font-size:11px;line-height:1.5;color:#8a2525}.checkout-form button:disabled{opacity:.55;cursor:wait}
.tracking-page{min-height:100vh;background:#fff;padding:150px 20px 80px}.tracking-card{max-width:820px;margin:0 auto}.tracking-card h1{font-size:clamp(42px,7vw,88px);line-height:.92;margin:12px 0 20px}.tracking-form{display:grid;grid-template-columns:1fr 210px auto;gap:10px;margin:35px 0 20px}.tracking-form input,.tracking-form select{padding:15px;border:1px solid var(--line);background:#fff}.tracking-status{padding:12px 0;color:#8a2525}.tracking-summary{border:1px solid var(--line);padding:22px;margin-top:24px}.tracking-summary span{font-size:10px;letter-spacing:.12em}.tracking-summary strong{display:block;font-size:28px;margin:8px 0}.tracking-summary p{margin:4px 0;color:#555}.tracking-timeline{margin:28px 0}.tracking-timeline article{display:grid;grid-template-columns:18px 1fr;gap:12px;padding-bottom:22px}.tracking-timeline article>span{width:10px;height:10px;border-radius:50%;background:#111;margin-top:4px;position:relative}.tracking-timeline article>span:after{content:"";position:absolute;top:10px;left:4px;width:1px;height:42px;background:#ccc}.tracking-timeline article:last-child>span:after{display:none}.tracking-timeline p{margin:4px 0}.tracking-timeline small{color:#666}.tracking-carrier-link{display:inline-flex}
@media(max-width:700px){.form-row,.tracking-form{grid-template-columns:1fr}.tracking-page{padding-top:110px}.payment-option-list{gap:4px}}


@media (max-width: 480px) {
  .mini-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 12px;
  }
  .mini-item-image { width: 76px; }
}

/* Premium collection card interactions */
.product-image-link { position: relative; }
.product-image-link img { position:absolute; inset:0; transition:opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.product-hover-image { opacity:0; }
@media (hover:hover) {
  .product-card:hover .product-primary-image { opacity:0; transform:scale(1.015); }
  .product-card:hover .product-hover-image { opacity:1; transform:scale(1.015); }
}
.quick-view-button {
  position:absolute; z-index:4; left:12px; right:12px; bottom:44px;
  min-height:40px; border:0; background:rgba(17,17,17,.94); color:#fff;
  font-size:9px; font-weight:800; letter-spacing:.13em; cursor:pointer;
  opacity:0; transform:translateY(10px); transition:opacity .22s ease, transform .22s ease, background .2s ease;
}
.product-card:hover .quick-view-button,.quick-view-button:focus-visible { opacity:1; transform:translateY(0); }
.quick-view-button:hover { background:#000; color:#fff; }
.favorite-toggle { z-index:5; border:1px solid rgba(0,0,0,.1); transition:transform .2s ease, background .2s ease, color .2s ease; }
.favorite-toggle:hover { transform:scale(1.07); }
.favorite-toggle svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.7; }
.favorite-toggle.active svg { fill:currentColor; }
.add-button { position:relative; overflow:hidden; transition:transform .18s ease, background .2s ease; }
.add-button::after { content:""; position:absolute; inset:0; background:rgba(255,255,255,.16); transform:translateX(-110%) skewX(-18deg); transition:transform .45s ease; }
.add-button:hover { transform:translateY(-2px); background:#000; color:#fff; }
.add-button:hover::after { transform:translateX(110%) skewX(-18deg); }
.add-button:active { transform:translateY(0) scale(.97); }

/* Quick view modal */
.quick-view-modal { z-index:120; }
.quick-view-card { width:min(1040px,94vw); max-width:1040px; max-height:92vh; overflow:auto; padding:0; background:#fff; }
.quick-view-close { z-index:4; top:14px; right:14px; background:rgba(255,255,255,.9); border-radius:50%; }
.quick-view-layout { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(350px,.95fr); }
.quick-view-gallery { padding:24px; background:#f5f5f5; }
.quick-view-main-image { aspect-ratio:4/5; overflow:hidden; background:#fff; }
.quick-view-main-image img { width:100%; height:100%; display:block; object-fit:cover; }
.quick-view-thumbnails { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px; }
.quick-view-thumb { border:1px solid transparent; padding:0; background:#fff; cursor:pointer; aspect-ratio:4/5; overflow:hidden; }
.quick-view-thumb.active { border-color:#111; }
.quick-view-thumb img { width:100%; height:100%; object-fit:cover; }
.quick-view-details { padding:clamp(34px,5vw,68px); align-self:center; }
.quick-view-details h2 { margin:0 0 12px; font-family:"Instrument Sans",sans-serif; font-size:clamp(30px,3.5vw,48px); line-height:1; letter-spacing:-.04em; }
.quick-view-price { font-size:16px; margin:0 0 22px; }
.quick-view-description { color:#555; line-height:1.65; font-size:13px; margin:0 0 26px; }
.quick-option-heading { display:flex; justify-content:space-between; gap:15px; margin:22px 0 11px; font-size:10px; font-weight:800; letter-spacing:.12em; }
.quick-option-heading a { color:inherit; text-underline-offset:3px; }
.quick-colors,.quick-sizes { display:flex; flex-wrap:wrap; gap:10px; }
.quick-color { width:32px; height:32px; border-radius:50%; padding:4px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-color span { display:block; width:100%; height:100%; border-radius:50%; }
.quick-color.active { outline:2px solid #111; outline-offset:2px; }
.quick-size { min-width:46px; height:42px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-size.active,.quick-size:hover { background:#111; color:#fff; border-color:#111; }
.quick-view-error { min-height:18px; margin:12px 0 0; font-size:11px; color:#8a2525; }
.quick-view-add { width:100%; margin-top:8px; }
.quick-view-full-link { display:block; margin-top:17px; color:inherit; text-align:center; font-size:10px; font-weight:800; letter-spacing:.1em; text-underline-offset:4px; }
@media (max-width:760px) {
  .quick-view-button { opacity:1; transform:none; left:8px; right:8px; bottom:42px; min-height:34px; }
  .quick-view-layout { grid-template-columns:1fr; }
  .quick-view-gallery { padding:12px; }
  .quick-view-details { padding:28px 20px 32px; }
  .quick-view-card { max-height:94vh; }
}

body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; }
img { display: block; width: 100%; }

/* Announcement */
.announcement {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-button {
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .2s ease, color .2s ease, top .2s ease;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.logo-mark {
  grid-column: 2;
  font-family: "Instrument Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .18em;
}
.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button, .menu-button, .drawer-close {
  background: transparent;
  cursor: pointer;
}
.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.ui-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.count-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
}
.site-header.scrolled .count-badge {
  background: var(--black);
  color: var(--white);
}

/* Search expands inside header */
.header-search { position: relative; display: flex; align-items: center; }
.header-search input {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: none;
  background: transparent;
  color: inherit;
  transition: width .25s ease, opacity .2s ease;
}
.header-search.open input,
.header-search:focus-within input {
  width: 220px;
  opacity: 1;
  padding-left: 8px;
}
.header-search-results {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(360px, 82vw);
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}
.header-search.open .header-search-results:not(:empty) { display: grid; }
.header-search-result {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

/* Mobile menu */
.menu-button { display: none; width: 40px; height: 40px; padding: 9px; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 5px 0; background: currentColor; }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  width: min(88vw, 380px);
  padding: 90px 34px 34px;
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--line);
  transform: translateX(-105%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.mobile-menu .drawer-close { position: absolute; top: 22px; right: 24px; font-size: 30px; }

/* Shared typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--mid-gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Video-first hero */
.hero {
  position: relative;
  height: calc(100svh - 34px);
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  /* Temporary background shown before the campaign video is added. */
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255,255,255,.28) 0%,
      rgba(120,120,120,.18) 22%,
      rgba(35,35,35,.92) 60%,
      #000 100%
    );
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.35) 38%,
      rgba(0,0,0,0) 75%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--gutter) clamp(55px, 9vh, 110px);
  color: var(--white);
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.07em;
}
.hero h1 span {
  display: block;
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.72rem, 1vw, .95rem);
  line-height: 1;
  letter-spacing: .25em;
}
.hero-copy { margin: 28px 0; color: rgba(255,255,255,.78); font-size: 15px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button-primary { background: var(--black); color: var(--white); }
.hero .button-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.hero .button-outline { background: transparent; border-color: var(--white); color: var(--white); }
.button:hover { background: var(--black); color: var(--white); }
.hero .button-primary:hover { background: transparent; color: var(--white); }
.button-full { width: 100%; }

/* Shop */
.shop-section,
.founders-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.section-heading,
.founders-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2,
.about-section h2,
.founders-heading h2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 16px;
}
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft-gray);
}
.product-image::before {
  content: "PRODUCT IMAGE";
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
}
.favorite-toggle.active { background: var(--black); color: var(--white); }
.product-info { padding-top: 14px; }
.product-category { margin: 0 0 5px; color: var(--mid-gray); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-size: 13px; font-weight: 600; }
.product-meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 12px; }
.add-button {
  min-height: 36px;
  padding: 0 13px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Benefits */
.benefit-bar {
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--black);
  color: var(--white);
}
.benefit-bar article { display: flex; gap: 14px; align-items: flex-start; }
.benefit-bar article > span { font-size: 18px; }
.benefit-bar h3 { margin: 0 0 5px; font-size: 10px; letter-spacing: .12em; }
.benefit-bar p { margin: 0; color: #bdbdbd; font-size: 11px; }

/* Story */
.about-section {
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.story-copy { max-width: 620px; color: var(--mid-gray); font-size: 14px; }
.story-copy p { margin: 0 0 16px; }
.story-copy strong { color: var(--black); }
.story-image { margin: 0; min-height: 620px; overflow: hidden; background: var(--soft-gray); }
.story-image img { height: 100%; min-height: 620px; object-fit: cover; filter: none; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.founder-card { border: 1px solid var(--line); background: var(--white); }
.founder-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft-gray); }
.founder-image img { height: 100%; object-fit: cover; filter: none; }
.founder-copy { padding: 32px; }
.founder-role, .founder-credentials { color: var(--mid-gray); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy h3 { margin: 6px 0 16px; font-family: "Instrument Sans", sans-serif; font-size: 34px; }
.founder-copy > p:not(.founder-role):not(.founder-credentials) { color: var(--mid-gray); font-size: 13px; }

/* Footer */
.site-footer {
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.2fr;
  gap: 42px;
  background: var(--black);
  color: var(--white);
}
.site-footer .logo { font-family: "Instrument Sans", sans-serif; font-size: 30px; font-weight: 700; letter-spacing: .16em; }
.site-footer h3 { margin: 0 0 16px; font-size: 10px; letter-spacing: .13em; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #bdbdbd; font-size: 12px; }
.newsletter-form > div { display: flex; border-bottom: 1px solid var(--white); }
.newsletter-form input { width: 100%; border: 0; padding: 13px 0; background: transparent; color: var(--white); outline: none; }
.newsletter-form button { background: transparent; color: var(--white); cursor: pointer; font-size: 20px; }

/* Drawers, modal, chat */
.drawer, .chat-panel, .modal-card { background: var(--white); color: var(--black); }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(92vw, 460px);
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s ease;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-family: "Instrument Sans", sans-serif; }
.drawer-close { font-size: 28px; }
.drawer-content { flex: 1; overflow: auto; padding: 20px 0; }
.drawer-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.subtotal { margin-bottom: 18px; display: flex; justify-content: space-between; font-size: 12px; }
.mini-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mini-item-image {
  display: block;
  width: 92px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft-gray);
}
.mini-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mini-item-details { min-width: 0; }
.mini-item-details h3 { margin: 0 0 6px; font-size: 13px; }
.mini-item-option { margin: 3px 0; font-size: 10px; color: #6b6b6b; text-transform: uppercase; letter-spacing: .06em; }
.mini-item-price { margin: 10px 0 12px; font-size: 12px; }
.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  border: 1px solid var(--line);
}
.quantity-control button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.quantity-control button:hover { background: var(--soft-gray); }
.quantity-control span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.remove-button { align-self: start; background: transparent; cursor: pointer; }
.empty-state { padding: 50px 0; color: var(--mid-gray); text-align: center; }
.modal { position: fixed; inset: 0; z-index: 110; padding: 20px; display: none; place-items: center; background: rgba(0,0,0,.45); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(100%, 520px); padding: 44px; border: 1px solid var(--line); }
.modal-card .drawer-close { position: absolute; top: 15px; right: 17px; }
.modal-card input { width: 100%; margin: 15px 0; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.page-overlay { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(0,0,0,.35); cursor: pointer; }
.page-overlay.open { display: block; }
.chat-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border: 1px solid var(--black); border-radius: 50%; background: var(--white); color: var(--black); cursor: pointer; font-size: 10px; font-weight: 700; }
.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 100; width: min(90vw, 360px); padding: 20px; display: none; border: 1px solid var(--line); }
.chat-panel.open { display: block; }
.chat-header { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.chat-header small { display: block; color: var(--mid-gray); }
.chat-messages { min-height: 130px; padding: 15px 0; }
.chat-bubble { padding: 12px; background: var(--soft-gray); font-size: 12px; }
.chat-form { display: flex; border: 1px solid var(--line); }
.chat-form input { width: 100%; border: 0; padding: 12px; outline: none; }
.chat-form button { width: 45px; background: var(--black); color: var(--white); cursor: pointer; }
/* Premium added-to-bag confirmation used by quick add and product pages. */
.toast {
  position: fixed;
  right: 24px;
  top: 92px;
  z-index: 220;
  width: min(460px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 42px 66px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(17,17,17,.98);
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px,-8px,0);
  transition: opacity 200ms ease, transform 240ms ease, visibility 200ms ease;
  pointer-events: none;
}
.toast.show { opacity: 1; visibility: visible; transform: translate3d(0,0,0); pointer-events: auto; }
.toast-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.toast-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.toast-product-image { width: 66px; height: 78px; object-fit: cover; display: block; border-radius: 5px; background: #f1f1f1; }
.toast-copy { min-width: 0; }
.toast-title { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 800; line-height: 1.2; letter-spacing: .17em; }
.toast-message { display: block; font-size: 13px; font-weight: 500; line-height: 1.4; color: rgba(255,255,255,.82); }
.toast-actions { display: flex; gap: 18px; margin-top: 10px; }
.toast-link { border: 0; border-bottom: 1px solid rgba(255,255,255,.72); padding: 0 0 2px; background: transparent; color: #fff; font: inherit; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; cursor: pointer; }
.toast-checkout { color: #fff; }
.toast-close { align-self: start; width: 28px; height: 28px; border: 0; background: transparent; color: rgba(255,255,255,.7); font-size: 22px; line-height: 1; cursor: pointer; }
.toast-close:hover { color: #fff; }
@media (max-width: 600px) {
  .toast { top: auto; right: 12px; bottom: 12px; width: calc(100vw - 24px); grid-template-columns: 38px 58px minmax(0,1fr) 26px; gap: 10px; padding: 12px; }
  .toast-icon { width: 38px; height: 38px; }
  .toast-product-image { width: 58px; height: 70px; }
  .toast-actions { gap: 13px; }
}

/* Responsive */
@media (max-width: 980px) {
  .site-header { height: 68px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-search input { position: absolute; top: 50px; right: 0; background: var(--white); color: var(--black); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 460px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .announcement { padding-inline: 10px; font-size: 8px; }
  .announcement .text-button { font-size: 8px; }
  .site-header { padding: 0 12px; }
  .logo-mark { font-size: 21px; }
  .header-actions { gap: 0; }
  .header-search { display: none; }
  .hero { height: calc(100svh - 34px); min-height: 620px; }
  .hero-content { padding: 0 22px 55px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .shop-section, .about-section, .founders-section { padding: 72px 20px; }
  .product-grid { gap: 24px 10px; }
  .benefit-bar { grid-template-columns: 1fr; padding: 30px 20px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-copy { padding: 24px; }
  .site-footer { grid-template-columns: 1fr; padding: 55px 20px; }
}


/* =========================================================
   PHOTO + TYPOGRAPHY CORRECTION
   Keeps the interface monochrome while preserving full-color photos.
   ========================================================= */

:root {
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Instrument Sans", Arial, sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}

.logo,
.logo-mark,
.hero h1,
.section-heading h2,
.about-section h2,
.founders-heading h2,
.founder-copy h3,
.drawer-header h2,
.modal-card h2,
.legal-page h1,
.legal-page h2,
.utility-page h1,
.utility-page h2,
.panel h1,
.panel h2 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.03em;
}

/* Keep every actual photograph in full color. */
.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-image,
.product-image img,
.product-card img,
.hero-video,
.hero video,
img {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* Slightly softer, more premium typography proportions. */
.hero h1 {
  font-weight: 600 !important;
  letter-spacing: -0.055em !important;
}

.section-heading h2,
.about-section h2,
.founders-heading h2 {
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.desktop-nav a,
.button,
.eyebrow,
.founder-role,
.founder-credentials {
  font-family: var(--font-body) !important;
}


/* =========================================================
   HERO VIDEO LAYERING
   The gradient remains visible until a real MP4 loads.
   ========================================================= */

.hero-video {
  z-index: 0;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-overlay { z-index: 1; }

.hero-content { z-index: 2; }

.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-card img,
.product-image,
.hero-video {
  filter: none !important;
  -webkit-filter: none !important;
}
/* =========================================================
   2026 STOREFRONT UPDATE
   Gradient hero, side-by-side story and collection filtering.
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 56% 22%, rgba(255,255,255,.68) 0%, rgba(184,184,184,.54) 19%, rgba(66,66,66,.72) 46%, rgba(12,12,12,.98) 82%),
    linear-gradient(115deg, #090909 0%, #777 52%, #111 100%);
}

.shop-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.filter-trigger {
  min-width: 170px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.shop-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 42px; align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.filter-panel-heading { padding-bottom: 17px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--black); }
.filter-panel-heading p, .filter-panel-heading button { margin: 0; background: none; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.filter-panel-heading button { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.filter-group { margin: 0; padding: 24px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-group legend { width: 100%; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.filter-group > label { margin: 9px 0; display: flex; gap: 10px; align-items: center; color: #444; cursor: pointer; font-size: 12px; }
.filter-group input { accent-color: #111; }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.size-options label { cursor: pointer; }
.size-options input { position: absolute; opacity: 0; pointer-events: none; }
.size-options span { min-height: 34px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 10px; }
.size-options input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.shop-results-bar { min-height: 45px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.shop-results-bar p, .shop-results-bar label { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.shop-results-bar label { display: flex; align-items: center; gap: 9px; }
.shop-results-bar select { border: 0; background: transparent; font-size: 10px; outline: none; }
.empty-products { grid-column: 1 / -1; min-height: 340px; display: grid; place-content: center; text-align: center; }
.empty-products p { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button { padding: 12px; background: transparent; cursor: pointer; text-decoration: underline; }

.about-section { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); align-items: stretch; }
.story-content { align-self: center; }
.story-image { min-height: 0; aspect-ratio: 4 / 5; align-self: center; }
.story-image img { min-height: 0; height: 100%; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .shop-filters { position: static; display: none; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px; border: 1px solid var(--line); }
  .shop-filters.open { display: grid; }
  .filter-panel-heading { grid-column: 1 / -1; }
  .filter-group { padding: 0; border-bottom: 0; }
  .about-section { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 34px; }
}

@media (max-width: 620px) {
  .shop-heading { align-items: flex-start; flex-direction: column; }
  .filter-trigger { width: 100%; }
  .shop-filters.open { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: minmax(0, 1.15fr) minmax(135px, .85fr); gap: 18px; align-items: start; }
  .about-section h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .story-copy { font-size: 11px; line-height: 1.45; }
  .story-copy p { margin-bottom: 11px; }
  .story-image { position: sticky; top: 82px; aspect-ratio: 3 / 5; }
}

/* =========================================================
   COMPACT PRODUCT GRID
   Keeps product photography smaller so more of the collection is
   visible at once. Adjust the column counts below to resize the cards.
   ========================================================= */
.shop-results .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 14px;
}

.shop-results .product-image {
  aspect-ratio: 4 / 5;
}

.shop-results .product-info {
  padding-top: 10px;
}

.shop-results .product-meta {
  margin-top: 8px;
}

.shop-results .favorite-toggle {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.shop-results .add-button {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 8px;
}

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

@media (max-width: 980px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
  }
}

@media (max-width: 620px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .shop-results .product-info h3 {
    font-size: 11px;
  }

  .shop-results .product-price {
    font-size: 10px;
  }

  .shop-results .add-button {
    min-height: 30px;
    padding-inline: 8px;
  }
}

/* =========================================================
   PRODUCT IMAGE CAROUSELS
   Front → back → details → full product board.
   ========================================================= */
.product-carousel {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  touch-action: pan-y;
}

.product-carousel > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.product-card:hover .product-carousel > img {
  transform: scale(1.015);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
}

.carousel-prev { left: 9px; }
.carousel-next { right: 9px; }

.product-carousel:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
}

.carousel-arrow:hover { background: #fff; }

.product-dots {
  position: absolute;
  left: 50%;
  bottom: 11px;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
}

.product-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
}

.product-dot.active {
  width: 18px;
  border-radius: 999px;
  background: #111;
}

@media (hover: none), (max-width: 760px) {
  .carousel-arrow {
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
}


/* Product galleries, colour swatches and product detail pages */
.product-image-link { display:block; width:100%; height:100%; color:inherit; }
.product-image-link img { width:100%; height:100%; object-fit:cover; }
.product-title-link { color:inherit; text-decoration:none; }
.product-title-link:hover { text-decoration:underline; text-underline-offset:4px; }
.product-colors { display:flex; align-items:center; gap:7px; margin:10px 0 2px; min-height:18px; }
.color-swatch,.filter-swatch { display:inline-block; width:16px; height:16px; border-radius:50%; border:1px solid rgba(0,0,0,.28); box-shadow:inset 0 0 0 2px rgba(255,255,255,.35); flex:none; }
.color-count { margin-left:3px; font-size:10px; color:#666; text-transform:uppercase; letter-spacing:.08em; }
.color-black { background:#171717; }.color-cream { background:#e9e1d2; }.color-brown { background:#5b4638; }.color-olive { background:#4d5140; }.color-plum { background:#563747; }
.color-filter-group label { gap:8px; }
.filter-swatch { width:14px; height:14px; }
.product-page-main { padding:130px 5vw 80px; background:#fff; min-height:100vh; }
.product-detail { max-width:1440px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr); gap:56px; align-items:start; }
.product-gallery { display:grid; grid-template-columns:90px minmax(0,1fr); gap:16px; position:sticky; top:110px; }
.product-thumbnails { display:flex; flex-direction:column; gap:10px; }
.product-thumbnail { border:1px solid transparent; background:#fff; padding:0; cursor:pointer; aspect-ratio:1/1.2; overflow:hidden; }
.product-thumbnail.active { border-color:#111; }
.product-thumbnail img { width:100%; height:100%; object-fit:cover; }
.product-main-image { background:#fff; aspect-ratio:4/5; overflow:hidden; position:relative; }
.product-main-image img { width:100%; height:100%; object-fit:cover; transition:opacity .2s ease; }
.product-details-panel { padding:20px 0; }
.product-breadcrumb { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#666; margin-bottom:28px; }
.product-details-panel h1 { font-size:clamp(34px,4vw,58px); line-height:.98; margin:0 0 18px; letter-spacing:-.04em; }
.product-detail-price { font-size:19px; margin:0 0 28px; }
.product-description { color:#444; line-height:1.75; margin-bottom:30px; }
.option-label { display:flex; justify-content:space-between; font-size:11px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; margin:24px 0 12px; }
.detail-color-options,.detail-size-options { display:flex; flex-wrap:wrap; gap:10px; }
.detail-color-button { width:34px; height:34px; border-radius:50%; border:1px solid #bbb; padding:4px; background:#fff; cursor:pointer; }
.detail-color-button span { width:100%; height:100%; border-radius:50%; display:block; }
.detail-color-button.active { outline:2px solid #111; outline-offset:2px; }
.detail-size-button { min-width:48px; height:44px; border:1px solid #bbb; background:transparent; cursor:pointer; }
.detail-size-button.active { background:#111; color:#fff; border-color:#111; }
.product-add-button { width:100%; border:0; background:#111; color:#fff; padding:18px; margin-top:28px; font-weight:700; letter-spacing:.12em; cursor:pointer; }
.product-accordions { margin-top:28px; border-top:1px solid #ccc; }
.product-accordions details { border-bottom:1px solid #ccc; padding:17px 0; }
.product-accordions summary { cursor:pointer; font-size:12px; font-weight:700; letter-spacing:.1em; }
.product-accordions p { color:#555; line-height:1.65; font-size:13px; }
.recommendations { max-width:1440px; margin:90px auto 0; }
.recommendations h2 { font-size:clamp(28px,4vw,48px); margin-bottom:28px; }
.recommendation-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.recommendation-card { color:#111; text-decoration:none; }
.recommendation-card img { width:100%; aspect-ratio:4/5; object-fit:cover; background:#fff; }
.recommendation-card h3 { font-size:14px; margin:12px 0 5px; }
.recommendation-card p { margin:0; font-size:13px; color:#555; }
@media(max-width:900px){.product-detail{grid-template-columns:1fr;gap:25px}.product-gallery{position:static;grid-template-columns:1fr}.product-thumbnails{order:2;flex-direction:row;overflow:auto}.product-thumbnail{min-width:74px}.recommendation-grid{grid-template-columns:repeat(2,1fr)}.product-page-main{padding:100px 18px 60px}}

/* Production storefront additions */
.size-guide-link{border:0;background:transparent;padding:0;text-decoration:underline;font:inherit;font-size:10px;font-weight:700;letter-spacing:.1em;cursor:pointer}.size-guide-modal-card{max-width:680px}.size-guide-table-wrap{overflow:auto;margin:24px 0}.size-guide-table{width:100%;border-collapse:collapse}.size-guide-table th,.size-guide-table td{padding:13px 12px;border-bottom:1px solid var(--line);text-align:left;font-size:12px}.size-guide-note{font-size:12px;line-height:1.7;color:#555}
.payment-options{margin:18px 0 14px}.payment-options>span{display:block;font-size:9px;letter-spacing:.13em;font-weight:700;margin-bottom:9px}.payment-option-list{display:flex;flex-wrap:wrap;gap:6px}.payment-pill{border:1px solid #d4d4d4;border-radius:4px;padding:5px 7px;background:#fff;font-size:9px;font-weight:700}.track-order-link{display:block;text-align:center;margin-top:15px;color:inherit;font-size:10px;font-weight:700;letter-spacing:.09em;text-decoration:underline}.checkout-modal-card{max-width:620px;max-height:90vh;overflow:auto}.checkout-form{display:grid;gap:11px;margin-top:20px}.checkout-form input,.checkout-form select{width:100%;padding:14px;border:1px solid var(--line);background:#fff}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:11px}.checkout-status{min-height:18px;font-size:11px;line-height:1.5;color:#8a2525}.checkout-form button:disabled{opacity:.55;cursor:wait}
.tracking-page{min-height:100vh;background:#fff;padding:150px 20px 80px}.tracking-card{max-width:820px;margin:0 auto}.tracking-card h1{font-size:clamp(42px,7vw,88px);line-height:.92;margin:12px 0 20px}.tracking-form{display:grid;grid-template-columns:1fr 210px auto;gap:10px;margin:35px 0 20px}.tracking-form input,.tracking-form select{padding:15px;border:1px solid var(--line);background:#fff}.tracking-status{padding:12px 0;color:#8a2525}.tracking-summary{border:1px solid var(--line);padding:22px;margin-top:24px}.tracking-summary span{font-size:10px;letter-spacing:.12em}.tracking-summary strong{display:block;font-size:28px;margin:8px 0}.tracking-summary p{margin:4px 0;color:#555}.tracking-timeline{margin:28px 0}.tracking-timeline article{display:grid;grid-template-columns:18px 1fr;gap:12px;padding-bottom:22px}.tracking-timeline article>span{width:10px;height:10px;border-radius:50%;background:#111;margin-top:4px;position:relative}.tracking-timeline article>span:after{content:"";position:absolute;top:10px;left:4px;width:1px;height:42px;background:#ccc}.tracking-timeline article:last-child>span:after{display:none}.tracking-timeline p{margin:4px 0}.tracking-timeline small{color:#666}.tracking-carrier-link{display:inline-flex}
@media(max-width:700px){.form-row,.tracking-form{grid-template-columns:1fr}.tracking-page{padding-top:110px}.payment-option-list{gap:4px}}


@media (max-width: 480px) {
  .mini-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 12px;
  }
  .mini-item-image { width: 76px; }
}

/* Premium collection card interactions */
.product-image-link { position: relative; }
.product-image-link img { position:absolute; inset:0; transition:opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.product-hover-image { opacity:0; }
@media (hover:hover) {
  .product-card:hover .product-primary-image { opacity:0; transform:scale(1.015); }
  .product-card:hover .product-hover-image { opacity:1; transform:scale(1.015); }
}
.quick-view-button {
  position:absolute; z-index:4; left:12px; right:12px; bottom:44px;
  min-height:40px; border:0; background:rgba(17,17,17,.94); color:#fff;
  font-size:9px; font-weight:800; letter-spacing:.13em; cursor:pointer;
  opacity:0; transform:translateY(10px); transition:opacity .22s ease, transform .22s ease, background .2s ease;
}
.product-card:hover .quick-view-button,.quick-view-button:focus-visible { opacity:1; transform:translateY(0); }
.quick-view-button:hover { background:#000; color:#fff; }
.favorite-toggle { z-index:5; border:1px solid rgba(0,0,0,.1); transition:transform .2s ease, background .2s ease, color .2s ease; }
.favorite-toggle:hover { transform:scale(1.07); }
.favorite-toggle svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.7; }
.favorite-toggle.active svg { fill:currentColor; }
.add-button { position:relative; overflow:hidden; transition:transform .18s ease, background .2s ease; }
.add-button::after { content:""; position:absolute; inset:0; background:rgba(255,255,255,.16); transform:translateX(-110%) skewX(-18deg); transition:transform .45s ease; }
.add-button:hover { transform:translateY(-2px); background:#000; color:#fff; }
.add-button:hover::after { transform:translateX(110%) skewX(-18deg); }
.add-button:active { transform:translateY(0) scale(.97); }

/* Quick view modal */
.quick-view-modal { z-index:120; }
.quick-view-card { width:min(1040px,94vw); max-width:1040px; max-height:92vh; overflow:auto; padding:0; background:#fff; }
.quick-view-close { z-index:4; top:14px; right:14px; background:rgba(255,255,255,.9); border-radius:50%; }
.quick-view-layout { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(350px,.95fr); }
.quick-view-gallery { padding:24px; background:#f5f5f5; }
.quick-view-main-image { aspect-ratio:4/5; overflow:hidden; background:#fff; }
.quick-view-main-image img { width:100%; height:100%; display:block; object-fit:cover; }
.quick-view-thumbnails { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px; }
.quick-view-thumb { border:1px solid transparent; padding:0; background:#fff; cursor:pointer; aspect-ratio:4/5; overflow:hidden; }
.quick-view-thumb.active { border-color:#111; }
.quick-view-thumb img { width:100%; height:100%; object-fit:cover; }
.quick-view-details { padding:clamp(34px,5vw,68px); align-self:center; }
.quick-view-details h2 { margin:0 0 12px; font-family:"Instrument Sans",sans-serif; font-size:clamp(30px,3.5vw,48px); line-height:1; letter-spacing:-.04em; }
.quick-view-price { font-size:16px; margin:0 0 22px; }
.quick-view-description { color:#555; line-height:1.65; font-size:13px; margin:0 0 26px; }
.quick-option-heading { display:flex; justify-content:space-between; gap:15px; margin:22px 0 11px; font-size:10px; font-weight:800; letter-spacing:.12em; }
.quick-option-heading a { color:inherit; text-underline-offset:3px; }
.quick-colors,.quick-sizes { display:flex; flex-wrap:wrap; gap:10px; }
.quick-color { width:32px; height:32px; border-radius:50%; padding:4px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-color span { display:block; width:100%; height:100%; border-radius:50%; }
.quick-color.active { outline:2px solid #111; outline-offset:2px; }
.quick-size { min-width:46px; height:42px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-size.active,.quick-size:hover { background:#111; color:#fff; border-color:#111; }
.quick-view-error { min-height:18px; margin:12px 0 0; font-size:11px; color:#8a2525; }
.quick-view-add { width:100%; margin-top:8px; }
.quick-view-full-link { display:block; margin-top:17px; color:inherit; text-align:center; font-size:10px; font-weight:800; letter-spacing:.1em; text-underline-offset:4px; }
@media (max-width:760px) {
  .quick-view-button { opacity:1; transform:none; left:8px; right:8px; bottom:42px; min-height:34px; }
  .quick-view-layout { grid-template-columns:1fr; }
  .quick-view-gallery { padding:12px; }
  .quick-view-details { padding:28px 20px 32px; }
  .quick-view-card { max-height:94vh; }
}

body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; }
img { display: block; width: 100%; }

/* Announcement */
.announcement {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-button {
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .2s ease, color .2s ease, top .2s ease;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.logo-mark {
  grid-column: 2;
  font-family: "Instrument Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .18em;
}
.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button, .menu-button, .drawer-close {
  background: transparent;
  cursor: pointer;
}
.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.ui-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.count-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
}
.site-header.scrolled .count-badge {
  background: var(--black);
  color: var(--white);
}

/* Search expands inside header */
.header-search { position: relative; display: flex; align-items: center; }
.header-search input {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: none;
  background: transparent;
  color: inherit;
  transition: width .25s ease, opacity .2s ease;
}
.header-search.open input,
.header-search:focus-within input {
  width: 220px;
  opacity: 1;
  padding-left: 8px;
}
.header-search-results {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(360px, 82vw);
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}
.header-search.open .header-search-results:not(:empty) { display: grid; }
.header-search-result {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

/* Mobile menu */
.menu-button { display: none; width: 40px; height: 40px; padding: 9px; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 5px 0; background: currentColor; }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  width: min(88vw, 380px);
  padding: 90px 34px 34px;
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--line);
  transform: translateX(-105%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.mobile-menu .drawer-close { position: absolute; top: 22px; right: 24px; font-size: 30px; }

/* Shared typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--mid-gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Video-first hero */
.hero {
  position: relative;
  height: calc(100svh - 34px);
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  /* Temporary background shown before the campaign video is added. */
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255,255,255,.28) 0%,
      rgba(120,120,120,.18) 22%,
      rgba(35,35,35,.92) 60%,
      #000 100%
    );
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.35) 38%,
      rgba(0,0,0,0) 75%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--gutter) clamp(55px, 9vh, 110px);
  color: var(--white);
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.07em;
}
.hero h1 span {
  display: block;
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.72rem, 1vw, .95rem);
  line-height: 1;
  letter-spacing: .25em;
}
.hero-copy { margin: 28px 0; color: rgba(255,255,255,.78); font-size: 15px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button-primary { background: var(--black); color: var(--white); }
.hero .button-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.hero .button-outline { background: transparent; border-color: var(--white); color: var(--white); }
.button:hover { background: var(--black); color: var(--white); }
.hero .button-primary:hover { background: transparent; color: var(--white); }
.button-full { width: 100%; }

/* Shop */
.shop-section,
.founders-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.section-heading,
.founders-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2,
.about-section h2,
.founders-heading h2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 16px;
}
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft-gray);
}
.product-image::before {
  content: "PRODUCT IMAGE";
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
}
.favorite-toggle.active { background: var(--black); color: var(--white); }
.product-info { padding-top: 14px; }
.product-category { margin: 0 0 5px; color: var(--mid-gray); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-size: 13px; font-weight: 600; }
.product-meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 12px; }
.add-button {
  min-height: 36px;
  padding: 0 13px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Benefits */
.benefit-bar {
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--black);
  color: var(--white);
}
.benefit-bar article { display: flex; gap: 14px; align-items: flex-start; }
.benefit-bar article > span { font-size: 18px; }
.benefit-bar h3 { margin: 0 0 5px; font-size: 10px; letter-spacing: .12em; }
.benefit-bar p { margin: 0; color: #bdbdbd; font-size: 11px; }

/* Story */
.about-section {
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.story-copy { max-width: 620px; color: var(--mid-gray); font-size: 14px; }
.story-copy p { margin: 0 0 16px; }
.story-copy strong { color: var(--black); }
.story-image { margin: 0; min-height: 620px; overflow: hidden; background: var(--soft-gray); }
.story-image img { height: 100%; min-height: 620px; object-fit: cover; filter: none; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.founder-card { border: 1px solid var(--line); background: var(--white); }
.founder-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft-gray); }
.founder-image img { height: 100%; object-fit: cover; filter: none; }
.founder-copy { padding: 32px; }
.founder-role, .founder-credentials { color: var(--mid-gray); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy h3 { margin: 6px 0 16px; font-family: "Instrument Sans", sans-serif; font-size: 34px; }
.founder-copy > p:not(.founder-role):not(.founder-credentials) { color: var(--mid-gray); font-size: 13px; }

/* Footer */
.site-footer {
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.2fr;
  gap: 42px;
  background: var(--black);
  color: var(--white);
}
.site-footer .logo { font-family: "Instrument Sans", sans-serif; font-size: 30px; font-weight: 700; letter-spacing: .16em; }
.site-footer h3 { margin: 0 0 16px; font-size: 10px; letter-spacing: .13em; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #bdbdbd; font-size: 12px; }
.newsletter-form > div { display: flex; border-bottom: 1px solid var(--white); }
.newsletter-form input { width: 100%; border: 0; padding: 13px 0; background: transparent; color: var(--white); outline: none; }
.newsletter-form button { background: transparent; color: var(--white); cursor: pointer; font-size: 20px; }

/* Drawers, modal, chat */
.drawer, .chat-panel, .modal-card { background: var(--white); color: var(--black); }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(92vw, 460px);
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s ease;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-family: "Instrument Sans", sans-serif; }
.drawer-close { font-size: 28px; }
.drawer-content { flex: 1; overflow: auto; padding: 20px 0; }
.drawer-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.subtotal { margin-bottom: 18px; display: flex; justify-content: space-between; font-size: 12px; }
.mini-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mini-item-image {
  display: block;
  width: 92px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft-gray);
}
.mini-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mini-item-details { min-width: 0; }
.mini-item-details h3 { margin: 0 0 6px; font-size: 13px; }
.mini-item-option { margin: 3px 0; font-size: 10px; color: #6b6b6b; text-transform: uppercase; letter-spacing: .06em; }
.mini-item-price { margin: 10px 0 12px; font-size: 12px; }
.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  border: 1px solid var(--line);
}
.quantity-control button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.quantity-control button:hover { background: var(--soft-gray); }
.quantity-control span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.remove-button { align-self: start; background: transparent; cursor: pointer; }
.empty-state { padding: 50px 0; color: var(--mid-gray); text-align: center; }
.modal { position: fixed; inset: 0; z-index: 110; padding: 20px; display: none; place-items: center; background: rgba(0,0,0,.45); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(100%, 520px); padding: 44px; border: 1px solid var(--line); }
.modal-card .drawer-close { position: absolute; top: 15px; right: 17px; }
.modal-card input { width: 100%; margin: 15px 0; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.page-overlay { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(0,0,0,.35); cursor: pointer; }
.page-overlay.open { display: block; }
.chat-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border: 1px solid var(--black); border-radius: 50%; background: var(--white); color: var(--black); cursor: pointer; font-size: 10px; font-weight: 700; }
.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 100; width: min(90vw, 360px); padding: 20px; display: none; border: 1px solid var(--line); }
.chat-panel.open { display: block; }
.chat-header { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.chat-header small { display: block; color: var(--mid-gray); }
.chat-messages { min-height: 130px; padding: 15px 0; }
.chat-bubble { padding: 12px; background: var(--soft-gray); font-size: 12px; }
.chat-form { display: flex; border: 1px solid var(--line); }
.chat-form input { width: 100%; border: 0; padding: 12px; outline: none; }
.chat-form button { width: 45px; background: var(--black); color: var(--white); cursor: pointer; }
/* Premium added-to-bag confirmation used by quick add and product pages. */
.toast {
  position: fixed;
  right: 24px;
  top: 92px;
  z-index: 220;
  width: min(460px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 42px 66px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(17,17,17,.98);
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px,-8px,0);
  transition: opacity 200ms ease, transform 240ms ease, visibility 200ms ease;
  pointer-events: none;
}
.toast.show { opacity: 1; visibility: visible; transform: translate3d(0,0,0); pointer-events: auto; }
.toast-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.toast-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.toast-product-image { width: 66px; height: 78px; object-fit: cover; display: block; border-radius: 5px; background: #f1f1f1; }
.toast-copy { min-width: 0; }
.toast-title { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 800; line-height: 1.2; letter-spacing: .17em; }
.toast-message { display: block; font-size: 13px; font-weight: 500; line-height: 1.4; color: rgba(255,255,255,.82); }
.toast-actions { display: flex; gap: 18px; margin-top: 10px; }
.toast-link { border: 0; border-bottom: 1px solid rgba(255,255,255,.72); padding: 0 0 2px; background: transparent; color: #fff; font: inherit; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; cursor: pointer; }
.toast-checkout { color: #fff; }
.toast-close { align-self: start; width: 28px; height: 28px; border: 0; background: transparent; color: rgba(255,255,255,.7); font-size: 22px; line-height: 1; cursor: pointer; }
.toast-close:hover { color: #fff; }
@media (max-width: 600px) {
  .toast { top: auto; right: 12px; bottom: 12px; width: calc(100vw - 24px); grid-template-columns: 38px 58px minmax(0,1fr) 26px; gap: 10px; padding: 12px; }
  .toast-icon { width: 38px; height: 38px; }
  .toast-product-image { width: 58px; height: 70px; }
  .toast-actions { gap: 13px; }
}

/* Responsive */
@media (max-width: 980px) {
  .site-header { height: 68px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-search input { position: absolute; top: 50px; right: 0; background: var(--white); color: var(--black); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 460px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .announcement { padding-inline: 10px; font-size: 8px; }
  .announcement .text-button { font-size: 8px; }
  .site-header { padding: 0 12px; }
  .logo-mark { font-size: 21px; }
  .header-actions { gap: 0; }
  .header-search { display: none; }
  .hero { height: calc(100svh - 34px); min-height: 620px; }
  .hero-content { padding: 0 22px 55px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .shop-section, .about-section, .founders-section { padding: 72px 20px; }
  .product-grid { gap: 24px 10px; }
  .benefit-bar { grid-template-columns: 1fr; padding: 30px 20px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-copy { padding: 24px; }
  .site-footer { grid-template-columns: 1fr; padding: 55px 20px; }
}


/* =========================================================
   PHOTO + TYPOGRAPHY CORRECTION
   Keeps the interface monochrome while preserving full-color photos.
   ========================================================= */

:root {
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Instrument Sans", Arial, sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}

.logo,
.logo-mark,
.hero h1,
.section-heading h2,
.about-section h2,
.founders-heading h2,
.founder-copy h3,
.drawer-header h2,
.modal-card h2,
.legal-page h1,
.legal-page h2,
.utility-page h1,
.utility-page h2,
.panel h1,
.panel h2 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.03em;
}

/* Keep every actual photograph in full color. */
.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-image,
.product-image img,
.product-card img,
.hero-video,
.hero video,
img {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* Slightly softer, more premium typography proportions. */
.hero h1 {
  font-weight: 600 !important;
  letter-spacing: -0.055em !important;
}

.section-heading h2,
.about-section h2,
.founders-heading h2 {
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.desktop-nav a,
.button,
.eyebrow,
.founder-role,
.founder-credentials {
  font-family: var(--font-body) !important;
}


/* =========================================================
   HERO VIDEO LAYERING
   The gradient remains visible until a real MP4 loads.
   ========================================================= */

.hero-video {
  z-index: 0;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-overlay { z-index: 1; }

.hero-content { z-index: 2; }

.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-card img,
.product-image,
.hero-video {
  filter: none !important;
  -webkit-filter: none !important;
}
/* =========================================================
   2026 STOREFRONT UPDATE
   Gradient hero, side-by-side story and collection filtering.
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 56% 22%, rgba(255,255,255,.68) 0%, rgba(184,184,184,.54) 19%, rgba(66,66,66,.72) 46%, rgba(12,12,12,.98) 82%),
    linear-gradient(115deg, #090909 0%, #777 52%, #111 100%);
}

.shop-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.filter-trigger {
  min-width: 170px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.shop-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 42px; align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.filter-panel-heading { padding-bottom: 17px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--black); }
.filter-panel-heading p, .filter-panel-heading button { margin: 0; background: none; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.filter-panel-heading button { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.filter-group { margin: 0; padding: 24px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-group legend { width: 100%; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.filter-group > label { margin: 9px 0; display: flex; gap: 10px; align-items: center; color: #444; cursor: pointer; font-size: 12px; }
.filter-group input { accent-color: #111; }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.size-options label { cursor: pointer; }
.size-options input { position: absolute; opacity: 0; pointer-events: none; }
.size-options span { min-height: 34px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 10px; }
.size-options input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.shop-results-bar { min-height: 45px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.shop-results-bar p, .shop-results-bar label { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.shop-results-bar label { display: flex; align-items: center; gap: 9px; }
.shop-results-bar select { border: 0; background: transparent; font-size: 10px; outline: none; }
.empty-products { grid-column: 1 / -1; min-height: 340px; display: grid; place-content: center; text-align: center; }
.empty-products p { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button { padding: 12px; background: transparent; cursor: pointer; text-decoration: underline; }

.about-section { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); align-items: stretch; }
.story-content { align-self: center; }
.story-image { min-height: 0; aspect-ratio: 4 / 5; align-self: center; }
.story-image img { min-height: 0; height: 100%; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .shop-filters { position: static; display: none; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px; border: 1px solid var(--line); }
  .shop-filters.open { display: grid; }
  .filter-panel-heading { grid-column: 1 / -1; }
  .filter-group { padding: 0; border-bottom: 0; }
  .about-section { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 34px; }
}

@media (max-width: 620px) {
  .shop-heading { align-items: flex-start; flex-direction: column; }
  .filter-trigger { width: 100%; }
  .shop-filters.open { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: minmax(0, 1.15fr) minmax(135px, .85fr); gap: 18px; align-items: start; }
  .about-section h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .story-copy { font-size: 11px; line-height: 1.45; }
  .story-copy p { margin-bottom: 11px; }
  .story-image { position: sticky; top: 82px; aspect-ratio: 3 / 5; }
}

/* =========================================================
   COMPACT PRODUCT GRID
   Keeps product photography smaller so more of the collection is
   visible at once. Adjust the column counts below to resize the cards.
   ========================================================= */
.shop-results .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 14px;
}

.shop-results .product-image {
  aspect-ratio: 4 / 5;
}

.shop-results .product-info {
  padding-top: 10px;
}

.shop-results .product-meta {
  margin-top: 8px;
}

.shop-results .favorite-toggle {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.shop-results .add-button {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 8px;
}

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

@media (max-width: 980px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
  }
}

@media (max-width: 620px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .shop-results .product-info h3 {
    font-size: 11px;
  }

  .shop-results .product-price {
    font-size: 10px;
  }

  .shop-results .add-button {
    min-height: 30px;
    padding-inline: 8px;
  }
}

/* =========================================================
   PRODUCT IMAGE CAROUSELS
   Front → back → details → full product board.
   ========================================================= */
.product-carousel {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  touch-action: pan-y;
}

.product-carousel > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.product-card:hover .product-carousel > img {
  transform: scale(1.015);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
}

.carousel-prev { left: 9px; }
.carousel-next { right: 9px; }

.product-carousel:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
}

.carousel-arrow:hover { background: #fff; }

.product-dots {
  position: absolute;
  left: 50%;
  bottom: 11px;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
}

.product-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
}

.product-dot.active {
  width: 18px;
  border-radius: 999px;
  background: #111;
}

@media (hover: none), (max-width: 760px) {
  .carousel-arrow {
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
}


/* Product galleries, colour swatches and product detail pages */
.product-image-link { display:block; width:100%; height:100%; color:inherit; }
.product-image-link img { width:100%; height:100%; object-fit:cover; }
.product-title-link { color:inherit; text-decoration:none; }
.product-title-link:hover { text-decoration:underline; text-underline-offset:4px; }
.product-colors { display:flex; align-items:center; gap:7px; margin:10px 0 2px; min-height:18px; }
.color-swatch,.filter-swatch { display:inline-block; width:16px; height:16px; border-radius:50%; border:1px solid rgba(0,0,0,.28); box-shadow:inset 0 0 0 2px rgba(255,255,255,.35); flex:none; }
.color-count { margin-left:3px; font-size:10px; color:#666; text-transform:uppercase; letter-spacing:.08em; }
.color-black { background:#171717; }.color-cream { background:#e9e1d2; }.color-brown { background:#5b4638; }.color-olive { background:#4d5140; }.color-plum { background:#563747; }
.color-filter-group label { gap:8px; }
.filter-swatch { width:14px; height:14px; }
.product-page-main { padding:130px 5vw 80px; background:#fff; min-height:100vh; }
.product-detail { max-width:1440px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr); gap:56px; align-items:start; }
.product-gallery { display:grid; grid-template-columns:90px minmax(0,1fr); gap:16px; position:sticky; top:110px; }
.product-thumbnails { display:flex; flex-direction:column; gap:10px; }
.product-thumbnail { border:1px solid transparent; background:#fff; padding:0; cursor:pointer; aspect-ratio:1/1.2; overflow:hidden; }
.product-thumbnail.active { border-color:#111; }
.product-thumbnail img { width:100%; height:100%; object-fit:cover; }
.product-main-image { background:#fff; aspect-ratio:4/5; overflow:hidden; position:relative; }
.product-main-image img { width:100%; height:100%; object-fit:cover; transition:opacity .2s ease; }
.product-details-panel { padding:20px 0; }
.product-breadcrumb { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#666; margin-bottom:28px; }
.product-details-panel h1 { font-size:clamp(34px,4vw,58px); line-height:.98; margin:0 0 18px; letter-spacing:-.04em; }
.product-detail-price { font-size:19px; margin:0 0 28px; }
.product-description { color:#444; line-height:1.75; margin-bottom:30px; }
.option-label { display:flex; justify-content:space-between; font-size:11px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; margin:24px 0 12px; }
.detail-color-options,.detail-size-options { display:flex; flex-wrap:wrap; gap:10px; }
.detail-color-button { width:34px; height:34px; border-radius:50%; border:1px solid #bbb; padding:4px; background:#fff; cursor:pointer; }
.detail-color-button span { width:100%; height:100%; border-radius:50%; display:block; }
.detail-color-button.active { outline:2px solid #111; outline-offset:2px; }
.detail-size-button { min-width:48px; height:44px; border:1px solid #bbb; background:transparent; cursor:pointer; }
.detail-size-button.active { background:#111; color:#fff; border-color:#111; }
.product-add-button { width:100%; border:0; background:#111; color:#fff; padding:18px; margin-top:28px; font-weight:700; letter-spacing:.12em; cursor:pointer; }
.product-accordions { margin-top:28px; border-top:1px solid #ccc; }
.product-accordions details { border-bottom:1px solid #ccc; padding:17px 0; }
.product-accordions summary { cursor:pointer; font-size:12px; font-weight:700; letter-spacing:.1em; }
.product-accordions p { color:#555; line-height:1.65; font-size:13px; }
.recommendations { max-width:1440px; margin:90px auto 0; }
.recommendations h2 { font-size:clamp(28px,4vw,48px); margin-bottom:28px; }
.recommendation-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.recommendation-card { color:#111; text-decoration:none; }
.recommendation-card img { width:100%; aspect-ratio:4/5; object-fit:cover; background:#fff; }
.recommendation-card h3 { font-size:14px; margin:12px 0 5px; }
.recommendation-card p { margin:0; font-size:13px; color:#555; }
@media(max-width:900px){.product-detail{grid-template-columns:1fr;gap:25px}.product-gallery{position:static;grid-template-columns:1fr}.product-thumbnails{order:2;flex-direction:row;overflow:auto}.product-thumbnail{min-width:74px}.recommendation-grid{grid-template-columns:repeat(2,1fr)}.product-page-main{padding:100px 18px 60px}}

/* Production storefront additions */
.size-guide-link{border:0;background:transparent;padding:0;text-decoration:underline;font:inherit;font-size:10px;font-weight:700;letter-spacing:.1em;cursor:pointer}.size-guide-modal-card{max-width:680px}.size-guide-table-wrap{overflow:auto;margin:24px 0}.size-guide-table{width:100%;border-collapse:collapse}.size-guide-table th,.size-guide-table td{padding:13px 12px;border-bottom:1px solid var(--line);text-align:left;font-size:12px}.size-guide-note{font-size:12px;line-height:1.7;color:#555}
.payment-options{margin:18px 0 14px}.payment-options>span{display:block;font-size:9px;letter-spacing:.13em;font-weight:700;margin-bottom:9px}.payment-option-list{display:flex;flex-wrap:wrap;gap:6px}.payment-pill{border:1px solid #d4d4d4;border-radius:4px;padding:5px 7px;background:#fff;font-size:9px;font-weight:700}.track-order-link{display:block;text-align:center;margin-top:15px;color:inherit;font-size:10px;font-weight:700;letter-spacing:.09em;text-decoration:underline}.checkout-modal-card{max-width:620px;max-height:90vh;overflow:auto}.checkout-form{display:grid;gap:11px;margin-top:20px}.checkout-form input,.checkout-form select{width:100%;padding:14px;border:1px solid var(--line);background:#fff}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:11px}.checkout-status{min-height:18px;font-size:11px;line-height:1.5;color:#8a2525}.checkout-form button:disabled{opacity:.55;cursor:wait}
.tracking-page{min-height:100vh;background:#fff;padding:150px 20px 80px}.tracking-card{max-width:820px;margin:0 auto}.tracking-card h1{font-size:clamp(42px,7vw,88px);line-height:.92;margin:12px 0 20px}.tracking-form{display:grid;grid-template-columns:1fr 210px auto;gap:10px;margin:35px 0 20px}.tracking-form input,.tracking-form select{padding:15px;border:1px solid var(--line);background:#fff}.tracking-status{padding:12px 0;color:#8a2525}.tracking-summary{border:1px solid var(--line);padding:22px;margin-top:24px}.tracking-summary span{font-size:10px;letter-spacing:.12em}.tracking-summary strong{display:block;font-size:28px;margin:8px 0}.tracking-summary p{margin:4px 0;color:#555}.tracking-timeline{margin:28px 0}.tracking-timeline article{display:grid;grid-template-columns:18px 1fr;gap:12px;padding-bottom:22px}.tracking-timeline article>span{width:10px;height:10px;border-radius:50%;background:#111;margin-top:4px;position:relative}.tracking-timeline article>span:after{content:"";position:absolute;top:10px;left:4px;width:1px;height:42px;background:#ccc}.tracking-timeline article:last-child>span:after{display:none}.tracking-timeline p{margin:4px 0}.tracking-timeline small{color:#666}.tracking-carrier-link{display:inline-flex}
@media(max-width:700px){.form-row,.tracking-form{grid-template-columns:1fr}.tracking-page{padding-top:110px}.payment-option-list{gap:4px}}


@media (max-width: 480px) {
  .mini-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 12px;
  }
  .mini-item-image { width: 76px; }
}

/* Premium collection card interactions */
.product-image-link { position: relative; }
.product-image-link img { position:absolute; inset:0; transition:opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.product-hover-image { opacity:0; }
@media (hover:hover) {
  .product-card:hover .product-primary-image { opacity:0; transform:scale(1.015); }
  .product-card:hover .product-hover-image { opacity:1; transform:scale(1.015); }
}
.quick-view-button {
  position:absolute; z-index:4; left:12px; right:12px; bottom:44px;
  min-height:40px; border:0; background:rgba(17,17,17,.94); color:#fff;
  font-size:9px; font-weight:800; letter-spacing:.13em; cursor:pointer;
  opacity:0; transform:translateY(10px); transition:opacity .22s ease, transform .22s ease, background .2s ease;
}
.product-card:hover .quick-view-button,.quick-view-button:focus-visible { opacity:1; transform:translateY(0); }
.quick-view-button:hover { background:#563747; }
.favorite-toggle { z-index:5; border:1px solid rgba(0,0,0,.1); transition:transform .2s ease, background .2s ease, color .2s ease; }
.favorite-toggle:hover { transform:scale(1.07); }
.favorite-toggle svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.7; }
.favorite-toggle.active svg { fill:currentColor; }
.add-button { position:relative; overflow:hidden; transition:transform .18s ease, background .2s ease; }
.add-button::after { content:""; position:absolute; inset:0; background:rgba(255,255,255,.16); transform:translateX(-110%) skewX(-18deg); transition:transform .45s ease; }
.add-button:hover { transform:translateY(-2px); background:#563747; }
.add-button:hover::after { transform:translateX(110%) skewX(-18deg); }
.add-button:active { transform:translateY(0) scale(.97); }

/* Quick view modal */
.quick-view-modal { z-index:120; }
.quick-view-card { width:min(1040px,94vw); max-width:1040px; max-height:92vh; overflow:auto; padding:0; background:#fff; }
.quick-view-close { z-index:4; top:14px; right:14px; background:rgba(255,255,255,.9); border-radius:50%; }
.quick-view-layout { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(350px,.95fr); }
.quick-view-gallery { padding:24px; background:#f5f5f5; }
.quick-view-main-image { aspect-ratio:4/5; overflow:hidden; background:#fff; }
.quick-view-main-image img { width:100%; height:100%; display:block; object-fit:cover; }
.quick-view-thumbnails { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px; }
.quick-view-thumb { border:1px solid transparent; padding:0; background:#fff; cursor:pointer; aspect-ratio:4/5; overflow:hidden; }
.quick-view-thumb.active { border-color:#111; }
.quick-view-thumb img { width:100%; height:100%; object-fit:cover; }
.quick-view-details { padding:clamp(34px,5vw,68px); align-self:center; }
.quick-view-details h2 { margin:0 0 12px; font-family:"Instrument Sans",sans-serif; font-size:clamp(30px,3.5vw,48px); line-height:1; letter-spacing:-.04em; }
.quick-view-price { font-size:16px; margin:0 0 22px; }
.quick-view-description { color:#555; line-height:1.65; font-size:13px; margin:0 0 26px; }
.quick-option-heading { display:flex; justify-content:space-between; gap:15px; margin:22px 0 11px; font-size:10px; font-weight:800; letter-spacing:.12em; }
.quick-option-heading a { color:inherit; text-underline-offset:3px; }
.quick-colors,.quick-sizes { display:flex; flex-wrap:wrap; gap:10px; }
.quick-color { width:32px; height:32px; border-radius:50%; padding:4px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-color span { display:block; width:100%; height:100%; border-radius:50%; }
.quick-color.active { outline:2px solid #111; outline-offset:2px; }
.quick-size { min-width:46px; height:42px; border:1px solid #bbb; background:#fff; cursor:pointer; }
.quick-size.active,.quick-size:hover { background:#111; color:#fff; border-color:#111; }
.quick-view-error { min-height:18px; margin:12px 0 0; font-size:11px; color:#8a2525; }
.quick-view-add { width:100%; margin-top:8px; }
.quick-view-full-link { display:block; margin-top:17px; color:inherit; text-align:center; font-size:10px; font-weight:800; letter-spacing:.1em; text-underline-offset:4px; }
@media (max-width:760px) {
  .quick-view-button { opacity:1; transform:none; left:8px; right:8px; bottom:42px; min-height:34px; }
  .quick-view-layout { grid-template-columns:1fr; }
  .quick-view-gallery { padding:12px; }
  .quick-view-details { padding:28px 20px 32px; }
  .quick-view-card { max-height:94vh; }
}

body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; }
img { display: block; width: 100%; }

/* Announcement */
.announcement {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-button {
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .2s ease, color .2s ease, top .2s ease;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.logo-mark {
  grid-column: 2;
  font-family: "Instrument Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .18em;
}
.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button, .menu-button, .drawer-close {
  background: transparent;
  cursor: pointer;
}
.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.ui-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.count-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
}
.site-header.scrolled .count-badge {
  background: var(--black);
  color: var(--white);
}

/* Search expands inside header */
.header-search { position: relative; display: flex; align-items: center; }
.header-search input {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: none;
  background: transparent;
  color: inherit;
  transition: width .25s ease, opacity .2s ease;
}
.header-search.open input,
.header-search:focus-within input {
  width: 220px;
  opacity: 1;
  padding-left: 8px;
}
.header-search-results {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(360px, 82vw);
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}
.header-search.open .header-search-results:not(:empty) { display: grid; }
.header-search-result {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

/* Mobile menu */
.menu-button { display: none; width: 40px; height: 40px; padding: 9px; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 5px 0; background: currentColor; }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  width: min(88vw, 380px);
  padding: 90px 34px 34px;
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--line);
  transform: translateX(-105%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.mobile-menu .drawer-close { position: absolute; top: 22px; right: 24px; font-size: 30px; }

/* Shared typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--mid-gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Video-first hero */
.hero {
  position: relative;
  height: calc(100svh - 34px);
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  /* Temporary background shown before the campaign video is added. */
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255,255,255,.28) 0%,
      rgba(120,120,120,.18) 22%,
      rgba(35,35,35,.92) 60%,
      #000 100%
    );
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.35) 38%,
      rgba(0,0,0,0) 75%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--gutter) clamp(55px, 9vh, 110px);
  color: var(--white);
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.07em;
}
.hero h1 span {
  display: block;
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.72rem, 1vw, .95rem);
  line-height: 1;
  letter-spacing: .25em;
}
.hero-copy { margin: 28px 0; color: rgba(255,255,255,.78); font-size: 15px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button-primary { background: var(--black); color: var(--white); }
.hero .button-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.hero .button-outline { background: transparent; border-color: var(--white); color: var(--white); }
.button:hover { background: var(--black); color: var(--white); }
.hero .button-primary:hover { background: transparent; color: var(--white); }
.button-full { width: 100%; }

/* Shop */
.shop-section,
.founders-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.section-heading,
.founders-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2,
.about-section h2,
.founders-heading h2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 16px;
}
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft-gray);
}
.product-image::before {
  content: "PRODUCT IMAGE";
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
}
.favorite-toggle.active { background: var(--black); color: var(--white); }
.product-info { padding-top: 14px; }
.product-category { margin: 0 0 5px; color: var(--mid-gray); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-size: 13px; font-weight: 600; }
.product-meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 12px; }
.add-button {
  min-height: 36px;
  padding: 0 13px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Benefits */
.benefit-bar {
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--black);
  color: var(--white);
}
.benefit-bar article { display: flex; gap: 14px; align-items: flex-start; }
.benefit-bar article > span { font-size: 18px; }
.benefit-bar h3 { margin: 0 0 5px; font-size: 10px; letter-spacing: .12em; }
.benefit-bar p { margin: 0; color: #bdbdbd; font-size: 11px; }

/* Story */
.about-section {
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.story-copy { max-width: 620px; color: var(--mid-gray); font-size: 14px; }
.story-copy p { margin: 0 0 16px; }
.story-copy strong { color: var(--black); }
.story-image { margin: 0; min-height: 620px; overflow: hidden; background: var(--soft-gray); }
.story-image img { height: 100%; min-height: 620px; object-fit: cover; filter: none; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.founder-card { border: 1px solid var(--line); background: var(--white); }
.founder-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft-gray); }
.founder-image img { height: 100%; object-fit: cover; filter: none; }
.founder-copy { padding: 32px; }
.founder-role, .founder-credentials { color: var(--mid-gray); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy h3 { margin: 6px 0 16px; font-family: "Instrument Sans", sans-serif; font-size: 34px; }
.founder-copy > p:not(.founder-role):not(.founder-credentials) { color: var(--mid-gray); font-size: 13px; }

/* Footer */
.site-footer {
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.2fr;
  gap: 42px;
  background: var(--black);
  color: var(--white);
}
.site-footer .logo { font-family: "Instrument Sans", sans-serif; font-size: 30px; font-weight: 700; letter-spacing: .16em; }
.site-footer h3 { margin: 0 0 16px; font-size: 10px; letter-spacing: .13em; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #bdbdbd; font-size: 12px; }
.newsletter-form > div { display: flex; border-bottom: 1px solid var(--white); }
.newsletter-form input { width: 100%; border: 0; padding: 13px 0; background: transparent; color: var(--white); outline: none; }
.newsletter-form button { background: transparent; color: var(--white); cursor: pointer; font-size: 20px; }

/* Drawers, modal, chat */
.drawer, .chat-panel, .modal-card { background: var(--white); color: var(--black); }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(92vw, 460px);
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s ease;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-family: "Instrument Sans", sans-serif; }
.drawer-close { font-size: 28px; }
.drawer-content { flex: 1; overflow: auto; padding: 20px 0; }
.drawer-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.subtotal { margin-bottom: 18px; display: flex; justify-content: space-between; font-size: 12px; }
.mini-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 0 0 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.mini-item::before { content: "IMAGE"; width: 72px; height: 92px; display: grid; place-items: center; background: var(--soft-gray); color: #aaa; font-size: 9px; }
.mini-item-details h3 { margin: 0 0 6px; font-size: 13px; }
.mini-item-price { margin: 0 0 12px; font-size: 12px; }
.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  border: 1px solid var(--line);
}
.quantity-control button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.quantity-control button:hover { background: var(--soft-gray); }
.quantity-control span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.remove-button { align-self: start; background: transparent; cursor: pointer; }
.empty-state { padding: 50px 0; color: var(--mid-gray); text-align: center; }
.modal { position: fixed; inset: 0; z-index: 110; padding: 20px; display: none; place-items: center; background: rgba(0,0,0,.45); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(100%, 520px); padding: 44px; border: 1px solid var(--line); }
.modal-card .drawer-close { position: absolute; top: 15px; right: 17px; }
.modal-card input { width: 100%; margin: 15px 0; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.page-overlay { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(0,0,0,.35); cursor: pointer; }
.page-overlay.open { display: block; }
.chat-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border: 1px solid var(--black); border-radius: 50%; background: var(--white); color: var(--black); cursor: pointer; font-size: 10px; font-weight: 700; }
.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 100; width: min(90vw, 360px); padding: 20px; display: none; border: 1px solid var(--line); }
.chat-panel.open { display: block; }
.chat-header { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.chat-header small { display: block; color: var(--mid-gray); }
.chat-messages { min-height: 130px; padding: 15px 0; }
.chat-bubble { padding: 12px; background: var(--soft-gray); font-size: 12px; }
.chat-form { display: flex; border: 1px solid var(--line); }
.chat-form input { width: 100%; border: 0; padding: 12px; outline: none; }
.chat-form button { width: 45px; background: var(--black); color: var(--white); cursor: pointer; }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 120; transform: translateX(-50%); padding: 12px 18px; background: var(--black); color: var(--white); font-size: 11px; opacity: 0; pointer-events: none; }
.toast.show { opacity: 1; }

/* Responsive */
@media (max-width: 980px) {
  .site-header { height: 68px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-search input { position: absolute; top: 50px; right: 0; background: var(--white); color: var(--black); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 460px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .announcement { padding-inline: 10px; font-size: 8px; }
  .announcement .text-button { font-size: 8px; }
  .site-header { padding: 0 12px; }
  .logo-mark { font-size: 21px; }
  .header-actions { gap: 0; }
  .header-search { display: none; }
  .hero { height: calc(100svh - 34px); min-height: 620px; }
  .hero-content { padding: 0 22px 55px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .shop-section, .about-section, .founders-section { padding: 72px 20px; }
  .product-grid { gap: 24px 10px; }
  .benefit-bar { grid-template-columns: 1fr; padding: 30px 20px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-copy { padding: 24px; }
  .site-footer { grid-template-columns: 1fr; padding: 55px 20px; }
}


/* =========================================================
   PHOTO + TYPOGRAPHY CORRECTION
   Keeps the interface monochrome while preserving full-color photos.
   ========================================================= */

:root {
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Instrument Sans", Arial, sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}

.logo,
.logo-mark,
.hero h1,
.section-heading h2,
.about-section h2,
.founders-heading h2,
.founder-copy h3,
.drawer-header h2,
.modal-card h2,
.legal-page h1,
.legal-page h2,
.utility-page h1,
.utility-page h2,
.panel h1,
.panel h2 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.03em;
}

/* Keep every actual photograph in full color. */
.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-image,
.product-image img,
.product-card img,
.hero-video,
.hero video,
img {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* Slightly softer, more premium typography proportions. */
.hero h1 {
  font-weight: 600 !important;
  letter-spacing: -0.055em !important;
}

.section-heading h2,
.about-section h2,
.founders-heading h2 {
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.desktop-nav a,
.button,
.eyebrow,
.founder-role,
.founder-credentials {
  font-family: var(--font-body) !important;
}


/* =========================================================
   HERO VIDEO LAYERING
   The gradient remains visible until a real MP4 loads.
   ========================================================= */

.hero-video {
  z-index: 0;
  background: transparent;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-overlay { z-index: 1; }

.hero-content { z-index: 2; }

.story-image,
.story-image img,
.founder-image,
.founder-image img,
.product-card img,
.product-image,
.hero-video {
  filter: none !important;
  -webkit-filter: none !important;
}
/* =========================================================
   2026 STOREFRONT UPDATE
   Gradient hero, side-by-side story and collection filtering.
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 56% 22%, rgba(255,255,255,.68) 0%, rgba(184,184,184,.54) 19%, rgba(66,66,66,.72) 46%, rgba(12,12,12,.98) 82%),
    linear-gradient(115deg, #090909 0%, #777 52%, #111 100%);
}

.shop-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.filter-trigger {
  min-width: 170px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.shop-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 42px; align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.filter-panel-heading { padding-bottom: 17px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--black); }
.filter-panel-heading p, .filter-panel-heading button { margin: 0; background: none; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.filter-panel-heading button { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.filter-group { margin: 0; padding: 24px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-group legend { width: 100%; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.filter-group > label { margin: 9px 0; display: flex; gap: 10px; align-items: center; color: #444; cursor: pointer; font-size: 12px; }
.filter-group input { accent-color: #111; }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.size-options label { cursor: pointer; }
.size-options input { position: absolute; opacity: 0; pointer-events: none; }
.size-options span { min-height: 34px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 10px; }
.size-options input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.shop-results-bar { min-height: 45px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.shop-results-bar p, .shop-results-bar label { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.shop-results-bar label { display: flex; align-items: center; gap: 9px; }
.shop-results-bar select { border: 0; background: transparent; font-size: 10px; outline: none; }
.empty-products { grid-column: 1 / -1; min-height: 340px; display: grid; place-content: center; text-align: center; }
.empty-products p { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.empty-products button { padding: 12px; background: transparent; cursor: pointer; text-decoration: underline; }

.about-section { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); align-items: stretch; }
.story-content { align-self: center; }
.story-image { min-height: 0; aspect-ratio: 4 / 5; align-self: center; }
.story-image img { min-height: 0; height: 100%; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .shop-filters { position: static; display: none; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px; border: 1px solid var(--line); }
  .shop-filters.open { display: grid; }
  .filter-panel-heading { grid-column: 1 / -1; }
  .filter-group { padding: 0; border-bottom: 0; }
  .about-section { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 34px; }
}

@media (max-width: 620px) {
  .shop-heading { align-items: flex-start; flex-direction: column; }
  .filter-trigger { width: 100%; }
  .shop-filters.open { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: minmax(0, 1.15fr) minmax(135px, .85fr); gap: 18px; align-items: start; }
  .about-section h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .story-copy { font-size: 11px; line-height: 1.45; }
  .story-copy p { margin-bottom: 11px; }
  .story-image { position: sticky; top: 82px; aspect-ratio: 3 / 5; }
}

/* =========================================================
   COMPACT PRODUCT GRID
   Keeps product photography smaller so more of the collection is
   visible at once. Adjust the column counts below to resize the cards.
   ========================================================= */
.shop-results .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 14px;
}

.shop-results .product-image {
  aspect-ratio: 4 / 5;
}

.shop-results .product-info {
  padding-top: 10px;
}

.shop-results .product-meta {
  margin-top: 8px;
}

.shop-results .favorite-toggle {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.shop-results .add-button {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 8px;
}

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

@media (max-width: 980px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
  }
}

@media (max-width: 620px) {
  .shop-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .shop-results .product-info h3 {
    font-size: 11px;
  }

  .shop-results .product-price {
    font-size: 10px;
  }

  .shop-results .add-button {
    min-height: 30px;
    padding-inline: 8px;
  }
}


/* =========================================================
   MOBILE HERO VIDEO / NATIVE PLAY ICON FIX
   Hide the video until it can actually autoplay. This prevents
   iPhone/Safari from flashing a native play button over the hero.
   ========================================================= */
.hero-video {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hero-video.is-ready {
  opacity: 1 !important;
  visibility: visible !important;
}


/* =========================================================
   DUVA FINAL OVERRIDES — 2026-08-13
   Single authoritative layer for cart, logo, search and product hover.
   ========================================================= */
:root{--duva-accent:#0a0a0a!important}

/* Never use purple for interface chrome. Product photography/colors are untouched. */
.quick-view-button,.button-primary,.add-button,.favorite-add-button,.chat-launcher{background:#0a0a0a!important;color:#fff!important;border-color:#0a0a0a!important}
.quick-view-button:hover,.button-primary:hover,.add-button:hover,.favorite-add-button:hover{background:#000!important;color:#fff!important}

/* Keep the product image visible on hover; carousel arrows/quick view may still appear. */
.product-primary-image{opacity:1!important;visibility:visible!important}
.product-hover-image{display:none!important;opacity:0!important}
.product-card:hover .product-primary-image{opacity:1!important;visibility:visible!important;transform:none!important}
.product-card:hover .product-hover-image{display:none!important;opacity:0!important}

/* Tight DUVA wordmark: D has the same visual spacing as the letters that follow. */
.duva-wordmark{gap:0!important;column-gap:0!important;letter-spacing:0!important}
.duva-wordmark .header-d-logo{width:48px!important;height:32px!important;margin:0 -10px 0 0!important;padding:0!important;transform:none!important}
.duva-wordmark .header-uva{font-size:29px!important;font-weight:800!important;letter-spacing:-.075em!important;margin:0!important;padding:0!important;transform:none!important}

/* Compact, clean header search. No giant white bar. */
.header-search{position:relative!important}
.header-search input{height:38px!important;width:0!important;max-width:min(280px,32vw)!important;padding:0!important;border:1px solid transparent!important;border-radius:999px!important;background:rgba(255,255,255,.10)!important;color:inherit!important;box-shadow:none!important;font-size:13px!important;transition:width .2s ease,opacity .2s ease,padding .2s ease,background .2s ease!important}
.header-search.open input,.header-search:focus-within input{width:260px!important;opacity:1!important;padding:0 42px 0 14px!important;border-color:rgba(255,255,255,.45)!important;background:rgba(0,0,0,.18)!important}
.site-header.scrolled .header-search.open input,.site-header.scrolled .header-search:focus-within input{background:#fff!important;border-color:#d8d8d8!important;color:#0a0a0a!important}
.header-search-results{top:46px!important;border-radius:8px!important;overflow:hidden!important;box-shadow:0 14px 36px rgba(0,0,0,.14)!important}

/* Shopping bag/favorites: fixed compact width; never clipped offscreen. */
#cartDrawer,#favoritesDrawer{width:min(94vw,500px)!important;max-width:500px!important;padding:0!important;overflow:hidden!important;display:flex!important;flex-direction:column!important}
#cartDrawer .drawer-header,#favoritesDrawer .drawer-header{min-height:auto!important;padding:28px 28px 22px!important;border-bottom:1px solid var(--line)!important}
#cartDrawer .drawer-header h2,#favoritesDrawer .drawer-header h2{font-size:clamp(30px,4vw,42px)!important;line-height:1!important}
#cartDrawer .drawer-content,#favoritesDrawer .drawer-content{padding:22px 28px!important;overflow-y:auto!important;min-height:0!important;flex:1!important}
#cartDrawer .drawer-footer{padding:22px 28px 26px!important;flex:0 0 auto!important}
#cartDrawer .mini-item,#favoritesDrawer .mini-item{grid-template-columns:92px minmax(0,1fr) 24px!important;gap:16px!important;padding:0 0 20px!important;margin:0 0 20px!important}
#cartDrawer .mini-item-image,#favoritesDrawer .mini-item-image{width:92px!important;aspect-ratio:4/5!important}
#cartDrawer .mini-item-details h3,#favoritesDrawer .mini-item-details h3{font-size:16px!important;line-height:1.25!important;margin:0 0 8px!important}
#cartDrawer .mini-item-price,#favoritesDrawer .mini-item-price{font-size:15px!important;margin:10px 0!important}

.payment-options{margin:18px 0 14px!important}
.payment-options>span{font-size:10px!important}
.payment-option-list{gap:7px!important}
.payment-pill{appearance:none!important;cursor:pointer!important;border:1px solid #d2d2d2!important;background:#fff!important;color:#111!important;border-radius:6px!important;padding:8px 10px!important;font-size:10px!important;font-weight:800!important}
.payment-pill:hover{border-color:#111!important;background:#f7f7f7!important}
.payment-note{display:block;margin-top:9px;color:#666;font-size:9px;line-height:1.45}
.student-checkout-note{margin:0;font-size:11px;color:#555}
.student-verify-form{display:grid;gap:10px;margin-top:16px}
.student-verify-form input{width:100%;padding:14px;border:1px solid var(--line);background:#fff}

.track-order-link{padding:14px 0 2px!important;text-decoration:none!important;border-bottom:1px solid currentColor!important;width:max-content!important;margin:12px auto 0!important}

@media(max-width:620px){
  #cartDrawer,#favoritesDrawer{width:100vw!important;max-width:100vw!important}
  #cartDrawer .drawer-header,#favoritesDrawer .drawer-header{padding:22px 18px 18px!important}
  #cartDrawer .drawer-content,#favoritesDrawer .drawer-content{padding:18px!important}
  #cartDrawer .drawer-footer{padding:18px!important}
  #cartDrawer .mini-item,#favoritesDrawer .mini-item{grid-template-columns:80px minmax(0,1fr) 22px!important;gap:12px!important}
  #cartDrawer .mini-item-image,#favoritesDrawer .mini-item-image{width:80px!important}
}

/* =========================================================
   DUVA DRAWER HARD FIX — 2026-08-13
   Removes legacy fake IMAGE column and prevents full-screen drawers.
   ========================================================= */
#cartDrawer .mini-item::before,
#favoritesDrawer .mini-item::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

#cartDrawer,
#favoritesDrawer {
  width: 420px !important;
  max-width: calc(100vw - 24px) !important;
  right: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

#cartDrawer .drawer-header,
#favoritesDrawer .drawer-header {
  padding: 24px 22px 18px !important;
}

#cartDrawer .drawer-header h2,
#favoritesDrawer .drawer-header h2 {
  font-size: 32px !important;
  line-height: .95 !important;
  letter-spacing: -.055em !important;
  white-space: normal !important;
}

#cartDrawer .drawer-header .eyebrow,
#favoritesDrawer .drawer-header .eyebrow {
  margin: 0 0 8px !important;
  font-size: 10px !important;
  letter-spacing: .18em !important;
}

#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  padding: 18px 22px !important;
}

#cartDrawer .drawer-footer {
  padding: 18px 22px 22px !important;
}

#cartDrawer .mini-item,
#favoritesDrawer .mini-item {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) 20px !important;
  gap: 13px !important;
  align-items: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0 0 16px !important;
  margin: 0 0 16px !important;
}

#cartDrawer .mini-item-image,
#favoritesDrawer .mini-item-image {
  grid-column: 1 !important;
  width: 78px !important;
  height: 98px !important;
  aspect-ratio: auto !important;
  display: block !important;
  overflow: hidden !important;
  background: #f3f3f3 !important;
}

#cartDrawer .mini-item-image img,
#favoritesDrawer .mini-item-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#cartDrawer .mini-item-details,
#favoritesDrawer .mini-item-details {
  grid-column: 2 !important;
  min-width: 0 !important;
}

#cartDrawer .remove-button,
#favoritesDrawer .remove-button {
  grid-column: 3 !important;
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 18px !important;
}

#cartDrawer .mini-item-details h3,
#favoritesDrawer .mini-item-details h3 {
  font-size: 14px !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
}

#cartDrawer .mini-item-price,
#favoritesDrawer .mini-item-price {
  font-size: 13px !important;
}

@media (max-width: 620px) {
  #cartDrawer,
  #favoritesDrawer {
    width: 390px !important;
    max-width: calc(100vw - 16px) !important;
  }

  #cartDrawer .drawer-header,
  #favoritesDrawer .drawer-header {
    padding: 20px 18px 16px !important;
  }

  #cartDrawer .drawer-header h2,
  #favoritesDrawer .drawer-header h2 {
    font-size: 29px !important;
  }

  #cartDrawer .drawer-content,
  #favoritesDrawer .drawer-content,
  #cartDrawer .drawer-footer {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #cartDrawer .mini-item,
  #favoritesDrawer .mini-item {
    grid-template-columns: 72px minmax(0, 1fr) 20px !important;
    gap: 12px !important;
  }

  #cartDrawer .mini-item-image,
  #favoritesDrawer .mini-item-image {
    width: 72px !important;
    height: 90px !important;
  }
}

/* =========================================================
   DUVA HEADER SEARCH + WORDMARK FINAL FIX — 2026-08-13 V3
   Keeps the search centered in the header and restores a clean
   small gap between the D mark and UVA without overlap.
   ========================================================= */

/* Wordmark: small intentional gap, never overlap. */
.duva-wordmark {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  column-gap: 5px !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}
.duva-wordmark .header-d-logo {
  width: 48px !important;
  height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  flex: 0 0 auto !important;
}
.duva-wordmark .header-uva {
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  font-size: 29px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em !important;
}

/* Desktop/tablet: search is a real, permanently visible centered bar. */
@media (min-width: 721px) {
  .site-header {
    position: sticky !important;
  }
  .header-actions {
    position: static !important;
    z-index: 6 !important;
  }
  .header-search {
    display: flex !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: clamp(260px, 32vw, 430px) !important;
    height: 42px !important;
    align-items: center !important;
    z-index: 5 !important;
  }
  .header-search input,
  .header-search.open input,
  .header-search:focus-within input {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    height: 42px !important;
    opacity: 1 !important;
    padding: 0 48px 0 16px !important;
    margin: 0 !important;
    border: 1px solid rgba(255,255,255,.42) !important;
    border-radius: 999px !important;
    background: rgba(0,0,0,.14) !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 13px !important;
    line-height: 42px !important;
  }
  .header-search input::placeholder {
    color: rgba(255,255,255,.72) !important;
  }
  .header-search .icon-button,
  #searchButton {
    position: absolute !important;
    right: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    padding: 7px !important;
    z-index: 2 !important;
  }
  .header-search-results {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 8px) !important;
    width: 100% !important;
    min-width: 100% !important;
    max-height: 360px !important;
    overflow-y: auto !important;
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #ddd !important;
  }
  .site-header.scrolled .header-search input,
  .site-header.scrolled .header-search.open input,
  .site-header.scrolled .header-search:focus-within input {
    background: #fff !important;
    border-color: #d5d5d5 !important;
    color: #111 !important;
  }
  .site-header.scrolled .header-search input::placeholder {
    color: #8a8a8a !important;
  }
}

/* Narrow screens: keep search accessible but place it as a centered compact overlay,
   never a random off-center box below the header. */
@media (min-width: 621px) and (max-width: 900px) {
  .header-search {
    width: min(300px, 36vw) !important;
  }
}

@media (max-width: 720px) {
  .header-search {
    display: none !important;
  }
}

/* =========================================================
   DUVA HEADER SEARCH COLLISION FIX — 2026-08-13 V4
   Keep the centered DUVA wordmark visible. The search lives in
   the right header-actions area instead of floating over it.
   ========================================================= */
@media (min-width: 721px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr !important;
  }

  .header-actions {
    position: static !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  .header-search {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: clamp(210px, 24vw, 330px) !important;
    height: 42px !important;
    flex: 0 1 330px !important;
    margin: 0 8px 0 0 !important;
    z-index: 6 !important;
  }

  .header-search input,
  .header-search.open input,
  .header-search:focus-within input {
    width: 100% !important;
    max-width: none !important;
  }

  .header-search-results {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
}

/* On medium desktop widths, reduce the search instead of allowing overlap. */
@media (min-width: 721px) and (max-width: 1050px) {
  .header-search {
    width: clamp(170px, 21vw, 230px) !important;
    flex-basis: 230px !important;
  }
  .desktop-nav {
    gap: 18px !important;
  }
}

/* =========================================================
   DUVA HEADER VISIBILITY + SEARCH PLACEMENT FIX — V5
   Restore the header as an overlay on the hero. Keep the DUVA
   wordmark centered and the search in the right-side actions.
   ========================================================= */

@media (min-width: 721px) {
  /* The header must overlay the hero, not occupy a white row. */
  .site-header,
  #siteHeader {
    position: absolute !important;
    top: 34px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    align-items: center !important;
    color: #fff !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,.28) !important;
  }

  /* Preserve the intended fixed white header only after scrolling. */
  .site-header.scrolled,
  #siteHeader.scrolled {
    position: fixed !important;
    top: 0 !important;
    color: #0a0a0a !important;
    background: rgba(255,255,255,.96) !important;
    border-bottom-color: #dedede !important;
  }

  /* DUVA stays truly centered in the middle grid column. */
  .site-header .duva-wordmark {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    position: static !important;
    z-index: 3 !important;
  }

  /* Left links remain on the left and cannot push the logo. */
  .site-header .desktop-nav,
  .site-header .desktop-shop-links {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
  }

  /* Right-side actions contain search + favorite + bag. */
  .site-header .header-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    color: inherit !important;
  }

  .site-header .header-search {
    display: flex !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: clamp(190px, 22vw, 300px) !important;
    flex: 0 1 300px !important;
    height: 42px !important;
    margin: 0 4px 0 0 !important;
    z-index: 4 !important;
  }

  .site-header .header-search input,
  .site-header .header-search.open input,
  .site-header .header-search:focus-within input {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: 42px !important;
    padding: 0 45px 0 16px !important;
    margin: 0 !important;
    border: 1px solid rgba(255,255,255,.48) !important;
    border-radius: 999px !important;
    background: rgba(0,0,0,.18) !important;
    color: #fff !important;
    opacity: 1 !important;
  }

  .site-header .header-search input::placeholder {
    color: rgba(255,255,255,.75) !important;
  }

  .site-header.scrolled .header-search input,
  .site-header.scrolled .header-search.open input,
  .site-header.scrolled .header-search:focus-within input {
    background: #f5f5f5 !important;
    border-color: #d8d8d8 !important;
    color: #111 !important;
  }

  .site-header.scrolled .header-search input::placeholder {
    color: #888 !important;
  }

  .site-header .header-search .icon-button,
  .site-header #searchButton {
    position: absolute !important;
    right: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    z-index: 5 !important;
    color: inherit !important;
  }
}

@media (min-width: 721px) and (max-width: 1120px) {
  .site-header .header-search {
    width: clamp(150px, 18vw, 215px) !important;
    flex-basis: 215px !important;
  }
}


/* DUVA V7 — clean header search placeholder */
@media (min-width: 721px) {
  .site-header .header-search {
    width: clamp(220px, 22vw, 320px) !important;
    flex-basis: 320px !important;
  }
  .site-header .header-search input,
  .site-header .header-search.open input,
  .site-header .header-search:focus-within input {
    font-size: 15px !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
  }
}
@media (min-width: 721px) and (max-width: 1120px) {
  .site-header .header-search {
    width: clamp(190px, 20vw, 240px) !important;
    flex-basis: 240px !important;
  }
  .site-header .header-search input,
  .site-header .header-search.open input,
  .site-header .header-search:focus-within input {
    font-size: 14px !important;
  }
}


/* =========================================================
   V12 — HEADER VISIBILITY + DUVA WORDMARK SPACING
   Keeps the header on top of the hero and gives the D/UVA
   a small visual gap without overlap.
   ========================================================= */
@media (min-width: 721px) {
  .site-header,
  #siteHeader {
    position: absolute !important;
    top: 34px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: transparent !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,.28) !important;
    z-index: 50 !important;
  }

  .site-header.scrolled,
  #siteHeader.scrolled {
    position: fixed !important;
    top: 0 !important;
    background: rgba(255,255,255,.96) !important;
    color: #0a0a0a !important;
    border-bottom-color: #dedede !important;
  }
}

/* Only the actual DUVA header wordmark — do not affect footer/logo links. */
.duva-wordmark {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  column-gap: 5px !important;
}

.duva-wordmark .header-d-logo {
  margin: 0 !important;
  transform: none !important;
  flex: 0 0 auto !important;
}

.duva-wordmark .header-uva {
  margin: 0 !important;
  transform: none !important;
  letter-spacing: -0.025em !important;
  flex: 0 0 auto !important;
}


/* =========================================================
   V13 — PRODUCT PAGE COMPACT LAYOUT + RECOMMENDATION CAROUSEL
   ========================================================= */

/* Reduce the oversized empty gap above the product content. */
.product-page-main {
  padding-top: 72px !important;
  padding-bottom: 54px !important;
}

.product-detail {
  gap: 42px !important;
}

.product-details-panel {
  padding-top: 6px !important;
}

/* Bring the recommendation section closer to the product. */
.recommendations {
  max-width: 1500px !important;
  margin: 46px auto 0 !important;
  padding: 0 !important;
}

.recommendations-heading {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.recommendations-heading .eyebrow {
  margin: 0 0 7px !important;
}

.recommendations h2 {
  margin: 0 !important;
  font-size: clamp(32px, 3.2vw, 48px) !important;
  line-height: .95 !important;
  letter-spacing: -.035em !important;
}

.recommendation-controls {
  display: flex !important;
  gap: 9px !important;
  flex: 0 0 auto !important;
}

.recommendation-arrow {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 1px solid #cfcfcf !important;
  background: #fff !important;
  color: #111 !important;
  display: grid !important;
  place-items: center !important;
  font-size: 31px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: background .18s ease, color .18s ease, border-color .18s ease !important;
}

.recommendation-arrow:hover {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

.recommendation-viewport {
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
  overscroll-behavior-inline: contain !important;
}

.recommendation-viewport::-webkit-scrollbar {
  display: none !important;
}

.recommendation-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px !important;
  width: max-content !important;
  min-width: 100% !important;
  padding: 0 2px 8px !important;
}

.recommendation-card {
  flex: 0 0 clamp(240px, 23vw, 330px) !important;
  width: clamp(240px, 23vw, 330px) !important;
  color: #111 !important;
  text-decoration: none !important;
}

.recommendation-image-wrap {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  background: #f7f7f7 !important;
  overflow: hidden !important;
}

.recommendation-card img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  display: block !important;
  object-fit: cover !important;
  transition: transform .28s ease !important;
}

.recommendation-card:hover img {
  transform: scale(1.025) !important;
}

.recommendation-copy {
  padding-top: 11px !important;
}

.recommendation-card h3 {
  margin: 0 0 4px !important;
  font-size: 17px !important;
  line-height: 1.15 !important;
  letter-spacing: -.015em !important;
}

.recommendation-card p {
  margin: 0 !important;
  font-size: 14px !important;
  color: #555 !important;
}

@media (max-width: 900px) {
  .product-page-main {
    padding-top: 44px !important;
  }

  .recommendations {
    margin-top: 34px !important;
  }

  .recommendations-heading {
    align-items: center !important;
  }

  .recommendation-arrow {
    width: 42px !important;
    height: 42px !important;
  }

  .recommendation-card {
    flex-basis: min(72vw, 290px) !important;
    width: min(72vw, 290px) !important;
  }
}


/* =========================================================
   V14 — WORKING SEARCH + LIVE PRODUCT RECOMMENDATIONS
   ========================================================= */
.site-header .header-search {
  overflow: visible !important;
}

.site-header .header-search-results {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  width: min(390px, 88vw) !important;
  max-height: min(480px, 62vh) !important;
  overflow-y: auto !important;
  padding: 10px !important;
  background: #fff !important;
  border: 1px solid #dedede !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.16) !important;
  color: #111 !important;
  z-index: 500 !important;
}

.site-header .header-search.open .header-search-results:not(:empty),
.site-header .header-search:focus-within .header-search-results:not(:empty) {
  display: block !important;
}

.header-search-results-title {
  padding: 8px 10px 10px !important;
  color: #777 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
}

.header-search-result {
  width: 100% !important;
  min-height: 72px !important;
  display: grid !important;
  grid-template-columns: 54px 1fr 24px !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 9px !important;
  border: 0 !important;
  border-top: 1px solid #ededed !important;
  background: #fff !important;
  color: #111 !important;
  text-align: left !important;
  cursor: pointer !important;
  border-radius: 0 !important;
}

.header-search-result:first-of-type {
  border-top: 0 !important;
}

.header-search-result:hover,
.header-search-result:focus-visible {
  background: #f6f6f6 !important;
  outline: none !important;
}

.header-search-result img {
  width: 54px !important;
  height: 54px !important;
  object-fit: cover !important;
  display: block !important;
  background: #f2f2f2 !important;
}

.header-search-result-copy {
  min-width: 0 !important;
  display: block !important;
}

.header-search-result-copy strong {
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: #111 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  letter-spacing: -.01em !important;
}

.header-search-result-copy small {
  display: block !important;
  margin-top: 5px !important;
  color: #666 !important;
  font-size: 12px !important;
}

.header-search-result-arrow {
  justify-self: end !important;
  color: #111 !important;
  font-size: 18px !important;
}

.header-search-empty {
  margin: 0 !important;
  padding: 18px 10px !important;
  color: #666 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

/* Keep dropdown readable even while header itself is transparent over hero. */
.site-header:not(.scrolled) .header-search-results,
#siteHeader:not(.scrolled) .header-search-results {
  background: #fff !important;
  color: #111 !important;
}

@media (max-width: 760px) {
  .site-header .header-search-results {
    position: fixed !important;
    top: 118px !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
  }
}


/* =========================================================
   V15 — FULL PRODUCT IMAGES + VISIBLE MULTI-IMAGE GALLERY
   ========================================================= */

/* The product page has a fixed header. Keep the gallery completely below it. */
.product-page-main {
  padding-top: 132px !important;
}

/* Use a clean two-column retail layout without hiding the top of the image. */
@media (min-width: 901px) {
  .product-detail {
    width: min(100% - 64px, 1320px) !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    grid-template-columns: minmax(480px, 620px) minmax(380px, 1fr) !important;
    gap: clamp(46px, 5vw, 84px) !important;
    align-items: start !important;
  }

  .product-gallery {
    display: block !important;
    width: 100% !important;
    max-width: 620px !important;
    position: static !important;
  }

  .product-details-panel {
    max-width: 540px !important;
    padding-top: 22px !important;
  }
}

/* Main image: fill the frame like every other product image on the site (matches the shop grid's 2:3 proportion, which fits the actual photos almost exactly, so this crops only a sliver rather than shrinking the photo with grey bars). */
.product-main-image {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 2 / 3 !important;
  overflow: hidden !important;
  background: #f7f7f7 !important;
}

.product-main-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

/* Clear arrows directly on the product photo. */
.product-image-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 3 !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(0,0,0,.18) !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.94) !important;
  color: #111 !important;
  display: grid !important;
  place-items: center !important;
  font-size: 30px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.08) !important;
}

.product-image-arrow:hover {
  background: #111 !important;
  color: #fff !important;
}

.product-image-prev { left: 16px !important; }
.product-image-next { right: 16px !important; }

.product-image-count {
  position: absolute !important;
  right: 16px !important;
  bottom: 16px !important;
  z-index: 3 !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.92) !important;
  color: #111 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
}

/* Put every available photo in an obvious strip below the main image. */
.product-thumbnails {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  gap: 10px !important;
  margin-top: 12px !important;
  padding: 0 0 4px !important;
  overflow-x: auto !important;
  scrollbar-width: thin !important;
}

.product-thumbnail,
.product-thumb {
  flex: 0 0 92px !important;
  width: 92px !important;
  height: 112px !important;
  min-width: 92px !important;
  padding: 0 !important;
  border: 1px solid #ddd !important;
  background: #f7f7f7 !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

.product-thumbnail.active,
.product-thumb.active {
  border: 2px solid #111 !important;
}

.product-thumbnail img,
.product-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #f7f7f7 !important;
}

@media (max-width: 900px) {
  .product-page-main {
    padding-top: 112px !important;
  }

  .product-gallery {
    display: block !important;
    width: 100% !important;
  }

  .product-main-image {
    width: min(100%, 620px) !important;
    margin: 0 auto !important;
  }

  .product-thumbnails {
    width: min(100%, 620px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 560px) {
  .product-page-main {
    padding-top: 96px !important;
  }

  .product-image-arrow {
    width: 42px !important;
    height: 42px !important;
  }

  .product-image-prev { left: 10px !important; }
  .product-image-next { right: 10px !important; }

  .product-thumbnail,
  .product-thumb {
    flex-basis: 78px !important;
    width: 78px !important;
    min-width: 78px !important;
    height: 96px !important;
  }
}


/* =========================================================
   V16 — search recommendations + cart recommendations + full bag
   ========================================================= */
.header-search-results {
  max-height: min(72vh, 620px);
  overflow-y: auto;
}
.header-search-recommendations {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e7e7e7;
}
.header-search-recommendations-title { margin-bottom: 10px; }
.header-search-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.duva-recommendation-card {
  border: 0;
  background: #fff;
  color: #111;
  padding: 0;
  text-align: left;
  cursor: pointer;
  min-width: 0;
}
.duva-recommendation-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f3f3f3;
  margin-bottom: 7px;
}
.duva-recommendation-card strong,
.duva-recommendation-card small { display:block; }
.duva-recommendation-card strong { font-size: 11px; line-height: 1.3; }
.duva-recommendation-card small { margin-top: 3px; font-size: 11px; color:#666; }

.cart-recommendations {
  border-top: 1px solid #dedede;
  margin-top: 18px;
  padding: 20px 0 4px;
}
.cart-recommendations-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.cart-recommendation-grid { display:grid; gap:12px; }
.cart-recommendation-card {
  display:grid;
  grid-template-columns: 72px minmax(0,1fr);
  gap:12px;
  align-items:center;
}
.cart-recommendation-image img {
  width:72px;
  height:88px;
  object-fit:cover;
  display:block;
  background:#f4f4f4;
}
.cart-recommendation-copy { min-width:0; }
.cart-recommendation-name {
  display:block;
  color:#111;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  line-height:1.3;
  margin-bottom:4px;
}
.cart-recommendation-copy > span { display:block; font-size:11px; color:#555; margin-bottom:7px; }
.cart-recommendation-copy button {
  border:0;
  border-bottom:1px solid #111;
  background:transparent;
  padding:0 0 2px;
  font-size:9px;
  font-weight:800;
  letter-spacing:.09em;
  cursor:pointer;
}
.view-full-bag-button {
  width:100%;
  margin-top:12px;
  border:1px solid #111;
  background:#fff;
  color:#111;
  padding:14px 16px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  cursor:pointer;
}
.view-full-bag-button:hover { background:#111; color:#fff; }

.full-bag-modal { padding:24px; align-items:flex-start; overflow:auto; }
.full-bag-card {
  width:min(1180px, calc(100vw - 48px));
  max-width:1180px;
  min-height:min(760px, calc(100vh - 48px));
  margin:0 auto;
  padding:44px 48px 54px;
  overflow:visible;
}
.full-bag-eyebrow {
  font-size:12px;
  font-weight:800;
  color:#777;
  letter-spacing:.22em;
  margin-bottom:8px;
}
.full-bag-card > h2 {
  margin:0 0 28px;
  font-size:clamp(38px,5vw,72px);
  line-height:.95;
  letter-spacing:-.055em;
}
.full-bag-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:48px;
  align-items:start;
  border-top:1px solid #dedede;
  padding-top:24px;
}
.full-bag-item {
  display:grid;
  grid-template-columns:150px minmax(0,1fr) auto;
  gap:22px;
  padding:0 0 24px;
  margin-bottom:24px;
  border-bottom:1px solid #dedede;
}
.full-bag-item-image img { width:150px; height:186px; object-fit:cover; background:#f4f4f4; display:block; }
.full-bag-item-copy h3 { margin:0 0 10px; font-size:18px; }
.full-bag-item-copy h3 a { color:#111; text-decoration:none; }
.full-bag-item-copy p { margin:3px 0; font-size:12px; color:#666; text-transform:uppercase; letter-spacing:.06em; }
.full-bag-item-copy .quantity-control { margin-top:18px; }
.full-bag-item-side { display:flex; flex-direction:column; align-items:flex-end; justify-content:space-between; gap:18px; }
.full-bag-item-side strong { font-size:16px; }
.full-bag-remove,
.full-bag-continue {
  border:0;
  border-bottom:1px solid currentColor;
  background:transparent;
  padding:0 0 2px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.1em;
  cursor:pointer;
}
.full-bag-summary {
  position:sticky;
  top:20px;
  border:1px solid #dedede;
  padding:24px;
}
.full-bag-summary-row { display:flex; justify-content:space-between; gap:16px; font-size:16px; margin-bottom:12px; }
.full-bag-summary > p { color:#666; font-size:12px; line-height:1.5; margin:0 0 22px; }
.full-bag-continue { display:block; margin:18px auto 0; }
.full-bag-empty { padding:60px 0; font-size:18px; }
.full-bag-card .cart-recommendations { margin-top:34px; }
.full-bag-card .cart-recommendation-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.full-bag-card .cart-recommendation-card { display:block; }
.full-bag-card .cart-recommendation-image img { width:100%; height:auto; aspect-ratio:4/5; margin-bottom:10px; }

@media (max-width: 800px) {
  .header-search-recommendation-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .header-search-recommendation-grid .duva-recommendation-card:nth-child(3) { display:none; }
  .full-bag-modal { padding:0; }
  .full-bag-card { width:100vw; min-height:100vh; padding:32px 20px 44px; }
  .full-bag-layout { grid-template-columns:1fr; gap:24px; }
  .full-bag-summary { position:static; }
  .full-bag-item { grid-template-columns:92px minmax(0,1fr); gap:14px; }
  .full-bag-item-image img { width:92px; height:116px; }
  .full-bag-item-side { grid-column:2; flex-direction:row; align-items:center; }
  .full-bag-card .cart-recommendation-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}


/* =========================================================
   V17 — SHAREABLE PRODUCT PAGES + PERSISTENT INNER HEADER
   ========================================================= */
.inner-page .site-header,
.inner-page .site-header.scrolled,
.inner-page #siteHeader,
.inner-page #siteHeader.scrolled {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  z-index: 10000 !important;
  background: rgba(255,255,255,.98) !important;
  color: #0a0a0a !important;
  border-bottom: 1px solid #dedede !important;
  backdrop-filter: blur(12px);
}
.inner-page .site-header + .product-page-main { padding-top: 0 !important; }
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.product-topline .product-breadcrumb { margin: 0 !important; }
.share-product-button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid #111;
  background: transparent;
  color: #111;
  padding: 0 0 3px;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  cursor: pointer;
  white-space: nowrap;
}
.cart-recommendations-heading span {
  font-weight: 600;
  color: #777;
  letter-spacing: .08em;
}
@media (max-width: 720px) {
  .inner-page .site-header,
  .inner-page .site-header.scrolled,
  .inner-page #siteHeader,
  .inner-page #siteHeader.scrolled {
    top: 0 !important;
  }
  .product-topline { align-items: flex-start; }
  .share-product-button { font-size: 9px; }
}


/* =========================================================
   V18 — COMPLETE PRODUCT HEADER + FULL SHOPPING BAG PAGE
   ========================================================= */
.product-site-header { display:grid !important; grid-template-columns:1fr auto 1fr !important; align-items:center !important; min-height:92px !important; padding:0 28px !important; }
.product-site-header .menu-button { display:flex !important; justify-self:start; position:static !important; }
.product-site-header .duva-wordmark { justify-self:center !important; position:static !important; transform:none !important; }
.product-header-actions { justify-self:end; display:flex !important; align-items:center; gap:13px; min-width:0; }
.product-header-search { position:relative; width:clamp(210px,25vw,390px); display:flex; align-items:center; border:1px solid #d5d5d5; border-radius:999px; min-height:52px; padding:0 16px; background:#fff; }
.product-header-search input { display:block !important; position:static !important; width:100% !important; min-width:0; border:0 !important; background:transparent !important; outline:0; font:inherit; font-size:15px; padding:0 10px 0 2px !important; color:#111 !important; }
.product-header-search #productSearchButton { order:2; flex:0 0 auto; }
.product-header-search-results { display:none; position:absolute; top:calc(100% + 10px); right:0; width:min(430px,calc(100vw - 32px)); max-height:440px; overflow:auto; background:#fff; border:1px solid #d8d8d8; border-radius:18px; box-shadow:0 20px 55px rgba(0,0,0,.14); padding:12px; z-index:12000; }
.product-header-search.open .product-header-search-results { display:block; }
.product-search-result { display:grid; grid-template-columns:62px minmax(0,1fr); gap:12px; align-items:center; padding:8px; color:#111; text-decoration:none; border-radius:10px; }
.product-search-result:hover { background:#f5f5f5; }
.product-search-result img { width:62px; height:72px; object-fit:cover; background:#f3f3f3; }
.product-search-result strong,.product-search-result small { display:block; }
.product-search-result small { color:#666; margin-top:4px; }
.product-search-empty { padding:18px; color:#666; font-size:13px; }
.product-site-header .icon-button { color:#111 !important; text-decoration:none; position:relative; }
.product-site-header .ui-svg { stroke:#111 !important; }
.product-mobile-menu { z-index:15000 !important; }

.cart-page-main { max-width:1460px; margin:0 auto; padding:62px 46px 90px; }
.cart-page-heading { display:grid; grid-template-columns:1fr auto; align-items:end; border-bottom:1px solid #d8d8d8; padding-bottom:30px; margin-bottom:34px; }
.cart-page-heading .eyebrow { grid-column:1/-1; margin-bottom:8px; }
.cart-page-heading h1 { margin:0; font-size:clamp(50px,7vw,105px); letter-spacing:-.065em; line-height:.9; }
.cart-page-heading > a { color:#111; font-size:11px; font-weight:800; letter-spacing:.12em; text-decoration:none; border-bottom:1px solid #111; padding-bottom:3px; }
.cart-page-layout { display:grid; grid-template-columns:minmax(0,1fr) 370px; gap:60px; align-items:start; }
.cart-page-item { display:grid; grid-template-columns:190px minmax(0,1fr) auto; gap:28px; align-items:start; border-bottom:1px solid #dedede; padding:0 0 28px; margin-bottom:28px; }
.cart-page-item-image img { width:190px; height:235px; object-fit:cover; background:#f4f4f4; display:block; }
.cart-page-item-copy a { color:#111; text-decoration:none; }
.cart-page-item-copy h2 { margin:0 0 9px; font-size:23px; }
.cart-page-item-copy p { margin:0 0 22px; color:#666; text-transform:uppercase; letter-spacing:.07em; font-size:12px; }
.cart-page-quantity { display:inline-grid; grid-template-columns:38px 44px 38px; border:1px solid #ccc; align-items:center; text-align:center; margin-bottom:18px; }
.cart-page-quantity button { border:0; background:#fff; height:38px; cursor:pointer; font-size:18px; }
.cart-page-remove { display:block; border:0; border-bottom:1px solid #111; background:transparent; padding:0 0 2px; font-weight:800; letter-spacing:.1em; font-size:9px; cursor:pointer; }
.cart-page-item > strong { font-size:18px; }
.cart-page-summary { position:sticky; top:116px; border:1px solid #d8d8d8; padding:28px; }
.cart-summary-row { display:flex; justify-content:space-between; gap:16px; font-size:18px; margin-bottom:16px; }
.cart-page-summary p { color:#666; line-height:1.5; font-size:13px; margin:0 0 25px; }
.cart-page-checkout { width:100%; border:0; background:#080808; color:#fff; padding:20px 18px; font-size:11px; font-weight:800; letter-spacing:.14em; cursor:pointer; }
.cart-payment-note { text-align:center; color:#777; font-size:9px; letter-spacing:.14em; margin-top:14px; }
.cart-page-empty { padding:70px 0; }
.cart-page-empty a { color:#111; font-weight:800; }
.cart-page-recommendations { border-top:1px solid #dedede; margin-top:65px; padding-top:46px; }
.cart-page-recommendations h2 { margin:5px 0 28px; font-size:clamp(30px,4vw,54px); letter-spacing:-.04em; }
.cart-page-recommendation-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.cart-page-rec a { color:#111; text-decoration:none; }
.cart-page-rec img { width:100%; aspect-ratio:4/5; object-fit:cover; background:#f4f4f4; display:block; }
.cart-page-rec h3 { margin:12px 0 4px; font-size:15px; }
.cart-page-rec p { margin:0 0 12px; color:#555; }
.cart-page-rec button { width:100%; border:1px solid #111; background:#fff; padding:12px; font-size:10px; font-weight:800; letter-spacing:.1em; cursor:pointer; }
.cart-page-rec button:hover { background:#111; color:#fff; }
.cart-checkout-modal-card { width:min(720px,calc(100vw - 32px)); padding:48px; }
.cart-checkout-modal-card h2 { font-size:clamp(34px,5vw,60px); margin:8px 0 18px; letter-spacing:-.05em; }
.cart-checkout-modal-card form { margin-top:28px; }
.cart-checkout-modal-card input { width:100%; box-sizing:border-box; padding:18px; font:inherit; border:1px solid #ccc; margin-bottom:16px; }
.checkout-status { min-height:20px; color:#9b1c1c; font-size:12px; }
.cart-page-shop-link { color:#111; text-decoration:none; font-size:10px; font-weight:800; letter-spacing:.1em; }

@media (max-width: 980px) {
  .product-site-header { grid-template-columns:auto 1fr auto !important; }
  .product-header-search { width:250px; }
  .product-site-header .duva-wordmark { justify-self:center !important; }
  .cart-page-layout { grid-template-columns:1fr; gap:30px; }
  .cart-page-summary { position:static; }
  .cart-page-recommendation-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .product-site-header { min-height:76px !important; padding:0 14px !important; }
  .product-header-search { width:48px; min-height:48px; padding:0; border:0; }
  .product-header-search input { display:none !important; }
  .product-header-search.open { position:absolute; left:14px; right:14px; top:82px; width:auto; padding:0 14px; border:1px solid #d5d5d5; z-index:12000; }
  .product-header-search.open input { display:block !important; }
  .product-header-search-results { left:0; right:0; width:100%; box-sizing:border-box; }
  .product-site-header .product-favorites-link { display:none; }
  .cart-page-shop-link { display:none; }
  .cart-page-main { padding:38px 18px 70px; }
  .cart-page-heading { display:block; }
  .cart-page-heading h1 { margin-bottom:20px; }
  .cart-page-item { grid-template-columns:110px minmax(0,1fr); gap:16px; }
  .cart-page-item-image img { width:110px; height:140px; }
  .cart-page-item > strong { grid-column:2; }
  .cart-page-recommendation-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .cart-checkout-modal-card { padding:36px 22px; }
}

/* =========================================================
   V19 — STABLE PRODUCT HEADER / WIDE SEARCH / CHAT OUTLINE
   ========================================================= */
@media (min-width: 981px) {
  /* Product pages: menu + DUVA live on the left; search/actions own the right. */
  .inner-page .product-site-header,
  .product-site-header {
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 52px 210px minmax(0, 1fr) !important;
    column-gap: 18px !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 92px !important;
    padding: 0 34px !important;
    overflow: visible !important;
  }

  .product-site-header .menu-button {
    grid-column: 1 !important;
    justify-self: start !important;
    position: static !important;
    margin: 0 !important;
  }

  .product-site-header .duva-wordmark {
    grid-column: 2 !important;
    justify-self: start !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .product-site-header .product-header-actions {
    grid-column: 3 !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: 820px !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    overflow: visible !important;
  }

  .product-site-header .product-header-search {
    flex: 1 1 520px !important;
    width: auto !important;
    min-width: 320px !important;
    max-width: 620px !important;
    height: 54px !important;
    min-height: 54px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .product-site-header .product-header-search input {
    min-width: 0 !important;
    font-size: 16px !important;
  }

  .product-site-header .product-header-search-results {
    left: 0 !important;
    right: auto !important;
    width: min(620px, calc(100vw - 110px)) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px !important;
    max-height: min(560px, calc(100vh - 130px)) !important;
    overflow-y: auto !important;
  }

  .product-site-header .product-search-result {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 12px !important;
  }

  .product-site-header .product-search-result img {
    width: 78px !important;
    height: 92px !important;
  }

  .product-site-header .product-search-result strong {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .product-site-header .product-search-result small {
    font-size: 13px !important;
  }

  .product-site-header .product-favorites-link,
  .product-site-header .product-cart-link {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .product-site-header {
    grid-template-columns: 44px 170px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 0 20px !important;
  }
  .product-site-header .duva-wordmark { justify-self: start !important; }
  .product-header-actions { width: 100% !important; max-width: 620px !important; justify-self: end !important; }
  .product-header-search { flex: 1 1 360px !important; width: auto !important; min-width: 220px !important; max-width: 460px !important; }
  .product-header-search-results { left: 0 !important; right: auto !important; width: min(460px, calc(100vw - 60px)) !important; }
}

/* Chat launcher stays visible over both black and white backgrounds. */
.chat-launcher {
  border: 2px solid rgba(255,255,255,.95) !important;
  outline: 1px solid rgba(0,0,0,.38) !important;
  outline-offset: 1px !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 8px 24px rgba(0,0,0,.22) !important;
}


/* =========================================================
   V20 — PRODUCT PAGE HEADER + CONTENT POSITION FINAL OVERRIDE
   Keeps every product control visible and removes the giant
   blank area introduced by conflicting older header rules.
   ========================================================= */
.product-inner-page .product-site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 20000 !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 96px !important;
  min-height: 96px !important;
  padding: 0 34px !important;
  display: grid !important;
  grid-template-columns: 48px 190px minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: center !important;
  background: rgba(255,255,255,.985) !important;
  border-bottom: 1px solid #dedede !important;
  overflow: visible !important;
}

.product-inner-page .product-site-header .menu-button {
  grid-column: 1 !important;
  display: flex !important;
  position: static !important;
  visibility: visible !important;
  opacity: 1 !important;
  justify-self: start !important;
  margin: 0 !important;
  color: #111 !important;
}

.product-inner-page .product-site-header .duva-wordmark {
  grid-column: 2 !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  justify-self: start !important;
  align-items: center !important;
  width: 180px !important;
  min-width: 180px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px !important;
  column-gap: 10px !important;
  transform: none !important;
  color: #111 !important;
  text-decoration: none !important;
}

.product-inner-page .product-site-header .duva-wordmark .header-d-logo {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 64px !important;
  height: 43px !important;
  max-width: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  filter: none !important;
}

.product-inner-page .product-site-header .duva-wordmark .header-uva {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #111 !important;
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -.045em !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.product-inner-page .product-site-header .product-header-actions {
  grid-column: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  justify-self: stretch !important;
  width: 100% !important;
  max-width: 760px !important;
  min-width: 0 !important;
  margin-left: auto !important;
  gap: 14px !important;
  overflow: visible !important;
}

.product-inner-page .product-site-header .product-header-search {
  flex: 1 1 540px !important;
  width: auto !important;
  min-width: 300px !important;
  max-width: 590px !important;
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 16px 0 20px !important;
  display: flex !important;
  align-items: center !important;
  border: 1px solid #d1d1d1 !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.product-inner-page .product-site-header .product-header-search input {
  display: block !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  color: #111 !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  font-size: 16px !important;
  padding: 0 10px 0 0 !important;
}

.product-inner-page .product-site-header .product-header-search-results {
  left: 0 !important;
  right: auto !important;
  top: calc(100% + 10px) !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 590px !important;
  box-sizing: border-box !important;
}

.product-inner-page .product-site-header .product-favorites-link,
.product-inner-page .product-site-header .product-cart-link {
  display: grid !important;
  place-items: center !important;
  flex: 0 0 44px !important;
  width: 44px !important;
  height: 44px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Sticky header is in normal document flow, so only a modest content gap is needed. */
.product-inner-page .product-site-header + .product-page-main,
.product-inner-page .product-page-main {
  padding-top: 34px !important;
}

/* Keep text columns from being clipped at normal desktop widths. */
@media (min-width: 901px) {
  .product-inner-page .product-detail {
    width: min(calc(100% - 56px), 1420px) !important;
    max-width: 1420px !important;
    grid-template-columns: minmax(440px, 610px) minmax(420px, 1fr) !important;
    gap: clamp(42px, 5vw, 78px) !important;
  }
  .product-inner-page .product-details-panel {
    width: 100% !important;
    max-width: 650px !important;
    min-width: 0 !important;
  }
  .product-inner-page .product-details-panel h1 {
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 1100px) and (min-width: 721px) {
  .product-inner-page .product-site-header {
    grid-template-columns: 46px 155px minmax(0, 1fr) !important;
    padding: 0 20px !important;
    gap: 12px !important;
  }
  .product-inner-page .product-site-header .duva-wordmark {
    width: 150px !important;
    min-width: 150px !important;
    gap: 8px !important;
  }
  .product-inner-page .product-site-header .duva-wordmark .header-d-logo {
    width: 54px !important;
    height: 37px !important;
  }
  .product-inner-page .product-site-header .duva-wordmark .header-uva {
    font-size: 29px !important;
  }
  .product-inner-page .product-site-header .product-header-actions {
    max-width: 620px !important;
  }
  .product-inner-page .product-site-header .product-header-search {
    min-width: 220px !important;
    max-width: 440px !important;
  }
}

@media (max-width: 720px) {
  .product-inner-page .product-site-header {
    height: 76px !important;
    min-height: 76px !important;
    grid-template-columns: 44px 1fr auto !important;
    padding: 0 14px !important;
    gap: 10px !important;
  }
  .product-inner-page .product-site-header .duva-wordmark {
    grid-column: 2 !important;
    justify-self: center !important;
    width: auto !important;
    min-width: 0 !important;
    gap: 7px !important;
  }
  .product-inner-page .product-site-header .duva-wordmark .header-d-logo {
    width: 48px !important;
    height: 32px !important;
  }
  .product-inner-page .product-site-header .duva-wordmark .header-uva {
    font-size: 26px !important;
  }
  .product-inner-page .product-site-header .product-header-actions {
    grid-column: 3 !important;
    width: auto !important;
    gap: 4px !important;
  }
  .product-inner-page .product-site-header .product-header-search {
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
  }
  .product-inner-page .product-site-header .product-header-search input {
    display: none !important;
  }
  .product-inner-page .product-site-header .product-header-search.open {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 82px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 14px !important;
    border: 1px solid #d1d1d1 !important;
    background: #fff !important;
  }
  .product-inner-page .product-site-header .product-header-search.open input {
    display: block !important;
  }
  .product-inner-page .product-site-header .product-favorites-link {
    display: none !important;
  }
  .product-inner-page .product-site-header + .product-page-main,
  .product-inner-page .product-page-main {
    padding-top: 22px !important;
  }
}


/* =========================================================
   V21 — PRODUCT HEADER MATCHES MAIN STOREFRONT
   Hamburger | DUVA | wide search | favorites | bag
   ========================================================= */
@media (min-width: 901px) {
  .product-inner-page .product-site-header {
    height: 88px !important;
    min-height: 88px !important;
    padding: 0 30px !important;
    display: grid !important;
    grid-template-columns: 54px 210px minmax(460px, 1fr) !important;
    column-gap: 24px !important;
    align-items: center !important;
    background: #fff !important;
  }

  .product-inner-page .product-site-header .menu-button {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  /* Same compact wordmark proportions as the storefront header. */
  .product-inner-page .product-site-header .duva-wordmark {
    grid-column: 2 !important;
    justify-self: start !important;
    width: auto !important;
    min-width: 0 !important;
    gap: 7px !important;
    column-gap: 7px !important;
  }

  .product-inner-page .product-site-header .duva-wordmark .header-d-logo {
    width: 58px !important;
    height: 39px !important;
    flex: 0 0 58px !important;
  }

  .product-inner-page .product-site-header .duva-wordmark .header-uva {
    font-size: 32px !important;
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
  }

  .product-inner-page .product-site-header .product-header-actions {
    grid-column: 3 !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(500px, 760px) 46px 46px !important;
    justify-content: end !important;
    align-items: center !important;
    column-gap: 14px !important;
  }

  /* Actually large search bar, not the cramped previous version. */
  .product-inner-page .product-site-header .product-header-search {
    grid-column: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-width: 500px !important;
    max-width: 760px !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    overflow: visible !important;
  }

  .product-inner-page .product-site-header .product-header-search input {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    box-sizing: border-box !important;
    padding: 0 58px 0 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 17px !important;
    line-height: 50px !important;
    opacity: 1 !important;
  }

  .product-inner-page .product-site-header .product-header-search input::placeholder {
    color: #8a8a8a !important;
    opacity: 1 !important;
  }

  /* Search icon belongs on the right inside the field. */
  .product-inner-page .product-site-header #productSearchButton {
    position: absolute !important;
    right: 8px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    height: 38px !important;
    padding: 8px !important;
    z-index: 3 !important;
  }

  .product-inner-page .product-site-header .product-header-search-results {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 760px !important;
    max-height: 460px !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
  }

  .product-inner-page .product-site-header .product-favorites-link {
    grid-column: 2 !important;
  }

  .product-inner-page .product-site-header .product-cart-link {
    grid-column: 3 !important;
  }

  .product-inner-page .product-site-header .product-favorites-link,
  .product-inner-page .product-site-header .product-cart-link {
    width: 46px !important;
    height: 46px !important;
    flex: none !important;
  }

  .product-inner-page .product-page-main {
    padding-top: 28px !important;
  }
}

/* Medium desktop: preserve the same structure but scale search smoothly. */
@media (min-width: 721px) and (max-width: 1200px) {
  .product-inner-page .product-site-header {
    grid-template-columns: 48px 175px minmax(0, 1fr) !important;
    padding: 0 20px !important;
    column-gap: 14px !important;
  }

  .product-inner-page .product-site-header .duva-wordmark .header-d-logo {
    width: 50px !important;
    height: 34px !important;
    flex-basis: 50px !important;
  }

  .product-inner-page .product-site-header .duva-wordmark .header-uva {
    font-size: 28px !important;
  }

  .product-inner-page .product-site-header .product-header-actions {
    display: grid !important;
    grid-template-columns: minmax(300px, 1fr) 44px 44px !important;
    column-gap: 8px !important;
  }

  .product-inner-page .product-site-header .product-header-search {
    min-width: 300px !important;
    max-width: none !important;
    width: 100% !important;
  }
}


/* ==========================================================
   V27 — ONE DESKTOP HEADER FOR MAIN + PRODUCT PAGES
   Layout: hamburger | DUVA on the left | HUGE search | fav | bag
   This is deliberately last so it wins over every older patch.
   ========================================================== */
@media (min-width: 981px) {
  body .site-header,
  body.product-inner-page .product-site-header,
  body.inner-page .product-site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 40000 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 94px !important;
    min-height: 94px !important;
    padding: 0 28px !important;

    display: grid !important;
    grid-template-columns: 58px 220px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 18px !important;

    background: rgba(255,255,255,.985) !important;
    border-bottom: 1px solid #dedede !important;
    color: #111 !important;
    overflow: visible !important;
    transform: none !important;
  }

  /* Remove the extra main-page desktop nav so both headers are literally the same. */
  body .site-header .desktop-shop-links,
  body .site-header .desktop-nav {
    display: none !important;
  }

  body .site-header .menu-button,
  body.product-inner-page .product-site-header .menu-button {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    color: #111 !important;
  }

  /* DUVA is moved LEFT instead of being centered. */
  body .site-header .duva-wordmark,
  body.product-inner-page .product-site-header .duva-wordmark {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 9px !important;
    transform: none !important;
    color: #111 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  body .site-header .duva-wordmark .header-d-logo,
  body.product-inner-page .product-site-header .duva-wordmark .header-d-logo {
    display: block !important;
    width: 60px !important;
    height: 41px !important;
    flex: 0 0 60px !important;
    max-width: none !important;
    margin: 0 !important;
    object-fit: contain !important;
    transform: none !important;
    filter: none !important;
  }

  body .site-header .duva-wordmark .header-uva,
  body.product-inner-page .product-site-header .duva-wordmark .header-uva {
    display: block !important;
    font-size: 33px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -.045em !important;
    margin: 0 !important;
    transform: none !important;
    color: #111 !important;
  }

  /* Right side is identical on both pages. */
  body .site-header .header-actions,
  body.product-inner-page .product-site-header .product-header-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: stretch !important;
    align-self: center !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;

    display: grid !important;
    grid-template-columns: minmax(560px, 820px) 48px 48px !important;
    justify-content: end !important;
    align-items: center !important;
    gap: 12px !important;
    overflow: visible !important;
  }

  /* THIS is the bigger search bar. */
  body .site-header .header-search,
  body.product-inner-page .product-site-header .product-header-search {
    grid-column: 1 !important;
    position: relative !important;

    width: 100% !important;
    min-width: 560px !important;
    max-width: 820px !important;
    height: 58px !important;
    min-height: 58px !important;

    display: flex !important;
    align-items: center !important;
    padding: 0 10px 0 24px !important;
    box-sizing: border-box !important;

    border: 1px solid #cfcfcf !important;
    border-radius: 999px !important;
    background: #fff !important;
    overflow: visible !important;
    opacity: 1 !important;
  }

  body .site-header .header-search input,
  body .site-header .header-search.open input,
  body.product-inner-page .product-site-header .product-header-search input {
    order: 1 !important;
    display: block !important;
    position: static !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 56px !important;

    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #111 !important;

    padding: 0 10px 0 0 !important;
    font: inherit !important;
    font-size: 18px !important;
    line-height: 56px !important;
    opacity: 1 !important;
  }

  body .site-header .header-search input::placeholder,
  body.product-inner-page .product-site-header .product-header-search input::placeholder {
    color: #8a8a8a !important;
    opacity: 1 !important;
  }

  body .site-header .header-search #searchButton,
  body.product-inner-page .product-site-header .product-header-search #productSearchButton {
    order: 2 !important;
    position: static !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    margin: 0 !important;
    transform: none !important;
    color: #111 !important;
  }

  body .site-header .header-search-results,
  body.product-inner-page .product-site-header .product-header-search-results {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 820px !important;
    max-height: min(560px, calc(100vh - 125px)) !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    z-index: 41000 !important;
  }

  body .site-header #favoritesButton,
  body.product-inner-page .product-site-header .product-favorites-link {
    grid-column: 2 !important;
  }

  body .site-header #cartButton,
  body.product-inner-page .product-site-header .product-cart-link {
    grid-column: 3 !important;
  }

  body .site-header #favoritesButton,
  body .site-header #cartButton,
  body.product-inner-page .product-site-header .product-favorites-link,
  body.product-inner-page .product-site-header .product-cart-link {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    margin: 0 !important;
    color: #111 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body .site-header .ui-svg,
  body.product-inner-page .product-site-header .ui-svg {
    stroke: #111 !important;
  }

  body.product-inner-page .product-page-main {
    padding-top: 34px !important;
  }
}

/* Laptop: same layout, search still clearly large. */
@media (min-width: 981px) and (max-width: 1320px) {
  body .site-header,
  body.product-inner-page .product-site-header {
    grid-template-columns: 52px 185px minmax(0,1fr) !important;
    padding: 0 20px !important;
    column-gap: 12px !important;
  }

  body .site-header .duva-wordmark .header-d-logo,
  body.product-inner-page .product-site-header .duva-wordmark .header-d-logo {
    width: 52px !important;
    height: 36px !important;
    flex-basis: 52px !important;
  }

  body .site-header .duva-wordmark .header-uva,
  body.product-inner-page .product-site-header .duva-wordmark .header-uva {
    font-size: 29px !important;
  }

  body .site-header .header-actions,
  body.product-inner-page .product-site-header .product-header-actions {
    grid-template-columns: minmax(430px, 650px) 46px 46px !important;
    gap: 8px !important;
  }

  body .site-header .header-search,
  body.product-inner-page .product-site-header .product-header-search {
    min-width: 430px !important;
    max-width: 650px !important;
  }
}


/* ==========================================================
   V28 — CART BEHAVIOR + FULL CART HEADER
   Bag icon = SIDE DRAWER.
   SHOPPING BAG title / VIEW FULL BAG = full cart.html page.
   ========================================================== */

/* Make the drawer title visibly clickable without changing its look. */
#cartDrawer .drawer-header h2 a,
#cartDrawer .shopping-bag-title-link {
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

#cartDrawer .drawer-header h2 a:hover,
#cartDrawer .shopping-bag-title-link:hover {
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
}

/* Full-cart page gets exactly the same header grid as the storefront. */
@media (min-width: 981px) {
  body.cart-page .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 40000 !important;
    width: 100% !important;
    height: 94px !important;
    min-height: 94px !important;
    padding: 0 28px !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: 58px 220px minmax(0,1fr) !important;
    align-items: center !important;
    column-gap: 18px !important;

    background: rgba(255,255,255,.985) !important;
    border-bottom: 1px solid #dedede !important;
    color: #111 !important;
    overflow: visible !important;
  }

  body.cart-page .site-header .menu-button {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: static !important;
    justify-self: start !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.cart-page .site-header .duva-wordmark {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    gap: 9px !important;
    margin: 0 !important;
    transform: none !important;
    color: #111 !important;
    text-decoration: none !important;
  }

  body.cart-page .site-header .duva-wordmark .header-d-logo {
    width: 60px !important;
    height: 41px !important;
    flex: 0 0 60px !important;
    margin: 0 !important;
    transform: none !important;
    object-fit: contain !important;
  }

  body.cart-page .site-header .duva-wordmark .header-uva {
    display: block !important;
    font-size: 33px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -.045em !important;
    margin: 0 !important;
    color: #111 !important;
  }

  body.cart-page .site-header .header-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;

    display: grid !important;
    grid-template-columns: minmax(560px,820px) 48px 48px !important;
    justify-content: end !important;
    align-items: center !important;
    gap: 12px !important;
    overflow: visible !important;
  }

  body.cart-page .site-header .header-search {
    grid-column: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-width: 560px !important;
    max-width: 820px !important;
    height: 58px !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
    padding: 0 10px 0 24px !important;
    border: 1px solid #cfcfcf !important;
    border-radius: 999px !important;
    background: #fff !important;
    overflow: visible !important;
  }

  body.cart-page .site-header .header-search input {
    order: 1 !important;
    display: block !important;
    position: static !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 56px !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    padding: 0 10px 0 0 !important;
    color: #111 !important;
    font-size: 18px !important;
    opacity: 1 !important;
  }

  body.cart-page .site-header .header-search .icon-button {
    order: 2 !important;
    position: static !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    transform: none !important;
    color: #111 !important;
  }

  body.cart-page .site-header .header-search-results {
    position: absolute !important;
    left: 0 !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 820px !important;
    max-height: min(560px,calc(100vh - 125px)) !important;
    overflow-y: auto !important;
    z-index: 41000 !important;
  }

  body.cart-page .site-header .cart-header-favorites {
    grid-column: 2 !important;
  }

  body.cart-page .site-header .cart-header-bag {
    grid-column: 3 !important;
  }

  body.cart-page .site-header .cart-header-favorites,
  body.cart-page .site-header .cart-header-bag {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    display: grid !important;
    place-items: center !important;
    color: #111 !important;
    text-decoration: none !important;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  body.cart-page .site-header {
    grid-template-columns: 52px 185px minmax(0,1fr) !important;
    padding: 0 20px !important;
    column-gap: 12px !important;
  }

  body.cart-page .site-header .header-actions {
    grid-template-columns: minmax(430px,650px) 46px 46px !important;
    gap: 8px !important;
  }

  body.cart-page .site-header .header-search {
    min-width: 430px !important;
    max-width: 650px !important;
  }
}

/* Remove the duplicate CONTINUE SHOPPING control from the header.
   It remains properly placed beside SHOPPING BAG in the page content. */
body.cart-page .cart-page-shop-link {
  display: none !important;
}


/* ==========================================================
   V35 — CLEAN HEADER RESET
   Keep the original DUVA look. Only:
   1) move DUVA left
   2) make search longer
   3) make dropdown match search width
   ========================================================== */

@media (min-width: 721px) {
  /* HOME HEADER: keep original transparent-over-hero appearance. */
  body:not(.product-inner-page):not(.cart-page) .site-header {
    padding-left: 22px !important;
    padding-right: 22px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .desktop-nav,
  body:not(.product-inner-page):not(.cart-page) .site-header .desktop-shop-links {
    display: none !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .menu-button {
    display: block !important;
    position: static !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
  }

  /* DUVA sits beside the menu instead of centered. */
  body:not(.product-inner-page):not(.cart-page) .site-header .duva-wordmark {
    position: static !important;
    flex: 0 0 170px !important;
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
    margin: 0 10px 0 4px !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 9px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-d-logo {
    width: 58px !important;
    height: 39px !important;
    flex: 0 0 58px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-uva {
    font-size: 31px !important;
    line-height: 1 !important;
    letter-spacing: -.04em !important;
    white-space: nowrap !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-actions {
    position: static !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 9px !important;
  }

  /* Long search, but otherwise same visual style as before. */
  body:not(.product-inner-page):not(.cart-page) .site-header .header-search {
    position: relative !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 360px !important;
    max-width: none !important;
    height: 54px !important;
    padding: 0 8px 0 20px !important;
    display: flex !important;
    align-items: center !important;
    border: 1px solid rgba(255,255,255,.58) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.04) !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header.scrolled .header-search {
    border-color: #d0d0d0 !important;
    background: #fff !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-search input,
  body:not(.product-inner-page):not(.cart-page) .site-header .header-search.open input {
    order: 1 !important;
    display: block !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
    opacity: 1 !important;
    padding: 0 10px 0 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: inherit !important;
    font-size: 17px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-search #searchButton {
    order: 2 !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-search-results {
    left: 0 !important;
    right: auto !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    max-height: 520px !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header #favoritesButton,
  body:not(.product-inner-page):not(.cart-page) .site-header #cartButton {
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

/* At the ~935px browser width from the screenshot, keep DUVA visible
   but prioritize a noticeably longer search field. */
@media (min-width: 721px) and (max-width: 1050px) {
  body:not(.product-inner-page):not(.cart-page) .site-header {
    padding-left: 12px !important;
    padding-right: 12px !important;
    gap: 7px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .duva-wordmark {
    flex-basis: 138px !important;
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    margin-right: 4px !important;
    gap: 7px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-d-logo {
    width: 47px !important;
    height: 32px !important;
    flex-basis: 47px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-uva {
    font-size: 26px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header .header-search {
    min-width: 430px !important;
  }

  body:not(.product-inner-page):not(.cart-page) .site-header #favoritesButton,
  body:not(.product-inner-page):not(.cart-page) .site-header #cartButton {
    flex-basis: 39px !important;
    width: 39px !important;
    height: 39px !important;
  }
}

/* ==========================================================
   CART RECOMMENDATIONS — keep the compact horizontal scroll row
   ========================================================== */
body.cart-page .cart-page-recommendations {
  width: 100% !important;
  max-width: none !important;
  margin: 42px 0 0 !important;
  padding: 28px 0 8px !important;
  overflow: hidden !important;
}

body.cart-page .cart-page-recommendations h2 {
  margin: 4px 0 18px !important;
  font-size: clamp(25px, 2.4vw, 36px) !important;
  line-height: 1 !important;
}

body.cart-page .cart-page-recommendation-grid {
  display: flex !important;
  gap: 14px !important;
  width: 100% !important;
  padding: 0 2px 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x proximity !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
}

body.cart-page .cart-page-rec {
  flex: 0 0 190px !important;
  width: 190px !important;
  min-width: 190px !important;
  max-width: 190px !important;
  scroll-snap-align: start !important;
}

body.cart-page .cart-page-rec img {
  width: 190px !important;
  height: 225px !important;
  object-fit: cover !important;
}

body.cart-page .cart-page-rec h3 {
  margin: 8px 0 2px !important;
  font-size: 13px !important;
}

body.cart-page .cart-page-rec p {
  margin: 0 0 7px !important;
  font-size: 12px !important;
}

body.cart-page .cart-page-rec button {
  width: 100% !important;
  padding: 9px 8px !important;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
}

body.cart-page .cart-page-rec button:hover {
  background: #1a1a1a !important;
  border-color: #1a1a1a !important;
}


/* =========================================================
   V36 — KEEP THE SEARCH SIZE. MOVE DUVA OUT OF ITS WAY.
   ========================================================= */
@media (min-width: 721px) {
  #siteHeader > .duva-wordmark {
    position: absolute !important;
    left: 86px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 5 !important;
  }

  #siteHeader > .duva-wordmark .header-d-logo {
    width: 54px !important;
    height: 37px !important;
  }

  #siteHeader > .duva-wordmark .header-uva {
    font-size: 29px !important;
  }
}

/* Favorites drawer/page */
.favorites-title-link {
  color: inherit !important;
  text-decoration: none !important;
}
.favorites-title-link:hover { text-decoration: underline !important; text-underline-offset: 6px; }
.favorites-view-all,
.duva-fav-view-all {
  display:block;
  margin:16px 20px 22px;
  padding:14px 16px;
  border:1px solid #111;
  color:#111;
  background:#fff;
  text-align:center;
  text-decoration:none;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
}
.favorites-view-all:hover,.duva-fav-view-all:hover{background:#111;color:#fff}

.duva-favorites-overlay {
  position:fixed;inset:0;background:rgba(0,0,0,.42);opacity:0;pointer-events:none;transition:.2s;z-index:49990;
}
.duva-favorites-overlay.open {opacity:1;pointer-events:auto}
.duva-global-favorites-drawer {
  position:fixed;top:0;right:0;width:min(420px,92vw);height:100vh;background:#fff;
  transform:translateX(105%);transition:transform .25s ease;z-index:50000;
  display:flex;flex-direction:column;box-shadow:-15px 0 40px rgba(0,0,0,.12);
}
.duva-global-favorites-drawer.open {transform:translateX(0)}
.duva-fav-drawer-head {display:flex;justify-content:space-between;align-items:flex-start;padding:28px 24px 20px;border-bottom:1px solid #ddd}
.duva-fav-drawer-head p{margin:0 0 5px;font-size:11px;font-weight:800;letter-spacing:.18em;color:#777}
.duva-fav-drawer-head h2{margin:0;font-size:34px;letter-spacing:-.04em}
.duva-fav-drawer-head h2 a{color:#111;text-decoration:none}
.duva-fav-drawer-head button{border:0;background:transparent;font-size:32px;cursor:pointer}
.duva-fav-drawer-body{flex:1;overflow:auto;padding:0 20px}
.duva-fav-mini{display:grid;grid-template-columns:92px 1fr 28px;gap:14px;padding:20px 0;border-bottom:1px solid #ddd}
.duva-fav-mini-image{height:112px;background:#f3f3f3;overflow:hidden}
.duva-fav-mini-image img{width:100%;height:100%;object-fit:cover}
.duva-fav-mini-copy{display:flex;flex-direction:column;align-items:flex-start;gap:7px}
.duva-fav-mini-name{color:#111;text-decoration:none;font-size:16px;font-weight:800}
.duva-fav-mini-copy button{margin-top:4px;padding:10px 12px;background:#000;color:#fff;border:0;font-size:10px;font-weight:800;letter-spacing:.08em;cursor:pointer}
.duva-fav-mini-remove{border:0;background:transparent;font-size:24px;cursor:pointer}
.duva-fav-empty{padding:42px 0;color:#666;line-height:1.7}

.favorites-page-main{max-width:1400px;margin:0 auto;padding:55px 42px 90px}
.favorites-page-heading{display:flex;align-items:end;justify-content:space-between;padding-bottom:28px;border-bottom:1px solid #ddd;margin-bottom:38px}
.favorites-page-heading h1{margin:0;font-size:clamp(48px,6vw,82px);letter-spacing:-.06em;line-height:.95}
.favorites-page-heading>a{color:#111;text-decoration:none;font-size:12px;font-weight:800;letter-spacing:.12em;border-bottom:1px solid #111;padding-bottom:5px}
.favorites-page-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}
.favorite-page-card{border:1px solid #ddd;background:#fff}
.favorite-page-image{display:block;aspect-ratio:4/5;background:#f3f3f3;overflow:hidden}
.favorite-page-image img{width:100%;height:100%;object-fit:cover}
.favorite-page-copy{padding:20px}
.favorite-page-copy a{color:#111;text-decoration:none}
.favorite-page-copy h2{margin:0 0 8px;font-size:22px}
.favorite-page-price{margin:0 0 18px;font-size:18px}
.favorite-page-copy label{display:block;margin:12px 0 5px;font-size:10px;font-weight:800;letter-spacing:.12em}
.favorite-page-copy select{width:100%;height:44px;padding:0 12px;background:#fff;border:1px solid #bbb}
.favorite-page-add{width:100%;margin-top:18px;padding:14px;background:#000;color:#fff;border:1px solid #000;font-weight:800;letter-spacing:.1em;cursor:pointer}
.favorite-page-remove{width:100%;margin-top:8px;padding:11px;background:#fff;color:#111;border:1px solid #111;font-size:10px;font-weight:800;letter-spacing:.08em;cursor:pointer}
.favorites-page-empty{grid-column:1/-1;padding:70px 0}
.favorites-page-empty h2{font-size:34px;margin:0 0 8px}
.favorites-page-empty a{display:inline-block;margin-top:18px;color:#111;font-weight:800}

@media(max-width:900px){
  .favorites-page-main{padding:32px 18px 70px}
  .favorites-page-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:600px){
  .favorites-page-grid{grid-template-columns:1fr}
}


/* ==========================================================
   V37 — STRUCTURAL HOME HEADER
   DUVA is physically LEFT of the search. No absolute overlap.
   Search retains the long size the user preferred.
   ========================================================== */
@media (min-width: 721px) {
  .duva-home-header-v37 {
    position: absolute !important;
    top: 34px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 18px !important;

    color: #fff !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,.28) !important;
    overflow: visible !important;
  }

  .duva-home-header-v37.scrolled {
    position: fixed !important;
    top: 0 !important;
    color: #111 !important;
    background: rgba(255,255,255,.96) !important;
    border-bottom-color: #dedede !important;
    backdrop-filter: blur(14px) !important;
  }

  .duva-home-header-v37 > .menu-button {
    position: static !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    transform: none !important;
  }

  .duva-home-header-v37 > .duva-home-brand-v37 {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    flex: 0 0 138px !important;
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    margin: 0 6px 0 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    z-index: auto !important;
  }

  .duva-home-header-v37 > .duva-home-brand-v37 .header-d-logo {
    width: 47px !important;
    height: 32px !important;
    flex: 0 0 47px !important;
  }

  .duva-home-header-v37 > .duva-home-brand-v37 .header-uva {
    font-size: 26px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    color: currentColor !important;
  }

  .duva-home-header-v37 > .duva-home-actions-v37 {
    position: static !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
  }

  .duva-home-header-v37 .duva-home-search-v37 {
    position: relative !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 56px !important;

    display: flex !important;
    align-items: center !important;
    padding: 0 8px 0 20px !important;

    border: 1px solid rgba(255,255,255,.58) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.04) !important;
    overflow: visible !important;
  }

  .duva-home-header-v37.scrolled .duva-home-search-v37 {
    border-color: #d0d0d0 !important;
    background: #fff !important;
  }

  .duva-home-header-v37 .duva-home-search-v37 input,
  .duva-home-header-v37 .duva-home-search-v37.open input {
    order: 1 !important;
    display: block !important;
    position: static !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    padding: 0 10px 0 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: currentColor !important;
    font-size: 17px !important;
    opacity: 1 !important;
  }

  .duva-home-header-v37 .duva-home-search-v37 #searchButton {
    order: 2 !important;
    position: static !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    margin: 0 !important;
    transform: none !important;
  }

  .duva-home-header-v37 .duva-home-search-v37 .header-search-results {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    max-height: 540px !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
  }

  .duva-home-header-v37 #favoritesButton,
  .duva-home-header-v37 #cartButton {
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

/* ==========================================================
   V37 — DRAWER TOP SAFETY
   Favorites heading/close control cannot be cut off.
   ========================================================== */
#favoritesDrawer {
  top: 0 !important;
  bottom: 0 !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 50000 !important;
}

#favoritesDrawer .drawer-header {
  flex: 0 0 auto !important;
  min-height: 0 !important;
  padding: 34px 24px 22px !important;
  margin: 0 !important;
  overflow: visible !important;
  background: #fff !important;
  border-bottom: 1px solid #ddd !important;
}

#favoritesDrawer .drawer-header h2 {
  margin: 0 !important;
  font-size: 34px !important;
  line-height: 1 !important;
}

#favoritesDrawer .drawer-header .drawer-close {
  top: auto !important;
  right: auto !important;
  position: static !important;
  align-self: flex-start !important;
}

#favoritesDrawer .drawer-content {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  padding: 0 24px 18px !important;
}

#favoritesDrawer .favorites-view-all {
  flex: 0 0 auto !important;
  margin: 12px 24px 24px !important;
}

.duva-global-favorites-drawer {
  top: 0 !important;
  bottom: 0 !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  z-index: 50000 !important;
}

.duva-global-favorites-drawer .duva-fav-drawer-head {
  flex: 0 0 auto !important;
  padding-top: 34px !important;
  overflow: visible !important;
}

/* Shopping Bag title is the full-cart-page link. */
.shopping-bag-title-link {
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

.shopping-bag-title-link:hover {
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
}


/* V38 shared header: DUVA is left of search, never inside it */
@media (min-width:721px){
  .duva-v38-header{
    position:sticky!important;top:0!important;z-index:60000!important;
    width:100%!important;height:94px!important;min-height:94px!important;
    padding:0 18px!important;box-sizing:border-box!important;
    display:flex!important;align-items:center!important;gap:10px!important;
    background:rgba(255,255,255,.985)!important;color:#111!important;
    border-bottom:1px solid #dedede!important;overflow:visible!important;
  }
  .duva-v38-home{
    position:absolute!important;top:34px!important;
    background:transparent!important;color:#fff!important;
    border-bottom-color:rgba(255,255,255,.3)!important;
  }
  .duva-v38-home.scrolled{
    position:fixed!important;top:0!important;background:rgba(255,255,255,.97)!important;
    color:#111!important;border-bottom-color:#dedede!important;
  }
  .duva-v38-header>.menu-button{
    position:static!important;flex:0 0 42px!important;width:42px!important;height:42px!important;
    margin:0!important;transform:none!important;
  }
  .duva-v38-header>.duva-v38-brand{
    position:static!important;left:auto!important;right:auto!important;top:auto!important;
    transform:none!important;flex:0 0 145px!important;width:145px!important;min-width:145px!important;
    max-width:145px!important;margin:0!important;display:inline-flex!important;align-items:center!important;
    gap:7px!important;color:currentColor!important;text-decoration:none!important;
  }
  .duva-v38-header>.duva-v38-brand .header-d-logo{
    width:48px!important;height:33px!important;flex:0 0 48px!important;margin:0!important;transform:none!important;
  }
  .duva-v38-header>.duva-v38-brand .header-uva{
    font-size:27px!important;line-height:1!important;white-space:nowrap!important;
    margin:0!important;transform:none!important;color:currentColor!important;
  }
  .duva-v38-header>.duva-v38-actions{
    position:static!important;flex:1 1 auto!important;width:auto!important;min-width:0!important;
    max-width:none!important;margin:0!important;display:flex!important;align-items:center!important;
    justify-content:flex-end!important;gap:8px!important;
  }
  .duva-v38-header .duva-v38-search{
    position:relative!important;flex:1 1 auto!important;width:auto!important;min-width:0!important;
    max-width:none!important;height:56px!important;display:flex!important;align-items:center!important;
    padding:0 8px 0 20px!important;border:1px solid #cfcfcf!important;border-radius:999px!important;
    background:#fff!important;color:#111!important;overflow:visible!important;
  }
  .duva-v38-home .duva-v38-search{
    border-color:rgba(255,255,255,.58)!important;background:rgba(255,255,255,.04)!important;color:#fff!important;
  }
  .duva-v38-home.scrolled .duva-v38-search{
    border-color:#cfcfcf!important;background:#fff!important;color:#111!important;
  }
  .duva-v38-header .duva-v38-search input,.duva-v38-header .duva-v38-search.open input{
    order:1!important;display:block!important;position:static!important;flex:1 1 auto!important;width:100%!important;
    min-width:0!important;height:54px!important;padding:0 10px 0 0!important;border:0!important;outline:0!important;
    background:transparent!important;color:currentColor!important;font-size:17px!important;opacity:1!important;
  }
  .duva-v38-header .duva-v38-search input::placeholder{color:currentColor!important;opacity:.66!important}
  .duva-v38-header .duva-v38-search #searchButton{
    order:2!important;position:static!important;flex:0 0 40px!important;width:40px!important;height:40px!important;
    margin:0!important;padding:8px!important;transform:none!important;color:currentColor!important;
  }
  .duva-v38-header .duva-v38-search .header-search-results{
    position:absolute!important;left:0!important;right:auto!important;top:calc(100% + 10px)!important;
    width:100%!important;min-width:100%!important;max-width:none!important;max-height:540px!important;
    overflow-y:auto!important;box-sizing:border-box!important;z-index:61000!important;
  }
  .duva-v38-header #favoritesButton,.duva-v38-header #cartButton{
    flex:0 0 42px!important;width:42px!important;height:42px!important;min-width:42px!important;
    position:relative!important;margin:0!important;
  }
}

/* full pages start below header; no clipped title */
.favorites-page .favorites-page-main,.cart-page .cart-page-main{
  padding-top:54px!important;
}
.favorites-page-heading{margin-top:0!important;padding-top:0!important}
.favorites-page-heading h1{line-height:1!important}

/* restore favorites recommendations */
.favorites-recommendations{margin-top:64px;padding-top:34px;border-top:1px solid #ddd}
.favorites-recommendations>h2{margin:5px 0 22px;font-size:clamp(28px,3vw,42px);line-height:1;letter-spacing:-.04em}
.favorites-recommendation-row{
  display:flex;gap:16px;overflow-x:auto;overflow-y:hidden;padding-bottom:14px;
  scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;
}
.favorites-rec-card{flex:0 0 190px;width:190px;scroll-snap-align:start}
.favorites-rec-card a{color:#111;text-decoration:none}
.favorites-rec-card img{display:block;width:190px;height:225px;object-fit:cover;background:#f3f3f3}
.favorites-rec-card h3{margin:9px 0 3px;font-size:14px;line-height:1.2}
.favorites-rec-card p{margin:0 0 8px;font-size:13px}
.favorites-rec-card button{
  width:100%;padding:10px;border:1px solid #000;background:#000;color:#fff;
  font-size:9px;font-weight:800;letter-spacing:.08em;cursor:pointer;
}

/* favorites drawer top cannot clip */
#favoritesDrawer,.duva-global-favorites-drawer{padding-top:0!important;overflow:hidden!important}
#favoritesDrawer .drawer-header,.duva-global-favorites-drawer .duva-fav-drawer-head{
  padding-top:30px!important;min-height:96px!important;box-sizing:border-box!important;
}


/* ==========================================================
   V39 — FINAL SHARED HEADER OVERRIDE
   This selector intentionally includes #siteHeader + .duva-v39-header
   so it outranks the older #siteHeader > .duva-wordmark rules.
   ========================================================== */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

@media (min-width: 721px) {
  #siteHeader.duva-v39-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 94px !important;
    min-height: 94px !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    background: rgba(255,255,255,.985) !important;
    color: #111 !important;
    border-bottom: 1px solid #dedede !important;
    overflow: visible !important;
    transform: none !important;
    z-index: 65000 !important;
  }

  /* Home keeps the dark/transparent hero header, but same geometry. */
  #siteHeader.duva-v39-header.duva-v38-home {
    position: absolute !important;
    top: 34px !important;
    background: transparent !important;
    color: #fff !important;
    border-bottom-color: rgba(255,255,255,.3) !important;
  }

  #siteHeader.duva-v39-header.duva-v38-home.scrolled {
    position: fixed !important;
    top: 0 !important;
    background: rgba(255,255,255,.97) !important;
    color: #111 !important;
    border-bottom-color: #dedede !important;
  }

  #siteHeader.duva-v39-header > .menu-button {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
  }

  /* DUVA IS A REAL FLEX ITEM TO THE LEFT OF SEARCH. */
  #siteHeader.duva-v39-header > .duva-wordmark.duva-v38-brand {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;

    flex: 0 0 145px !important;
    width: 145px !important;
    min-width: 145px !important;
    max-width: 145px !important;
    height: auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;

    margin: 0 !important;
    padding: 0 !important;
    color: currentColor !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: auto !important;
  }

  #siteHeader.duva-v39-header > .duva-wordmark.duva-v38-brand .header-d-logo {
    display: block !important;
    position: static !important;
    width: 48px !important;
    height: 33px !important;
    min-width: 48px !important;
    flex: 0 0 48px !important;
    margin: 0 !important;
    transform: none !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #siteHeader.duva-v39-header > .duva-wordmark.duva-v38-brand .header-uva {
    display: block !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    color: currentColor !important;
    font-size: 27px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -.04em !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #siteHeader.duva-v39-header > .header-actions.duva-v38-actions {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;

    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #siteHeader.duva-v39-header .header-search.duva-v38-search {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 56px !important;
    min-height: 56px !important;

    display: flex !important;
    align-items: center !important;

    margin: 0 !important;
    padding: 0 8px 0 20px !important;
    box-sizing: border-box !important;

    border: 1px solid #cfcfcf !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #111 !important;
    overflow: visible !important;
  }

  #siteHeader.duva-v39-header.duva-v38-home .header-search.duva-v38-search {
    border-color: rgba(255,255,255,.58) !important;
    background: rgba(255,255,255,.04) !important;
    color: #fff !important;
  }

  #siteHeader.duva-v39-header.duva-v38-home.scrolled .header-search.duva-v38-search {
    border-color: #cfcfcf !important;
    background: #fff !important;
    color: #111 !important;
  }

  #siteHeader.duva-v39-header .header-search.duva-v38-search input,
  #siteHeader.duva-v39-header .header-search.duva-v38-search.open input {
    display: block !important;
    position: static !important;
    order: 1 !important;

    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 54px !important;

    margin: 0 !important;
    padding: 0 10px 0 0 !important;

    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: currentColor !important;
    font-size: 17px !important;
    opacity: 1 !important;
  }

  #siteHeader.duva-v39-header .header-search.duva-v38-search #searchButton {
    display: grid !important;
    place-items: center !important;
    position: static !important;
    order: 2 !important;

    flex: 0 0 40px !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;

    margin: 0 !important;
    padding: 8px !important;
    transform: none !important;
    color: currentColor !important;
  }

  #siteHeader.duva-v39-header .header-search.duva-v38-search .header-search-results {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(100% + 10px) !important;

    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    max-height: 540px !important;

    box-sizing: border-box !important;
    overflow-y: auto !important;
    z-index: 66000 !important;
  }

  #siteHeader.duva-v39-header #favoritesButton,
  #siteHeader.duva-v39-header #cartButton {
    position: relative !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Keep all full-page content inside the viewport and below the header. */
.favorites-page .favorites-page-main,
.cart-page .cart-page-main {
  width: 100% !important;
  max-width: 1400px !important;
  box-sizing: border-box !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 44px !important;
}

/* FAVORITES: no giant empty gap before recommendations. */
.favorites-page .favorites-page-grid {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.favorites-page .favorites-page-empty {
  padding: 28px 0 32px !important;
  min-height: 0 !important;
}

.favorites-page .favorites-page-empty h2 {
  margin-top: 0 !important;
}

.favorites-page .duva-v39-favorites-recs,
.favorites-page .favorites-recommendations {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  margin: 26px 0 0 !important;
  padding: 28px 0 8px !important;
  border-top: 1px solid #ddd !important;
}

.favorites-page .favorites-recommendations > .eyebrow {
  display: block !important;
  margin: 0 0 7px !important;
}

.favorites-page .favorites-recommendations > h2 {
  display: block !important;
  margin: 0 0 20px !important;
}

.favorites-page .favorites-recommendation-row {
  display: flex !important;
  min-height: 300px !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 0 0 14px !important;
}

/* Stop the Favorites heading from being clipped off the left/top. */
.favorites-page .favorites-page-heading {
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 0 30px !important;
  padding: 0 0 28px !important;
  overflow: visible !important;
}

.favorites-page .favorites-page-heading h1 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: .98 !important;
  overflow: visible !important;
}

/* Drawer top safety. */
#favoritesDrawer,
.duva-global-favorites-drawer {
  top: 0 !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
}

#favoritesDrawer .drawer-header,
.duva-global-favorites-drawer .duva-fav-drawer-head {
  padding-top: 34px !important;
  min-height: 104px !important;
  overflow: visible !important;
}


/* ==========================================================
   V40 — CLICKABLE HEADER ICONS + DRAWERS ABOVE HEADER
   ========================================================== */

/* Search stays behind the heart/bag click targets. */
#siteHeader .header-search {
  z-index: 1 !important;
}

#siteHeader #favoritesButton,
#siteHeader #cartButton {
  position: relative !important;
  z-index: 20 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  isolation: isolate !important;
}

/* An empty/hidden search result panel must never steal clicks. */
#headerSearchResults:empty,
#productHeaderSearchResults:empty,
#cartHeaderSearchResults:empty {
  display: none !important;
  pointer-events: none !important;
}

#headerSearchResults,
#productHeaderSearchResults,
#cartHeaderSearchResults {
  pointer-events: auto;
}

/* Overlay is above the website/header but BELOW the drawers. */
#pageOverlay.page-overlay {
  z-index: 199900 !important;
}

/* The actual side drawers must be the top UI layer. */
#cartDrawer.drawer,
#favoritesDrawer.drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  z-index: 200000 !important;
  height: 100dvh !important;
  max-height: 100dvh !important;

  background: #fff !important;
  color: #111 !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

/* Header content can never bleed visually through a drawer. */
#cartDrawer::before,
#favoritesDrawer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: #fff !important;
}

/* Clean drawer top area. */
#cartDrawer .drawer-header,
#favoritesDrawer .drawer-header {
  position: relative !important;
  z-index: 2 !important;
  flex: 0 0 auto !important;

  width: 100% !important;
  box-sizing: border-box !important;
  padding: 30px 24px 22px !important;
  margin: 0 !important;

  background: #fff !important;
  border-bottom: 1px solid #ddd !important;
  overflow: visible !important;
}

#cartDrawer .drawer-header h2,
#favoritesDrawer .drawer-header h2 {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  line-height: .95 !important;
}

/* No random header lines/badges can appear over drawer titles. */
#cartDrawer .count-badge,
#favoritesDrawer .count-badge {
  display: none !important;
}

#cartDrawer .drawer-close,
#favoritesDrawer .drawer-close {
  position: relative !important;
  z-index: 3 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Drawer bodies stay scrollable below clean header. */
#cartDrawer .drawer-content,
#favoritesDrawer .drawer-content {
  position: relative !important;
  z-index: 2 !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  background: #fff !important;
}

#cartDrawer .drawer-footer,
#favoritesDrawer .favorites-view-all {
  position: relative !important;
  z-index: 2 !important;
  background: #fff !important;
}

/* Global Favorites drawer used on product/cart/favorites pages also above header. */
.duva-favorites-overlay {
  z-index: 199900 !important;
}

.duva-global-favorites-drawer {
  z-index: 200000 !important;
  background: #fff !important;
}


/* V41 — guarantee full DUVA mark on full pages */
#siteHeader .duva-wordmark .header-d-logo,
#siteHeader .duva-v38-brand .header-d-logo {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}


/* ==========================================================
   V42 — FAVORITES PAGE MATCHES SHOPPING BAG PAGE
   ========================================================== */

/* Same inner-page header geometry as Shopping Bag */
body.favorites-page .favorites-cart-style-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  height: 94px !important;
  min-height: 94px !important;
  padding: 0 28px !important;
  box-sizing: border-box !important;

  display: grid !important;
  grid-template-columns: 58px 220px minmax(0,1fr) !important;
  gap: 18px !important;
  align-items: center !important;

  background: #fff !important;
  color: #111 !important;
  border-bottom: 1px solid #dedede !important;
  overflow: visible !important;
}

/* Three bars are always visible */
body.favorites-page .favorites-cart-style-header .menu-button {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  position: static !important;
  grid-column: 1 !important;
  width: 44px !important;
  height: 44px !important;
  padding: 8px 3px !important;
  margin: 0 !important;
  color: #111 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.favorites-page .favorites-cart-style-header .menu-button span {
  display: block !important;
  width: 32px !important;
  height: 2px !important;
  margin: 4px 0 !important;
  background: #111 !important;
}

/* DUVA sits left of the search */
body.favorites-page .favorites-header-brand {
  position: static !important;
  grid-column: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-self: start !important;
  width: auto !important;
  margin: 0 !important;
  gap: 8px !important;
  transform: none !important;
  color: #111 !important;
  text-decoration: none !important;
}

body.favorites-page .favorites-header-brand .header-d-logo {
  display: block !important;
  width: 56px !important;
  height: 38px !important;
  object-fit: contain !important;
}

body.favorites-page .favorites-header-brand .header-uva {
  font-size: 31px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
}

/* Long search, same clean cart-page look */
body.favorites-page .favorites-header-actions {
  grid-column: 3 !important;
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 1fr) 46px 46px !important;
  gap: 10px !important;
  align-items: center !important;
}

body.favorites-page .favorites-header-search {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: 56px !important;
  padding: 0 8px 0 20px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 999px !important;
  background: #fff !important;
}

body.favorites-page .favorites-header-search input {
  display: block !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 54px !important;
  padding: 0 10px 0 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 17px !important;
  opacity: 1 !important;
}

body.favorites-page .favorites-header-search #searchButton {
  position: static !important;
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
  padding: 8px !important;
  transform: none !important;
}

/* Favorites page main area now mirrors cart page */
body.favorites-page .favorites-page-main {
  max-width: 1460px !important;
  margin: 0 auto !important;
  padding: 62px 46px 90px !important;
  box-sizing: border-box !important;
}

body.favorites-page .favorites-page-heading {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: end !important;
  border-bottom: 1px solid #d8d8d8 !important;
  padding: 0 0 30px !important;
  margin: 0 0 34px !important;
  overflow: visible !important;
}

body.favorites-page .favorites-page-heading .eyebrow {
  grid-column: 1 / -1 !important;
  margin: 0 0 8px !important;
}

body.favorites-page .favorites-page-heading h1 {
  margin: 0 !important;
  font-size: clamp(50px, 7vw, 105px) !important;
  letter-spacing: -.065em !important;
  line-height: .9 !important;
}

body.favorites-page .favorites-page-heading > a {
  color: #111 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-decoration: none !important;
  border-bottom: 1px solid #111 !important;
  padding-bottom: 3px !important;
  white-space: nowrap !important;
}

/* Recommendations same rhythm as cart recommendations */
body.favorites-page .favorites-recommendations {
  border-top: 1px solid #dedede !important;
  margin-top: 65px !important;
  padding-top: 46px !important;
}

body.favorites-page .favorites-recommendations h2 {
  margin: 5px 0 28px !important;
  font-size: clamp(30px, 4vw, 54px) !important;
  letter-spacing: -.04em !important;
}

/* Menu opens like cart page but DOES NOT darken the rest of the website */
body.favorites-page .favorites-mobile-menu {
  z-index: 5000 !important;
  background: #fff !important;
  color: #111 !important;
}

body.favorites-page::after {
  display: none !important;
}

@media (max-width: 900px) {
  body.favorites-page .favorites-cart-style-header {
    grid-template-columns: 46px 1fr auto !important;
    height: 76px !important;
    min-height: 76px !important;
    padding: 0 14px !important;
    gap: 8px !important;
  }

  body.favorites-page .favorites-header-brand {
    justify-self: center !important;
  }

  body.favorites-page .favorites-header-actions {
    grid-template-columns: 44px 44px !important;
    width: auto !important;
  }

  body.favorites-page .favorites-header-search {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 82px !important;
    display: none !important;
  }

  body.favorites-page .favorites-page-main {
    padding: 38px 18px 70px !important;
  }

  body.favorites-page .favorites-page-heading {
    display: block !important;
  }

  body.favorites-page .favorites-page-heading h1 {
    margin-bottom: 20px !important;
  }
}


/* ==========================================================
   V44 — FAVORITES PAGE = SHOPPING BAG VISUAL SYSTEM
   ========================================================== */
html, body.favorites-page {
  background: #ffffff !important;
}

body.favorites-page {
  margin: 0 !important;
  overflow-x: hidden !important;
}

/* Exact cart-style header layout */
body.favorites-page #siteHeader {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 58px 220px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: center !important;
  width: 100% !important;
  height: 94px !important;
  min-height: 94px !important;
  padding: 0 28px !important;
  background: #ffffff !important;
  color: #111111 !important;
  border-bottom: 1px solid #dedede !important;
  overflow: visible !important;
}

body.favorites-page #siteHeader .menu-button {
  grid-column: 1 !important;
  position: static !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  padding: 8px 3px !important;
  margin: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.favorites-page #siteHeader .menu-button span {
  display: block !important;
  width: 32px !important;
  height: 2px !important;
  margin: 4px 0 !important;
  background: #111 !important;
}

body.favorites-page #siteHeader .duva-wordmark {
  grid-column: 2 !important;
  position: static !important;
  transform: none !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  margin: 0 !important;
  color: #111 !important;
  text-decoration: none !important;
}

body.favorites-page #siteHeader .header-d-logo {
  display: block !important;
  width: 56px !important;
  height: 38px !important;
  object-fit: contain !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.favorites-page #siteHeader .header-uva {
  display: inline !important;
  font-size: 31px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
}

body.favorites-page #siteHeader .header-actions {
  grid-column: 3 !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 1fr) 46px 46px !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.favorites-page #siteHeader .header-search {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  height: 56px !important;
  padding: 0 8px 0 20px !important;
  box-sizing: border-box !important;
  background: #fff !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 999px !important;
  overflow: visible !important;
}

body.favorites-page #siteHeader .header-search input {
  display: block !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 54px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 17px !important;
}

body.favorites-page #siteHeader .header-search-results {
  z-index: 7000 !important;
}

/* Main page is pure white and starts BELOW header, never under it */
body.favorites-page .favorites-page-main {
  position: relative !important;
  z-index: 1 !important;
  max-width: 1460px !important;
  margin: 0 auto !important;
  padding: 62px 46px 90px !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  overflow: visible !important;
}

body.favorites-page .favorites-page-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 24px !important;
  padding: 0 0 30px !important;
  margin: 0 0 34px !important;
  border-bottom: 1px solid #d8d8d8 !important;
  background: #fff !important;
  overflow: visible !important;
}

body.favorites-page .favorites-page-heading .eyebrow {
  grid-column: 1 / -1 !important;
  margin: 0 0 8px !important;
}

body.favorites-page .favorites-page-heading h1 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(50px, 7vw, 105px) !important;
  line-height: .9 !important;
  letter-spacing: -.065em !important;
  overflow: visible !important;
}

body.favorites-page .favorites-page-heading > a {
  align-self: end !important;
  margin-bottom: 4px !important;
  color: #111 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-decoration: none !important;
  border-bottom: 1px solid #111 !important;
  padding-bottom: 3px !important;
  white-space: nowrap !important;
}

/* Favorites items now use the SAME row proportions as cart items */
body.favorites-page .favorites-page-grid {
  display: block !important;
  width: 100% !important;
  background: #fff !important;
}

body.favorites-page .favorite-page-card {
  display: grid !important;
  grid-template-columns: 190px minmax(0, 1fr) auto !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
  padding: 0 0 28px !important;
  margin: 0 0 28px !important;
  border: 0 !important;
  border-bottom: 1px solid #dedede !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body.favorites-page .favorite-page-image {
  display: block !important;
  width: 190px !important;
}

body.favorites-page .favorite-page-image img {
  display: block !important;
  width: 190px !important;
  height: 235px !important;
  object-fit: cover !important;
  background: #f4f4f4 !important;
}

body.favorites-page .favorite-page-copy {
  min-width: 0 !important;
  padding: 0 !important;
  background: #fff !important;
}

body.favorites-page .favorite-page-copy > a {
  color: #111 !important;
  text-decoration: none !important;
}

body.favorites-page .favorite-page-copy h2 {
  margin: 0 0 9px !important;
  font-size: 23px !important;
  line-height: 1.15 !important;
}

body.favorites-page .favorite-page-price {
  margin: 0 0 18px !important;
  font-size: 18px !important;
  color: #111 !important;
}

body.favorites-page .favorite-options {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 0 0 16px !important;
}

body.favorites-page .favorite-page-copy label {
  display: grid !important;
  gap: 5px !important;
  margin: 0 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
}

body.favorites-page .favorite-page-copy select {
  width: 150px !important;
  height: 40px !important;
  padding: 0 34px 0 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;
  font: inherit !important;
  font-size: 12px !important;
}

body.favorites-page .favorite-page-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 18px !important;
}

body.favorites-page .favorite-page-add {
  width: auto !important;
  min-width: 190px !important;
  margin: 0 !important;
  padding: 14px 20px !important;
  border: 1px solid #111 !important;
  background: #080808 !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  cursor: pointer !important;
}

body.favorites-page .favorite-page-remove {
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 2px !important;
  border: 0 !important;
  border-bottom: 1px solid #111 !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  cursor: pointer !important;
}

body.favorites-page .favorite-page-card > strong {
  justify-self: end !important;
  font-size: 18px !important;
  white-space: nowrap !important;
}

/* Recommendations remain visible and compact */
body.favorites-page .favorites-recommendations {
  display: block !important;
  background: #fff !important;
  border-top: 1px solid #dedede !important;
  margin-top: 65px !important;
  padding-top: 46px !important;
}

body.favorites-page .favorites-recommendation-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

body.favorites-page .favorites-rec-card {
  min-width: 0 !important;
  background: #fff !important;
}

body.favorites-page .favorites-rec-card a {
  color: #111 !important;
  text-decoration: none !important;
}

body.favorites-page .favorites-rec-card img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  background: #f4f4f4 !important;
}

body.favorites-page .favorites-rec-card h3 {
  margin: 12px 0 4px !important;
  font-size: 15px !important;
}

body.favorites-page .favorites-rec-card p {
  margin: 0 0 12px !important;
  color: #555 !important;
}

body.favorites-page .favorites-rec-card button {
  width: 100% !important;
  border: 1px solid #111 !important;
  background: #111 !important;
  color: #fff !important;
  padding: 12px !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
}

/* White menu, no gray panel */
body.favorites-page #favoritesMobileMenu {
  background: #ffffff !important;
  color: #111111 !important;
  opacity: 1 !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Do not create a dark page tint when hamburger menu opens */
body.favorites-page::before,
body.favorites-page::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 980px) {
  body.favorites-page #siteHeader {
    grid-template-columns: 48px 170px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 0 20px !important;
  }
  body.favorites-page #siteHeader .header-actions {
    grid-template-columns: minmax(220px, 1fr) 44px 44px !important;
  }
  body.favorites-page .favorites-recommendation-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body.favorites-page #siteHeader {
    grid-template-columns: 46px 1fr auto !important;
    height: 76px !important;
    min-height: 76px !important;
    padding: 0 14px !important;
    gap: 8px !important;
  }
  body.favorites-page #siteHeader .duva-wordmark {
    justify-self: center !important;
  }
  body.favorites-page #siteHeader .header-actions {
    grid-template-columns: 44px 44px !important;
    width: auto !important;
  }
  body.favorites-page #siteHeader .header-search {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 82px !important;
    width: auto !important;
    display: none !important;
    z-index: 5000 !important;
  }
  body.favorites-page #siteHeader .header-search.open {
    display: flex !important;
  }
  body.favorites-page .favorites-page-main {
    padding: 38px 18px 70px !important;
  }
  body.favorites-page .favorites-page-heading {
    display: block !important;
  }
  body.favorites-page .favorites-page-heading h1 {
    margin-bottom: 20px !important;
  }
  body.favorites-page .favorite-page-card {
    grid-template-columns: 110px minmax(0, 1fr) !important;
    gap: 16px !important;
  }
  body.favorites-page .favorite-page-image,
  body.favorites-page .favorite-page-image img {
    width: 110px !important;
  }
  body.favorites-page .favorite-page-image img {
    height: 140px !important;
  }
  body.favorites-page .favorite-page-card > strong {
    grid-column: 2 !important;
    justify-self: start !important;
  }
}

/* ============================================================
   V47 — FINAL NAVIGATION STACKING FIX
   Keep the dim page overlay below every side/mobile panel.
   A late legacy rule previously put #pageOverlay at 199900 while
   .mobile-menu remained at 50000, making visible menu links
   (including About Us) physically unclickable.
   ============================================================ */
#pageOverlay.page-overlay {
  z-index: 199900 !important;
}
.mobile-menu,
.product-mobile-menu {
  position: fixed !important;
  z-index: 200000 !important;
  pointer-events: auto !important;
}
.mobile-menu.open,
.product-mobile-menu.open {
  pointer-events: auto !important;
}
/* Shared About-page cart/favorites drawers stay above their overlay. */
.duva-shell-overlay.page-overlay {
  z-index: 199900 !important;
}
.duva-shell-drawer {
  z-index: 200000 !important;
  pointer-events: auto !important;
}

/* ============================================================
   FAVORITES RECOMMENDATIONS — MATCH SHOPPING BAG
   Scope intentionally limited to .favorites-recommendations only.
   ============================================================ */
.favorites-recommendations {
  border-top: 1px solid #dedede !important;
  margin-top: 65px !important;
  padding-top: 46px !important;
}

.favorites-recommendations > h2 {
  margin: 5px 0 28px !important;
  font-size: clamp(30px,4vw,54px) !important;
  letter-spacing: -.04em !important;
}

.favorites-recommendation-row {
  display: grid !important;
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  gap: 18px !important;
  overflow: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
}

.favorites-rec-card {
  width: auto !important;
  min-width: 0 !important;
  flex: initial !important;
}

.favorites-rec-card > a {
  display: block !important;
  color: #111 !important;
  text-decoration: none !important;
}

.favorites-rec-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  background: #f4f4f4 !important;
}

.favorites-rec-card h3 {
  display: inline-block !important;
  margin: 12px 0 4px !important;
  padding: 1px 3px !important;
  font-size: 15px !important;
  line-height: normal !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: background-color .16s ease !important;
}

.favorites-rec-card > a:hover h3,
.favorites-rec-card > a:focus-visible h3 {
  text-decoration: none !important;
  background: #e9e9e9 !important;
}

.favorites-rec-card p {
  margin: 0 0 12px !important;
  color: #555 !important;
  font-size: inherit !important;
}

.favorites-rec-card button {
  width: 100% !important;
  border: 1px solid #111 !important;
  background: #fff !important;
  color: #111 !important;
  padding: 12px !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  cursor: pointer !important;
}

.favorites-rec-card button:hover,
.favorites-rec-card button:focus-visible {
  background: #111 !important;
  color: #fff !important;
}

@media (max-width: 980px) {
  .favorites-recommendation-row {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width: 560px) {
  .favorites-recommendation-row {
    grid-template-columns: 1fr !important;
  }
}
/* Customer cancellation / refund request */
.tracking-request-state,.tracking-cancel-box{margin:24px 0;padding:20px;border:1px solid var(--line)}.tracking-request-state strong,.tracking-cancel-box h3{display:block;margin:0 0 8px;font-size:15px;letter-spacing:.06em}.tracking-request-state p,.tracking-cancel-box p{margin:0;color:#666}.tracking-cancel-box textarea{width:100%;min-height:92px;box-sizing:border-box;margin:16px 0 12px;padding:13px;border:1px solid var(--line);background:#fff;font:inherit;resize:vertical}.tracking-cancel-box .button{width:auto}.tracking-cancel-box .tracking-status{margin:8px 0 0;padding:0}

/* 2026-08-20 unified checkout: viewport-safe scrolling */
#checkoutModal,#cartCheckoutModal{overflow-y:auto;overscroll-behavior:contain;align-items:start!important;padding:20px!important}
#checkoutModal .checkout-modal-card,#cartCheckoutModal .cart-checkout-modal-card{width:min(720px,calc(100vw - 40px));max-width:720px;max-height:none!important;margin:auto;overflow:visible!important;padding:48px;box-sizing:border-box}
#checkoutModal .drawer-close,#cartCheckoutModal .drawer-close{position:sticky!important;top:0!important;float:right;z-index:4;background:#fff}
.duva-shipping-form{display:grid;gap:12px;margin-top:24px}.duva-shipping-form input,.duva-shipping-form select{width:100%;box-sizing:border-box;margin:0!important;padding:16px 18px!important;border:1px solid #cfcfcf!important;border-radius:0;background:#fff;color:#111;font:inherit}.shipping-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}.shipping-test-badge{display:inline-block;border:1px solid #111;padding:7px 9px;margin:4px 0 12px;font-size:10px;font-weight:700;letter-spacing:.12em}.shipping-rate-help{font-size:12px!important;line-height:1.55!important;color:#666!important;margin:0 0 12px!important}.shipping-rate-list{border-top:1px solid #ddd}.shipping-rate-option{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;padding:15px 4px;border-bottom:1px solid #ddd;cursor:pointer}.shipping-rate-option input{width:auto!important;margin:0!important;padding:0!important;accent-color:#111}.shipping-rate-option span{display:grid;gap:3px}.shipping-rate-option strong{font-size:13px}.shipping-rate-option small{font-size:11px;color:#777}.shipping-rate-option b{font-size:14px}
@media(max-width:620px){#checkoutModal,#cartCheckoutModal{padding:8px!important}#checkoutModal .checkout-modal-card,#cartCheckoutModal .cart-checkout-modal-card{width:calc(100vw - 16px);padding:34px 20px}.shipping-form-row{grid-template-columns:1fr}}

/* Checkout status semantics: progress/success is green; actual failures are red. */
.checkout-status.status-progress,.tracking-status.status-progress{color:#18743a!important}
.checkout-status.status-error,.tracking-status.status-error{color:#a51f1f!important}

.order-confirmation-status.status-progress{color:#18743a!important}.order-confirmation-status.status-error{color:#a51f1f!important}

/* Campaign hero photograph — replaces the temporary gradient/video fallback. */
.hero {
  background: #111 url("../images/campaign/campaign-hero-d127.jpg?v=20260828-hero-replacement") 50% 24% / cover no-repeat;
}

@media (max-width: 700px) {
  .hero {
    background-position: 50% 20%;
  }
}

/* =============================================================
   PRODUCT REVIEWS (product pages)
============================================================= */
.product-reviews {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px var(--gutter) 96px;
  border-top: 1px solid var(--line);
}
.reviews-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.reviews-heading h2 { margin: 4px 0 0; font-family: "Instrument Sans", sans-serif; font-size: 28px; }
.reviews-summary { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.reviews-average-stars { color: var(--black); font-size: 18px; letter-spacing: 1px; }
.reviews-average-number { font-weight: 700; }
.reviews-average-count { color: var(--mid-gray); }
.reviews-empty-summary { margin: 0; color: var(--mid-gray); font-size: 13px; }

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.reviews-loading, .reviews-empty, .reviews-error { color: var(--mid-gray); font-size: 13px; }
.review-card {
  border: 1px solid var(--line);
  background: var(--off-white);
  padding: 20px;
  border-radius: 4px;
}
.review-card-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 8px; }
.review-card-stars { color: var(--black); letter-spacing: 1px; }
.review-card-name { font-weight: 700; font-size: 13px; }
.review-card-date { color: var(--mid-gray); font-size: 12px; margin-left: auto; }
.review-card-title { margin: 0 0 6px; font-size: 14px; font-family: "Instrument Sans", sans-serif; }
.review-card-body { margin: 0; font-size: 13px; line-height: 1.6; color: #2c2c2c; }

.review-form-wrap { max-width: 560px; }
.review-form-wrap h3 { font-family: "Instrument Sans", sans-serif; font-size: 20px; margin: 0 0 16px; }
.review-form { display: flex; flex-direction: column; gap: 14px; }
.review-form-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  border-radius: 2px;
}
.review-form-row input[type="text"] { flex: 1 1 200px; }
.review-form textarea { min-height: 110px; resize: vertical; }
.review-star-input { display: flex; gap: 4px; }
.review-star-input button {
  border: none;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: var(--line);
  cursor: pointer;
  padding: 2px;
}
.review-star-input button.is-filled { color: var(--black); }
.review-form-status { margin: 0; font-size: 13px; color: var(--mid-gray); min-height: 16px; }

@media (max-width: 700px) {
  .product-reviews { padding: 56px 20px 72px; }
  .review-card-date { margin-left: 0; }
}

/* =============================================================
   HOMEPAGE CUSTOMER REVIEWS SECTION
============================================================= */
.home-reviews-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px var(--gutter);
  border-top: 1px solid var(--line);
}
.home-reviews-heading { text-align: center; margin-bottom: 40px; }
.home-reviews-heading h2 { margin: 6px 0 0; font-family: "Instrument Sans", sans-serif; font-size: 32px; }
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.home-review-card {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 4px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
}
.home-review-stars { color: var(--black); letter-spacing: 1px; font-size: 16px; margin-bottom: 10px; }
.home-review-title { margin: 0 0 8px; font-size: 15px; font-family: "Instrument Sans", sans-serif; }
.home-review-body { margin: 0 0 16px; font-size: 13px; line-height: 1.6; color: #2c2c2c; flex-grow: 1; }
.home-review-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 12px; }
.home-review-name { font-weight: 700; }
.home-review-product { color: var(--mid-gray); text-decoration: underline; white-space: nowrap; }
.home-review-product:hover { color: var(--black); }

@media (max-width: 700px) {
  .home-reviews-section { padding: 64px 20px; }
}

/* Review ownership and optional customer photos */
.review-login-required{margin:0 0 18px;padding:14px 16px;border:1px solid var(--line);font-size:13px}.review-login-required a{color:inherit;font-weight:700;text-decoration:underline}.review-form:not(.review-form-locked) .review-login-required{display:none}.review-form-locked{opacity:.72}.review-photo-field{margin:18px 0}.review-photo-field>label{display:flex;justify-content:space-between;gap:12px;margin-bottom:8px;font-size:13px;font-weight:700}.review-photo-field>label span{color:var(--mid-gray);font-size:11px;font-weight:400}.review-photo-field input[type=file]{width:100%;padding:12px;border:1px solid var(--line);box-sizing:border-box;background:#fff}.review-photo-preview{position:relative;width:min(280px,100%);margin-top:12px}.review-photo-preview img{display:block;width:100%;max-height:320px;object-fit:cover}.review-photo-preview button{position:absolute;right:8px;bottom:8px;border:0;background:#fff;padding:8px 10px;font-weight:700;cursor:pointer}.review-card-photo{display:block;width:min(360px,100%);max-height:430px;object-fit:cover}.review-photo-open{display:block;margin:18px 0 0;padding:0;border:0;background:none;cursor:zoom-in}.review-owner-actions{display:flex;gap:18px;margin-top:18px}.review-owner-actions button{border:0;border-bottom:1px solid currentColor;padding:2px 0;background:none;font:inherit;font-size:12px;font-weight:700;cursor:pointer}.review-owner-actions button:last-child{color:#a51f1f}
@media(max-width:700px){.review-photo-field>label{display:grid}.review-card-photo{width:100%}}

/* Keep every product size chart fully visible without browser zooming or page scrolling. */
#sizeGuideModal{padding:12px;overflow:hidden}
#sizeGuideModal .size-guide-modal-card{box-sizing:border-box;width:min(1040px,calc(100vw - 24px));max-width:none;max-height:calc(100dvh - 24px);overflow:hidden;padding:clamp(24px,3vh,34px) clamp(18px,3vw,40px)}
#sizeGuideModal .size-guide-modal-card>.eyebrow{margin:0 0 8px;font-size:10px}
#sizeGuideModal .size-guide-modal-card>h2{max-width:none;margin:0 44px 8px 0;font-size:clamp(22px,3vw,34px);line-height:1.02}
#sizeGuideModal .size-guide-modal-card>h3{margin:8px 0 4px;font-size:14px}
#sizeGuideModal .size-guide-modal-card>.size-guide-note{margin:6px 0;font-size:11px;line-height:1.35}
#sizeGuideModal .size-guide-table-wrap{margin:10px 0 8px;overflow:visible}
#sizeGuideModal .size-guide-table{table-layout:auto}
#sizeGuideModal .size-guide-table th,#sizeGuideModal .size-guide-table td{padding:clamp(5px,1vh,9px) clamp(4px,1vw,10px);font-size:clamp(9px,1.15vw,12px);line-height:1.2;vertical-align:middle}
#sizeGuideModal .size-guide-table th{white-space:nowrap}
@media(max-width:600px){
  #sizeGuideModal{padding:6px}
  #sizeGuideModal .size-guide-modal-card{width:calc(100vw - 12px);max-height:calc(100dvh - 12px);padding:22px 10px 12px}
  #sizeGuideModal .size-guide-modal-card>.eyebrow{display:none}
  #sizeGuideModal .size-guide-modal-card>h2{margin-bottom:4px;font-size:19px}
  #sizeGuideModal .size-guide-modal-card>.size-guide-note{font-size:9px;line-height:1.2}
  #sizeGuideModal .size-guide-table-wrap{margin:6px 0 4px}
  #sizeGuideModal .size-guide-table th,#sizeGuideModal .size-guide-table td{padding:5px 2px;font-size:8px;overflow-wrap:anywhere}
  #sizeGuideModal .size-guide-table th{white-space:normal}
}
