/** Shopify CDN: Minification failed

Line 1819:0 Unexpected "}"
Line 1866:12 Expected identifier but found whitespace
Line 1866:13 Unexpected "940px"

**/
:root {
  --cream: #f8f4ee;
  --black: #111111;
  --beige: #efe7db;
  --sage: #aab3a1;
  --charcoal: #2d2d2d;
  --soft-pink: #e8c3c7;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.16);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

/* Her Volume mobile conversion header */
@media (max-width: 749px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 14px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .site-header__brand { grid-column: 1; grid-row: 1; max-width: 220px; }
  .site-header__actions { grid-column: 2; grid-row: 1; display: flex; gap: 12px; white-space: nowrap; }
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    width: 100%;
    overflow-x: auto;
    padding: 8px 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav { flex-direction: row !important; flex-wrap: nowrap !important; overflow-x: auto !important; gap: 16px !important; }
  .site-nav a:nth-child(n+5) { display: none !important; }
  .site-nav a { flex: 0 0 auto !important; width: auto !important; white-space: nowrap; }
}

:root {
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.page-width {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
}

.skip-to-content-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--black);
  color: var(--cream);
  clip: auto;
}

.announcement-bar {
  background: var(--black);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.announcement-bar__inner {
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 244, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}

.site-header__brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
}

.site-header__brand img {
  width: auto;
  height: clamp(48px, 7vw, 60px);
  max-width: 100%;
  object-fit: contain;
}

.site-nav,
.site-header__actions,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.site-header__actions a,
.nav-dropdown summary {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-header__actions a:hover,
.nav-dropdown summary:hover {
  color: var(--charcoal);
}

.site-nav a[href*="best-sellers"],
.site-nav a[href*="new-arrivals"],
.site-nav a[href*="limited-drops"] {
  text-underline-offset: 5px;
}

.site-nav {
  justify-content: center;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown summary::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.55em;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.18em) rotate(45deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown:not([open]) .nav-dropdown__menu {
  display: none;
}

.nav-dropdown__menu a {
  padding: 10px 12px;
}

.site-header__actions {
  justify-content: flex-end;
}

.cart-count {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  margin-left: 4px;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 12px;
}

.main-content {
  min-height: 55vh;
}

.hero {
  position: relative;
  min-height: clamp(580px, 82vh, 820px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(248, 244, 238, 0.99) 0%, rgba(248, 244, 238, 0.95) 62%, rgba(17, 17, 17, 0.92) 62.2%, rgba(17, 17, 17, 0.92) 100%),
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.055) 0 1px, transparent 1px 18px);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: clamp(580px, 82vh, 820px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 112px;
}

.hero h1 {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 7.5vw, 98px);
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
}

h3 {
  font-size: 18px;
  line-height: 1.15;
}

.hero__text {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.25;
}

.hero__trust {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(248, 244, 238, 0.28);
  background: rgba(248, 244, 238, 0.08);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.22);
}

.hero__visual-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 0.82;
  border: 1px solid rgba(248, 244, 238, 0.3);
  background:
    linear-gradient(135deg, rgba(248, 244, 238, 0.16), rgba(170, 179, 161, 0.26)),
    var(--charcoal);
}

.hero__visual-card--2,
.hero__visual-card--3 {
  transform: translateY(24px);
}

.hero__visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hero__visual-card:hover img {
  transform: scale(1.035);
}

.hero__visual-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 18px;
  color: var(--cream);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero__visual-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 10px;
  background: rgba(17, 17, 17, 0.78);
  color: var(--cream);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-banner__hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  background: transparent;
  cursor: pointer;
}

.hero-banner__hotspot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero-banner__hotspot--limited {
  z-index: 3;
  top: 66.1%;
  left: 32.6%;
  width: 14.1%;
  height: 9.4%;
}

.hero-banner__hotspot--new-arrivals {
  z-index: 3;
  top: 66.1%;
  left: 48.5%;
  width: 14.8%;
  height: 9.4%;
}

.hero-banner__hotspot--mens {
  top: 4%;
  left: 4.4%;
  width: 27.3%;
  height: 74.2%;
}

.hero-banner__hotspot--womens {
  top: 2.2%;
  left: 64.4%;
  width: 21.4%;
  height: 76%;
}

@media screen and (max-width: 749px) {
  .hero-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.button,
.shopify-payment-button__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--black);
  color: var(--cream);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.shopify-payment-button__button:hover {
  transform: translateY(-1px);
}

