@import url("https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&display=swap");

:root {
  --cream: #f4f4f2;
  --paper: #ffffff;
  --ink: #050505;
  --muted: #595959;
  --clay: #111111;
  --olive: #1b1b1b;
  --sage: #e5e5e5;
  --blush: #f1f1f1;
  --line: rgba(0, 0, 0, 0.22);
  --soft-line: rgba(255, 255, 255, 0.3);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

.brand {
  font-family: "Syne", "Arial Black", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.94);
  backdrop-filter: blur(18px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--ink);
}

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

.icon-button,
.cart-toggle,
.carousel-control {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.icon-button,
.cart-toggle {
  min-height: 42px;
  border-radius: 999px;
}

.icon-button {
  width: 42px;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  font-weight: 700;
}

#cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
}

.cart-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(18px, 4vw, 54px);
  display: none;
  width: min(360px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-panel.open {
  display: block;
}

.cart-header,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-header {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-header button,
.remove-item {
  border: 0;
  background: transparent;
  color: var(--clay);
  cursor: pointer;
  font-weight: 700;
}

.cart-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item small,
.cart-empty {
  color: var(--muted);
}

.hero,
.category-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
  min-height: inherit;
}

.carousel-inner {
  display: flex;
  transition: transform 0.55s ease;
}

.carousel-item {
  flex: 0 0 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.carousel-control:hover {
  background: var(--ink);
  color: var(--cream);
}

.carousel-control.prev {
  left: 18px;
}

.carousel-control.next {
  right: 18px;
}

.hero-copy,
.category-copy {
  position: absolute;
  left: clamp(24px, 7vw, 92px);
  bottom: clamp(36px, 8vw, 92px);
  z-index: 3;
  max-width: 640px;
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.category-copy .eyebrow {
  color: #f4c7a1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Syne", "Arial Black", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.hero-copy p,
.category-copy p {
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.button,
.signup-form button,
.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.signup-form button,
.add-to-cart {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.button.secondary {
  border: 1px solid rgba(247, 242, 232, 0.7);
  color: var(--cream);
}

.button:hover,
.add-to-cart:hover,
.signup-form button:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.feature-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 86px;
  padding: 18px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 700;
}

.shop-intro,
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 72px clamp(20px, 5vw, 72px) 28px;
}

.shop-intro > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.7;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px) 76px;
}

.product {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(16, 24, 32, 0.08);
}

.product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #eee1d2;
  transition: transform 0.35s ease;
}

.product:hover img {
  transform: scale(1.035);
}

.product-info {
  padding: 18px;
}

.product h2 {
  margin-bottom: 8px;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.08rem;
}

.price {
  color: var(--muted);
  font-weight: 800;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.size {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  cursor: pointer;
  font-weight: 800;
}

.size:hover,
.size.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.add-to-cart {
  width: 100%;
  border-radius: 6px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(20px, 5vw, 72px) 28px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-badge.subtle {
  background: var(--olive);
}

.product-type {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-note {
  min-height: 54px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.style-edit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding: 72px clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.edit-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.edit-grid i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
}

.edit-grid h3 {
  margin-bottom: 8px;
}

.edit-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.promo {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 8px;
  background: var(--olive);
  color: var(--cream);
}

.promo .eyebrow {
  color: #f7d4b7;
}

.womens-promo {
  margin: 76px clamp(20px, 5vw, 72px);
}

.signup-form {
  display: flex;
  gap: 10px;
}

.signup-form input {
  width: min(320px, 54vw);
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.92);
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  padding: 44px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--cream);
}

.footer h3 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(247, 242, 232, 0.78);
  text-decoration: none;
}

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

.footer p {
  max-width: 300px;
  color: rgba(247, 242, 232, 0.7);
  line-height: 1.7;
}

.footer-brand {
  color: var(--cream) !important;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .feature-strip,
  .product-container,
  .footer,
  .style-edit,
  .edit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promo,
  .shop-intro,
  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero,
  .category-hero {
    min-height: 520px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .feature-strip,
  .product-container,
  .footer,
  .style-edit,
  .edit-grid {
    grid-template-columns: 1fr;
  }

  .product-note {
    min-height: auto;
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
  }

  .cart-toggle #total-price {
    display: none;
  }
}

/* Collection page refresh */
.announcement-bar,
.collection-announcement {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 6vw, 80px);
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .announcement-bar span:not(:first-child) {
    display: none;
  }
}

.collection-topper {
  padding: 54px clamp(20px, 5vw, 72px) 28px;
  text-align: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.collection-topper h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.collection-topper p:not(.breadcrumb) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.collection-campaign {
  position: relative;
  height: clamp(420px, 68vw, 780px);
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid #000;
  background: #111;
}

.collection-campaign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1);
}

.collection-campaign figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  text-transform: uppercase;
}

.collection-campaign figcaption span { font-size: .72rem; letter-spacing: .12em; }
.collection-campaign figcaption strong { font: 700 clamp(1.4rem, 4vw, 3.5rem)/1 "Syne", sans-serif; letter-spacing: -.05em; }

.breadcrumb {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px clamp(20px, 5vw, 72px);
  overflow-x: auto;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.collection-tabs a {
  flex: 0 0 auto;
  min-width: 88px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-tabs a:hover,
.collection-tabs a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.collection-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-toolbar button {
  width: max-content;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-toolbar button:last-child {
  justify-self: end;
}

.collection-control {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.collection-control select {
  min-height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid #000;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: 800 .82rem Helvetica, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.sort-control { justify-self: end; }
.product[hidden] { display: none; }

.collection-grid-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.collection-page .product {
  border-radius: 0;
  box-shadow: none;
}

.collection-page .product img {
  border-radius: 0;
}

.collection-page .product-info {
  padding: 14px 0 0;
}

.collection-page .product h2,
.collection-page .price,
.collection-page .product-type {
  padding: 0 4px;
}

.collection-page .size-options {
  padding: 0 4px;
}

.collection-page .add-to-cart {
  border-radius: 0;
}

.wishlist-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
  cursor: pointer;
}

.sale-price {
  color: var(--clay);
}

@media (max-width: 1000px) {
  .collection-grid-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .collection-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .collection-toolbar span {
    display: none;
  }

  .collection-toolbar button:last-child {
    justify-self: stretch;
  }

  .collection-control,
  .collection-control select { width: 100%; }
  .collection-control { align-items: stretch; flex-direction: column; }

  .collection-toolbar button {
    width: 100%;
  }

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

@media (max-width: 460px) {
  .collection-grid-products {
    grid-template-columns: 1fr;
  }
}

/* Polished shopping experience */
body.cart-open { overflow: hidden; }
body.cart-open .navbar { backdrop-filter: none; }
.cart-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.58); backdrop-filter: none; }
.cart-overlay[hidden] { display: none; }
.cart-panel { position: fixed; inset: 0 0 0 auto; z-index: 90; display: flex; width: min(470px, 100vw); height: 100dvh; padding: 0; border: 0; border-radius: 0; background: var(--paper); box-shadow: -20px 0 60px rgba(16,24,32,.2); transform: translateX(105%); transition: transform .3s ease; flex-direction: column; }
.cart-panel.open { display: flex; transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 1px solid var(--line); }
.cart-header strong { font: 700 1.8rem/1 Georgia,serif; }
.cart-kicker { margin: 0 0 6px; color: var(--clay); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.cart-close { width: 42px; height: 42px; border: 1px solid var(--line)!important; border-radius: 50%; color: var(--ink)!important; font-size: 1.7rem; line-height: 1; }
.shipping-message { padding: 16px 24px; background: var(--sage); color: var(--ink); font-size: .86rem; }
.shipping-track { height: 5px; margin-top: 10px; overflow: hidden; border-radius: 9px; background: rgba(16,24,32,.14); }
.shipping-track i { display: block; height: 100%; border-radius: inherit; background: var(--olive); transition: width .25s ease; }
.cart-items { flex: 1; overflow-y: auto; padding: 0 24px; }
.cart-line { display: grid; grid-template-columns: 82px 1fr auto; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-line > img { width: 82px; height: 104px; object-fit: cover; background: #eee1d2; }
.cart-line-info { display: flex; align-items: flex-start; flex-direction: column; gap: 5px; }
.cart-line-info small { color: var(--muted); }
.cart-size { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.cart-size select { min-width: 58px; height: 30px; padding: 0 7px; border: 1px solid #000; border-radius: 0; background: #fff; color: #000; cursor: pointer; font: inherit; }
.quantity-control { display: inline-grid; grid-template-columns: 34px 34px 34px; align-items: center; margin-top: 8px; border: 1px solid var(--line); text-align: center; }
.quantity-control button { height: 32px; border: 0; background: transparent; cursor: pointer; font-size: 1.1rem; }
.remove-item { align-self: start; padding: 0; font-size: .78rem; text-decoration: underline; }
.cart-footer { padding: 20px 24px 24px; border-top: 1px solid var(--line); background: var(--cream); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.1rem; }
.cart-footer > p { margin: 8px 0 16px; color: var(--muted); font-size: .8rem; }
.checkout-button { width: 100%; min-height: 50px; border: 0; background: var(--ink); color: var(--cream); cursor: pointer; font-weight: 900; }
.checkout-button:disabled { opacity: .45; cursor: not-allowed; }
.clear-cart { display: block; margin: 12px auto 0; border: 0; background: none; color: var(--clay); cursor: pointer; font-weight: 800; }
.cart-empty { display: grid; place-items: center; padding: 72px 10px; text-align: center; }
.cart-empty > span { font: 3rem Georgia,serif; }
.cart-empty strong { margin-top: 12px; font: 700 1.5rem Georgia,serif; color: var(--ink); }
.cart-empty p { max-width: 260px; margin: 10px auto 20px; }
.cart-empty a { width: min(260px,100%); margin: 5px 0; padding: 13px; border: 1px solid var(--ink); color: var(--ink); text-decoration: none; font-weight: 900; }
.cart-empty a:first-of-type { background: var(--ink); color: var(--cream); }

.product > img[role="button"] { cursor: zoom-in; }
.product > img[role="button"]:focus-visible { outline: 3px solid var(--clay); outline-offset: -3px; }
.wishlist-button.saved { background: var(--clay); color: white; }
.quick-view { width: min(900px, calc(100vw - 32px)); max-width: none; padding: 0; border: 0; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.quick-view::backdrop { background: rgba(0,0,0,.62); backdrop-filter: none; }
.quick-view-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 1.7rem; }
.quick-view-content { display: grid; grid-template-columns: 1fr 1fr; }
.quick-view-image img { width: 100%; height: min(680px, 78vh); object-fit: cover; background: #eee1d2; }
.quick-view-details { display: flex; justify-content: center; padding: clamp(32px,6vw,70px); flex-direction: column; }
.quick-view-details h2 { margin-bottom: 10px; font-size: clamp(2rem,4vw,3.5rem); }
.quick-view-price { font-weight: 900; }
.quick-view-copy { color: var(--muted); line-height: 1.7; }
.size-label { margin: 15px 0 9px; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.quick-sizes { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.quick-sizes button { min-height: 42px; border: 1px solid var(--line); background: var(--cream); cursor: pointer; font-weight: 900; }
.quick-sizes button.selected { background: var(--ink); color: var(--cream); }
.size-error { min-height: 18px; margin: 8px 0; color: var(--clay); font-size: .82rem; font-weight: 800; }
.quick-add { min-height: 50px; border: 0; background: var(--ink); color: var(--cream); cursor: pointer; font-weight: 900; }
.quick-view-details ul { padding-left: 20px; color: var(--muted); font-size: .82rem; line-height: 1.8; }

@media (max-width: 680px) {
  .quick-view { height: min(92dvh,760px); overflow-y: auto; }
  .quick-view-content { grid-template-columns: 1fr; }
  .quick-view-image img { height: 42vh; }
  .quick-view-details { padding: 28px 22px; }
  .cart-line { grid-template-columns: 70px 1fr auto; }
  .cart-line > img { width: 70px; height: 90px; }
}

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

/* Monochrome editorial direction */
.navbar { background: rgba(255,255,255,.96); border-color: #000; }
.nav-links a, .eyebrow, .product-type, .cart-kicker { letter-spacing: .1em; }
.announcement-bar, .collection-announcement { background: #000; color: #fff; }
.product img, .arrival-card img, .collection-card img, .hero-media-grid img, .sale-callout img, .quick-view-image img, .cart-line > img { filter: grayscale(1) contrast(1.08); }
.product, .collection-card, .arrival-card img, .sale-callout img, .promo, .cart-panel, .quick-view, .button, .add-to-cart, .signup-form input, .signup-form button, .size, .filter-pill, .collection-tabs a, .collection-toolbar button { border-radius: 0; }
.product { border-color: #000; box-shadow: none; }
.product-badge, .product-badge.subtle { background: #000; color: #fff; }
.wishlist-button { background: #fff; border-color: #000; }
.wishlist-button.saved { background: #000; color: #fff; }
.button.primary, .add-to-cart, .signup-form button, .checkout-button, .quick-add { background: #000; color: #fff; border-color: #000; text-transform: uppercase; letter-spacing: .08em; }
.button:hover, .add-to-cart:hover, .signup-form button:hover, .checkout-button:hover, .quick-add:hover { background: #fff; color: #000; border-color: #000; }
.button.secondary { border-color: #fff; }
.size:hover, .size.selected, .quick-sizes button.selected, .filter-pill:hover, .filter-pill.active, .collection-tabs a:hover, .collection-tabs a.active { background: #000; color: #fff; border-color: #000; }
.promo { background: #111; }
.footer { background: #000; }
.shipping-message { background: #eee; }
.shipping-track i { background: #000; }
.home-hero-copy h1, .collection-topper h1 { text-transform: uppercase; }
.collection-card span { font-family: "Syne", "Arial Black", sans-serif; font-weight: 700; letter-spacing: -.05em; text-transform: uppercase; }
.cart-header strong, .cart-empty strong { font-family: "Syne", "Arial Black", sans-serif; letter-spacing: -.04em; }