.button--secondary {
  background: transparent;
  color: var(--black);
}

.button--secondary:hover {
  background: var(--black);
  color: var(--cream);
}

.button--small {
  min-height: 40px;
  padding: 10px 16px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.section {
  padding: clamp(72px, 8vw, 104px) 0;
}

.section--beige,
.feature-band--beige,
.email-signup {
  background: var(--beige);
}

.section--white {
  background: var(--white);
}

.section__header,
.collection-heading {
  margin-bottom: 34px;
}

.collection-drop-intro {
  display: grid;
  max-width: 860px;
  gap: 12px;
  margin-top: 22px;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.38;
}

.collection-drop-intro p {
  margin: 0;
}

.collection-urgency,
.product-drop-note {
  font-weight: 900;
  text-transform: uppercase;
}

.collection-urgency {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--cream);
  font-size: 14px;
  line-height: 1.3;
}

.section__intro {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.featured-blog__header {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 58px);
}

.featured-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
}

.featured-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.featured-blog-card:hover {
  box-shadow: 10px 10px 0 rgba(170, 179, 161, 0.42), 0 22px 54px rgba(17, 17, 17, 0.1);
  transform: translateY(-4px);
}

.featured-blog-card__media {
  display: grid;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  place-items: center;
  background: var(--beige);
}

.featured-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.featured-blog-card:hover .featured-blog-card__media img {
  transform: scale(1.035);
}

.featured-blog-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(170, 179, 161, 0.35), rgba(248, 244, 238, 0.88)),
    var(--beige);
  color: rgba(17, 17, 17, 0.22);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-blog-card__placeholder img {
  width: min(72%, 280px);
  height: auto;
  opacity: 0.72;
  object-fit: contain;
}

.featured-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 30px);
}

.featured-blog-card__topline {
  display: grid;
  gap: 10px;
}

.featured-blog-card__meta {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-blog-card__badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(170, 179, 161, 0.26);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.featured-blog-card h3 {
  display: -webkit-box;
  min-height: 3.15em;
  max-height: 3.15em;
  margin: 0;
  overflow: hidden;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-blog-card h2 {
  display: -webkit-box;
  min-height: 3.15em;
  max-height: 3.15em;
  margin: 0;
  overflow: hidden;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-blog-card__excerpt,
.featured-blog-card__body > p:not(.featured-blog-card__meta) {
  display: -webkit-box;
  min-height: 4.65em;
  max-height: 4.65em;
  margin: 0;
  overflow: hidden;
  color: var(--charcoal);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-blog-card .button {
  width: fit-content;
  margin-top: auto;
}

.featured-blog-card__button {
  min-height: 52px;
  padding-inline: 24px;
  background: var(--black);
  color: var(--cream);
}

.featured-blog-card__button:hover {
  background: var(--sage);
  color: var(--black);
  transform: translateY(-2px);
}

.article-page__hero {
  padding-bottom: 0;
  background: var(--cream);
}

.article-page__progress {
  position: sticky;
  top: 0;
  z-index: 35;
  height: 3px;
  background: rgba(17, 17, 17, 0.08);
}

.article-page__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.article-page__header {
  max-width: 900px;
  margin-bottom: 34px;
  text-align: center;
}

.article-page__header h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 7.5vw, 92px);
  line-height: 0.96;
}

.article-page__meta {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.article-page__tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(170, 179, 161, 0.28);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.article-page__image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--beige);
  box-shadow: var(--shadow);
}

.article-page__image img {
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: cover;
}

.article-page__body-section {
  padding-top: clamp(44px, 6vw, 76px);
}

.article-page__content {
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.78;
}

.article-page__content > *:first-child {
  margin-top: 0;
}

.article-page__content p,
.article-page__content ul,
.article-page__content ol,
.article-page__content blockquote {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.article-page__content blockquote {
  padding: 20px 24px;
  border-left: 4px solid var(--sage);
  background: rgba(170, 179, 161, 0.15);
  color: var(--charcoal);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
}

.article-page__content h2,
.article-page__content h3,
.article-page__content h4 {
  margin-top: 1.7em;
  margin-bottom: 0.65em;
  line-height: 1.05;
}

.article-page__content h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.article-page__content h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.article-page__content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-page__content img {
  margin: 2em auto;
  max-height: 720px;
  object-fit: contain;
}

.article-page__shop-cta {
  display: grid;
  gap: 18px;
  margin-top: clamp(44px, 7vw, 78px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--black);
  background:
    linear-gradient(135deg, rgba(170, 179, 161, 0.24), rgba(248, 244, 238, 0.95)),
    var(--cream);
  box-shadow: 8px 8px 0 rgba(170, 179, 161, 0.48);
}

.article-page__shop-cta .eyebrow {
  margin: 0;
}

.article-page__shop-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 0.98;
}

.article-page__shop-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.48;
}

.article-page__shop-cta .button,
.article-page__back {
  width: fit-content;
}

.article-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.article-page__back {
  margin-top: 34px;
}

.article-page__pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.article-page__pager:empty {
  display: none;
}

.article-page__pager a {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.article-page__pager a:hover {
  box-shadow: 6px 6px 0 rgba(170, 179, 161, 0.42);
  transform: translateY(-2px);
}

.article-page__pager span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.article-page__share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-page__share span {
  margin-right: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page__share a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.article-page__share a:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateY(-1px);
}

.article-page__products {
  border-top: 1px solid var(--line);
}

.article-page__related {
  border-top: 1px solid var(--line);
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--cream);
}

.trust-bar .page-width {
  padding: 26px 0;
}

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

.trust-bar__item {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-left: 1px solid rgba(248, 244, 238, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.trust-bar__item:last-child {
  border-right: 1px solid rgba(248, 244, 238, 0.18);
}

.trust-bar__mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid var(--sage);
  border-radius: 999px;
}

.trust-bar__mark::after {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  content: "";
  transform: rotate(45deg);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.28;
  overflow: hidden;
  background: var(--beige);
}

.product-card__media img,
.product-card__media svg,
.product-card__empty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card__empty-image {
  display: block;
}

.product-card__body {
  display: grid;
  grid-template-rows: minmax(2.6em, auto) auto auto;
  gap: 14px;
  align-content: end;
  padding: 20px;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 2.6em;
  max-height: 2.6em;
  margin: 0;
  overflow: hidden;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card:hover {
  box-shadow: 8px 8px 0 rgba(170, 179, 161, 0.55);
  transform: translateY(-2px);
}

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

.price {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 1.6em;
  font-weight: 800;
}

.price__sale {
  color: #8a201f;
}

.price__compare {
  color: rgba(17, 17, 17, 0.52);
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.product-badge--card {
  box-shadow: 4px 4px 0 rgba(170, 179, 161, 0.75);
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 24px);
}

.product-card__badges .product-badge--card {
  position: static;
}

.product-badge--sage {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--black);
}

.product-card__form {
  display: grid;
}

.product-card__form .button,
.product-card__body > .button {
  width: 100%;
}

.product-drop-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.4;
}

.collection-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.collection-card {
  display: grid;
  grid-template-rows: minmax(96px, 1fr) auto;
  gap: 18px;
  width: 100%;
  min-width: 0;
  min-height: 280px;
  height: 100%;
  align-content: stretch;
  padding: 24px 18px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--cream);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.collection-card:hover {
  background: var(--black);
  color: var(--cream);
  box-shadow: 8px 8px 0 rgba(170, 179, 161, 0.55);
  transform: translateY(-2px);
}

.collection-card span {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  justify-items: center;
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  word-break: normal;
}

.collection-card p {
  min-width: 0;
  margin: 0;
  overflow-wrap: break-word;
  font-size: 14px;
  line-height: 1.45;
}

.feature-band {
  border-top: 1px solid var(--line);
}

.feature-band__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  min-height: 430px;
  padding: 86px 0;
}

.feature-band--black {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
}

.feature-band--black::after {
  position: absolute;
  top: 24px;
  right: -16px;
  color: rgba(248, 244, 238, 0.025);
  content: "LIMITED";
  font-size: clamp(76px, 15vw, 210px);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

.feature-band--black .feature-band__inner {
  position: relative;
  z-index: 1;
}

.feature-band--cream {
  background: var(--cream);
}

.feature-band--beige {
  background: var(--beige);
}

.feature-band--black .button {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.feature-band--black .feature-band__form .button {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--black);
}

.feature-band__badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(248, 244, 238, 0.42);
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.feature-band__signup {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  padding-top: 8px;
}

.feature-band__signup-heading {
  margin: 0;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.feature-band__form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(248, 244, 238, 0.72);
  background: var(--white);
  color: var(--black);
}

.feature-band__form .button {
  min-height: 54px;
  white-space: nowrap;
}

.feature-band__fine-print,
.feature-band__message {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.feature-band__message {
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px solid rgba(248, 244, 238, 0.34);
  background: rgba(248, 244, 238, 0.1);
}

.why-her-volume {
  background: var(--cream);
}

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

.value-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.value-card:nth-child(2n) {
  background: rgba(170, 179, 161, 0.24);
}

.value-card:nth-child(5) {
  border-color: rgba(232, 195, 199, 0.8);
}

.value-card strong {
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-card span {
  display: block;
  margin-top: 14px;
}

.community-links {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(170, 179, 161, 0.22), transparent 48%),
    var(--cream);
}

.community-links__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: 96px 0;
}

.community-links__inner p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: clamp(17px, 2vw, 21px);
}

.community-links__buttons {
  display: grid;
  gap: 12px;
}

.about-volume__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
}

.rte p {
  margin: 0 0 16px;
}

.about-page-copy {
  margin-top: 20px;
  font-size: clamp(16px, 1.7vw, 19px);
}

.about-page-copy h2 {
  margin: 34px 0 16px;
  font-size: clamp(24px, 3vw, 40px);
}

.about-page-section {
  padding-top: clamp(54px, 6vw, 76px);
  padding-bottom: clamp(58px, 7vw, 86px);
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(410px, 1.24fr) minmax(0, 0.96fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: start;
}

.about-founder__story h1 {
  font-size: clamp(32px, 4.5vw, 68px);
}

.about-founder__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--beige);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
}

.about-founder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.1);
}

.about-founder__subtitle {
  margin: 12px 0 0;
  color: var(--charcoal);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
}

.about-founder__story .button {
  margin-top: 16px;
}

.about-signature {
  font-weight: 900;
}

.about-mission {
  margin-top: clamp(42px, 5vw, 70px);
  padding: clamp(28px, 4vw, 46px);
  border-left: 4px solid var(--sage);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-mission h2 {
  font-size: clamp(30px, 4.4vw, 58px);
}

.about-checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 900;
}

.about-checklist li {
  position: relative;
  padding-left: 30px;
}

.about-checklist li::before {
  position: absolute;
  left: 0;
  color: var(--sage);
  content: "✓";
}

.email-signup__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 64px 0;
}

.email-form,
.search-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.email-form input,
.search-form input,
.quantity-row input {
  min-height: 48px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
}

.email-form input,
.search-form input {
  width: 100%;
  padding: 12px 14px;
}

.search-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0 34px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-quick-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.search-quick-links a:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateY(-1px);
}

.search-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
}

.search-empty h2,
.search-empty p {
  margin: 0;
}

.search-empty h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.search-empty p:not(.eyebrow) {
  max-width: 620px;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 21px);
}

 .customer-reviews {
  background: var(--white);
}

.customer-reviews__header {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.customer-reviews__trust {
  margin: 18px 0 0;
  color: #7d8531;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loox-homepage-reviews__widget {
  margin-top: 34px;
}

.loox-homepage-reviews__widget .loox-reviews,
.loox-homepage-reviews__widget [class*="loox"] {
  max-width: 100%;
}

.loox-homepage-reviews__setup {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 28px;
  border: 1px dashed var(--line);
  background: var(--cream);
  text-align: center;
}

.loox-homepage-reviews__setup p {
  max-width: 680px;
  margin: 0;
  color: var(--charcoal);
  font-weight: 800;
}

.customer-reviews__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.customer-reviews__actions .button {
  background: var(--black);
  color: var(--cream);
}

.contact-panel {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.contact-panel__intro {
  margin-bottom: 26px;
  font-size: 18px;
}

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

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field label {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid var(--black);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
}

.contact-form__field input,
.contact-form__field select {
  min-height: 48px;
  padding: 12px 14px;
}

.contact-form__field select {
  cursor: pointer;
}

.contact-form__field textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.contact-form__optional {
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.contact-trust-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list p {
  padding: 0 20px 20px;
  margin: 0;
}

.support-page-hero {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-page-hero h1 {


}


}/* Global responsive editorial typography — 2026-08-23 */
:where(h1, h2, h3, .product-card__title, .article-card__title, .card__heading) {
  max-width: 100%;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

main h1:not(.hv-hero h1) {
  font-size: clamp(2.625rem, 5vw, 5rem);
  line-height: 0.98;
}

main h2:not(.hv-hero h2) {
  font-size: clamp(2.125rem, 4vw, 4rem);
  line-height: 1;
}

:where(.product-card h3, .product-card__title, .article-card h3, .article-card__title, .blog-card h3, .card__heading) {
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  line-height: 1.2;
}

@media (max-width: 749px) {
  main h1:not(.hv-hero h1) {
    font-size: clamp(2rem, 9vw, 2.625rem);
  }

  main h2:not(.hv-hero h2) {
    font-size: clamp(1.625rem, 7.5vw, 2.125rem);
  }

  :where(.product-card h3, .product-card__title, .article-card h3, .article-card__title, .blog-card h3, .card__heading) {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
  }
}

@media (min-width: 750px) and (max-width: 989px) {
  main h1:not(.hv-hero h1) {
    font-size: clamp(2.5rem, 6.5vw, 3.5rem);
  }

  main h2:not(.hv-hero h2) {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
}

  max-width: 940px;
}

.support-page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
}

.support-page-hero .button {
  justify-self: start;
  margin-top: 8px;
}

.support-page-hero--dark {
  background: var(--black);
  color: var(--cream);
}

.support-page-hero--dark .button {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.faq-list--polished {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-block {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-block h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.faq-block p {
  padding: 0;
}

.faq-block a {
  align-self: end;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.custom-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.custom-category-grid span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--black);
  background: var(--cream);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.custom-process {
  margin-top: clamp(44px, 6vw, 76px);
}

.custom-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: custom-step;
}

.custom-process li {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 54px 20px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  counter-increment: custom-step;
}

.custom-process li::before {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--sage);
  content: counter(custom-step, decimal-leading-zero);
  font-size: 24px;
  font-weight: 900;
}

.custom-process strong {
  font-weight: 900;
  text-transform: uppercase;
}

.custom-process__note {
  margin: 24px 0 0;
  padding: 18px;
  border-left: 4px solid var(--sage);
  background: var(--white);
}

.custom-process .button {
  margin-top: 20px;
}

.size-guide-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.size-guide-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.size-guide-card h2 {
  font-size: clamp(22px, 2.8vw, 34px);
}

.size-guide-card p {
  margin: 0;
}

.size-guide-card--table,
.size-guide-card--help {
  grid-column: 1 / -1;
}

.size-guide-table {
  display: grid;
  border: 1px solid var(--line);
  background: var(--cream);
}

.size-guide-table div {
  display: grid;
  grid-template-columns: minmax(110px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.size-guide-table div:last-child {
  border-bottom: 0;
}

.size-guide-table span:first-child {
  font-weight: 900;
  text-transform: uppercase;
}

.size-guide-card--help .button {
  justify-self: start;
  margin-top: 6px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--cream);
}

.vip-popup[hidden] {
  display: none;
}

.vip-popup-open {
  overflow: hidden;
}

.vip-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.vip-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.56);
  backdrop-filter: blur(5px);
}

.vip-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.28);
}

.vip-popup__content {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 42px);
  text-align: center;
}

.vip-popup h2 {
  font-size: clamp(30px, 5vw, 48px);
}

.vip-popup p {
  margin: 0;
}

.vip-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--black);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.vip-popup__form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.vip-popup__form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--black);
  background: var(--cream);
  color: var(--black);
}

.vip-popup__form .button {
  width: 100%;
  min-height: 54px;
  background: var(--sage);
  color: var(--black);
}

.vip-popup__fine-print,
.vip-popup__message {
  font-size: 13px;
  font-weight: 800;
}

.vip-popup__message {
  padding: 12px;
  border: 1px solid var(--sage);
  background: var(--cream);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  padding: 44px 0;
}

.site-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.site-footer__trust span {
  padding: 8px 10px;
  border: 1px solid rgba(248, 244, 238, 0.25);
  color: rgba(248, 244, 238, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  justify-content: flex-end;
}

.footer-nav__support {
  width: 100%;
  font-weight: 900;
}

.footer-nav__support a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-movement {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(248, 244, 238, 0.18);
}

.footer-movement h2 {
  font-size: clamp(24px, 3.5vw, 42px);
}

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

.footer-social-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(248, 244, 238, 0.38);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social-links a::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sage);
  content: "";
}

.footer-social-links a:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.product-page {
  padding: 44px 0 80px;
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.product-gallery__item,
.product-gallery > img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--beige);
}

.product-gallery__item img,
.product-gallery > img {
  width: 100%;
  min-height: min(76vh, 780px);
  object-fit: cover;
}

.product-info {
  position: sticky;
  top: 104px;
}

.product-info__price {
  margin: 18px 0 18px;
  font-size: 26px;
  font-weight: 900;
}

.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 26px;
}

.product-trust-strip span {
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(170, 179, 161, 0.2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product-purchase-note {
  display: grid;
  gap: 6px;
  margin: -6px 0 22px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(170, 179, 161, 0.18);
}

.product-purchase-note strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-purchase-note p {
  margin: 0;
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.45;
}

.product-form {
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-option {
  padding: 0;
  margin: 0 0 20px;
  border: 0;
}

.product-option legend,
.quantity-row label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-option__help,
.product-form__trust {
  margin: 12px 0 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

.product-option__help a,
.product-form__trust a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-form__trust {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.size-list,
.swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.size-list input,
.swatch-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-button {
  display: inline-flex;
  min-width: 54px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--cream);
  cursor: pointer;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.size-list input:checked + .size-button {
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}

.size-button:hover {
  transform: translateY(-1px);
}

.swatch {
  width: 46px;
  height: 46px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--swatch-color, var(--beige));
  box-shadow: inset 0 0 0 4px var(--cream);
  cursor: pointer;
}

.swatch-list input:checked + .swatch {
  border: 3px solid var(--black);
  box-shadow: inset 0 0 0 4px var(--cream), 0 0 0 3px rgba(170, 179, 161, 0.5);
}

.quantity-row {
  display: grid;
  max-width: 130px;
}

.quantity-row input {
  width: 100%;
  padding: 10px 12px;
}

.product-form__buttons {
  display: grid;
  gap: 12px;
}

.product-form__buttons .button {
  min-height: 56px;
  font-size: 14px;
}

.product-description {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-detail-sections {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.product-detail-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.product-detail-card h2 {
  margin-bottom: 14px;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.product-detail-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}

.product-detail-card .product-detail-list {
  padding-left: 0;
  list-style: none;
}

.product-detail-card p {
  margin: 0;
}

.mobile-sticky-atc {
  display: none;
}

.related-products-section {
  padding: 72px 0 0;
}

.recently-viewed-section {
  padding: 72px 0 0;
}

.recently-viewed-section[hidden] {
  display: none;
}

.cart-form,
.cart-items {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 130px;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cart-item__image {
  aspect-ratio: 1;
  background: var(--beige);
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__title {
  font-weight: 900;
}

.cart-summary {
  display: grid;
  justify-items: end;
  gap: 10px;
  margin-top: 12px;
}

.cart-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-trust-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cart-recommendations {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: clamp(36px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.cart-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  max-width: 620px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
}

.cart-empty p {
  margin: 0;
}

.collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-toolbar p {
  margin: 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-sort {
  display: flex;
  gap: 10px;
  align-items: center;
}

.collection-sort label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-sort select {
  min-height: 42px;
  padding: 8px 34px 8px 12px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.collection-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.collection-quick-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.collection-quick-links a:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateY(-1px);
}

.pagination {
  margin-top: 34px;
  text-align: center;
}

.empty-state {
  margin: 0;
  font-weight: 700;
}

.collection-coming-soon {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 18px;
  min-height: 320px;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--black);
  background: var(--cream);
  color: var(--black);
}

.collection-coming-soon .eyebrow {
  margin: 0;
}

.collection-coming-soon h2 {
  font-size: clamp(48px, 10vw, 120px);
}

.collection-coming-soon p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
}

@media (max-width: 989px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(248, 244, 238, 0.99) 0%, rgba(248, 244, 238, 0.94) 58%, rgba(17, 17, 17, 0.92) 58.2%, rgba(17, 17, 17, 0.92) 100%),
      repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.055) 0 1px, transparent 1px 18px);
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 0 0 34px;
  }

  .hero__visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .site-header__inner,
  .feature-band__inner,
  .about-volume__inner,
  .about-founder,
  .email-signup__inner,
  .community-links__inner,
  .site-footer__grid,
  .product-page__grid {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .site-header__actions,
  .footer-nav {
    justify-content: flex-start;
  }

  .site-header__inner {
    gap: 14px;
  }

  .feature-band__form {
    grid-template-columns: 1fr;
  }

  .feature-band__form .button {
    width: 100%;
  }

  .site-nav {
    padding-top: 8px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    transform: none;
  }

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

  .collection-toolbar {
    align-items: flex-start;
  }

  .featured-blog__header {
    display: grid;
    align-items: start;
  }

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

  .article-page__header {
    text-align: left;
  }

  .article-page__meta-row {
    justify-content: flex-start;
  }

  .article-page__pager {
    grid-template-columns: 1fr;
  }

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

  .collection-card-grid,
  .value-grid,
  .trust-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-info {
    position: static;
  }

  .product-gallery__item img,
  .product-gallery > img {
    min-height: auto;
  }

  .mobile-sticky-atc {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-top: 1px solid var(--line);
    background: rgba(248, 244, 238, 0.96);
    box-shadow: 0 -14px 36px rgba(17, 17, 17, 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-atc strong,
  .mobile-sticky-atc span {
    display: block;
  }

  .mobile-sticky-atc strong {
    overflow: hidden;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.15;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-sticky-atc span {
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-sticky-atc .button {
    min-height: 48px;
    padding-inline: 18px;
  }
}

@media (max-width: 640px) {
  .page-width,
  .narrow {
    width: min(100% - 24px, 1180px);
  }

  .hero__inner {
    padding: 54px 0 24px;
  }

  h1 {
    font-size: 44px;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .hero__trust {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero__visual {
    gap: 10px;
    padding: 10px;
  }

  .hero__visual-card--2,
  .hero__visual-card--3 {
    transform: none;
  }

  .hero__visual-label {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 8px;
    font-size: 10px;
  }

  h2 {
    font-size: 34px;
  }

  .section {
    padding: 54px 0;
  }

  .product-grid,
  .featured-blog__grid,
  .collection-card-grid,
  .value-grid,
  .trust-bar__grid,
  .faq-list--polished,
  .custom-category-grid,
  .custom-process ol,
  .size-guide-page {
    grid-template-columns: 1fr;
  }

  .featured-blog__view-all,
  .featured-blog-card .button,
  .customer-reviews__actions .button,
  .article-page__shop-cta .button,
  .article-page__back,
  .article-page__cta-actions {
    width: 100%;
  }

  .article-page__cta-actions {
    display: grid;
  }

  .customer-reviews__header {
    text-align: left;
  }

  .article-page__image img {
    max-height: 420px;
  }

  .article-page__shop-cta {
    padding: 26px;
  }

  .article-page__share {
    display: grid;
  }

  .support-page-hero {
    padding: 28px;
  }

  .support-page-hero .button,
  .custom-process .button,
  .size-guide-card--help .button {
    width: 100%;
  }

  .size-guide-card {
    padding: 20px;
  }

  .size-guide-table div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .custom-process li {
    min-height: auto;
  }

  .trust-bar__item {
    min-height: 64px;
    justify-content: flex-start;
  }

  .email-form,
  .search-form,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .email-form,
  .search-form {
    display: grid;
  }

  .about-founder {
    gap: 28px;
  }

  .about-founder__media {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .about-founder__story .button {
    width: 100%;
  }

  .about-mission {
    padding: 24px;
  }

  .contact-panel {
    padding: 22px;
  }

  .product-page {
    padding-top: 28px;
    padding-bottom: 120px;
  }

  .product-form {
    padding: 16px;
  }

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

  .collection-toolbar,
  .collection-sort {
    display: grid;
    width: 100%;
  }

  .collection-sort select,
  .collection-quick-links a {
    width: 100%;
  }

  .collection-quick-links {
    display: grid;
  }

  .cart-summary {
    justify-items: stretch;
  }

  .cart-trust-list {
    justify-content: flex-start;
  }

  .cart-summary .button-row,
  .cart-empty .button-row {
    display: grid;
  }

  .cart-summary .button,
  .cart-empty .button {
    width: 100%;
  }

  .size-button {
    min-width: 50px;
    min-height: 48px;
  }

  .swatch {
    width: 44px;
    height: 44px;
  }

  .mobile-sticky-atc {
    grid-template-columns: 1fr;
  }

.mobile-sticky-atc .button {
    width: 100%;
  }
}

.free-shipping-meter {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: rgba(248, 244, 238, 0.68);
}

.free-shipping-meter p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.free-shipping-meter__track {
  height: 8px;
  overflow: hidden;
  background: rgba(18, 18, 18, 0.12);
}

.free-shipping-meter__track span {
  display: block;
  height: 100%;
  background: #8FA58A;
}
