/* Homepage parity refinements and editorial sections.
   Source: assets/css/frontend.css lines 4367-6932. Header-specific rules live in 60-header.css. */

/* Canonical home parity layer: mirrors index.html/styles.css for HWH widgets. */
:root {
  --black: var(--hwh-black, #0f0f0f);
  --ink: #1a1c1c;
  --muted: #66605b;
  --nude: var(--hwh-nude, #f5ede6);
  --cream: var(--hwh-cream, #fafafa);
  --paper: #ffffff;
  --gold: var(--hwh-gold, #c9a96e);
  --line: rgba(15, 15, 15, 0.12);
  --line-gold: rgba(201, 169, 110, 0.42);
  --footer: #0f0f0f;
  --footer-text: #fafafa;
  --radius: 4px;
  --max: 1200px;
}

html.hwh-theme-dark,
body.hwh-theme-dark {
  --ink: #f6f2ed;
  --muted: #c8beb5;
  --nude: #1c1713;
  --cream: #11100f;
  --paper: #171514;
  --gold: #d7b77b;
  --line: rgba(250, 250, 250, 0.13);
  --line-gold: rgba(215, 183, 123, 0.5);
  --footer: #070707;
  --footer-text: #fafafa;
}

.hwh-js-only {
  display: none !important;
}

.hwh-js .hwh-js-only {
  display: inline-flex !important;
}

.hwh-js .hwh-card-cart-form.hwh-js-only {
  display: contents !important;
}

.hero,
.micro-reviews,
.collections-section,
.products-section,
.transformation-section,
.founder-section,
.values-section,
.review-section,
.guarantees,
.final-cta,
.site-footer.hwh-footer {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.hero a,
.micro-reviews a,
.collections-section a,
.products-section a,
.transformation-section a,
.founder-section a,
.values-section a,
.review-section a,
.guarantees a,
.final-cta a,
.site-footer.hwh-footer a {
  color: inherit;
  text-decoration: none !important;
}

.hero h1,
.collections-section h2,
.products-section h2,
.transformation-section h2,
.founder-section h2,
.review-section h2,
.final-cta h2,
.site-footer.hwh-footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.8vw, 96px);
}

.collections-section h2,
.products-section h2,
.transformation-section h2,
.founder-section h2,
.review-section h2,
.final-cta h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.collection-card h3,
.product-card h3,
.value-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}

.eyebrow,
.hwh-eyebrow.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button,
.hwh-button.button,
.product-link.button,
.hwh-add-to-cart-button.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.button:hover,
.hwh-button.button:hover,
.product-link.button:hover,
.hwh-add-to-cart-button.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.hwh-button-primary.button,
.hwh-add-to-cart-button.button-primary {
  color: #fff !important;
  background: var(--black) !important;
  border: 1px solid var(--black) !important;
}

.button-primary:hover,
.hwh-button-primary.button:hover,
.hwh-add-to-cart-button.button-primary:hover {
  color: var(--black) !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.button-secondary,
.hwh-button-secondary.button,
.product-link.button-secondary {
  color: var(--ink) !important;
  background: transparent !important;
  border: 1px solid var(--line-gold) !important;
}

.button-light,
.hwh-button-light.button {
  color: var(--black) !important;
  background: var(--cream) !important;
  border: 1px solid var(--cream) !important;
}

.hero {
  min-height: calc(100vh - 130px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 6vh, 84px) clamp(20px, 5vw, 72px);
  background: linear-gradient(90deg, var(--cream) 0 58%, var(--nude) 58% 100%);
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 76%, transparent);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: clamp(430px, 56vh, 560px);
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 160ms ease;
}

.hero-orbit {
  position: absolute;
  inset: 0 4% 8% 0;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  transform: rotate(-8deg) translateZ(-60px);
}

.hero-frame {
  position: absolute;
  inset: 4% 8% 5% 16%;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: var(--black);
}

.hero-product-image,
.product-image,
.collection-card img,
.before,
.after,
.photo-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-image {
  position: absolute;
  inset: 0;
  border-radius: 52% 52% 0 0;
  filter: saturate(0.92) contrast(1.04);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.08), rgba(15, 15, 15, 0.42)), linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-logo-mark {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 66px;
  height: 66px;
  padding: 5px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.hero-floating-note {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 44px;
  width: 170px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line-gold);
}

.hero-floating-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.hero-floating-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.micro-reviews {
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(28px, 5vw, 64px) auto 0;
  position: relative;
  display: block;
  padding: 0;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: var(--hwh-track-height, auto);
  align-items: stretch;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.micro-review {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: var(--hwh-card-padding, 18px 24px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.micro-review strong,
.micro-review span {
  display: inline-block;
  margin-right: 8px;
}

.micro-review span,
.stars {
  color: #ffad18;
}

.micro-review p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.carousel-control {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-control:disabled {
  opacity: .42;
  cursor: default;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(92px, 11vw, 142px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hwh-collection-gap, 0);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.collection-card {
  position: relative;
  z-index: 0;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #fff !important;
}

.collection-card img {
  position: absolute;
  inset: 0 !important;
  z-index: -2;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 360ms ease, filter 360ms ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.76));
}

.collection-card > :not(img) {
  position: relative;
  z-index: 1;
}

.collection-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.05);
}

.collection-card span {
  color: var(--gold);
  font-weight: 900;
}

.collection-card h3 {
  max-width: 330px;
  margin-top: 12px;
  font-size: clamp(32px, 3.5vw, 50px);
}

.collection-card p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.collection-card strong {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.products-section {
  padding-top: 28px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 56px;
  align-items: start;
}

.hwh-products-cols-1.product-row { grid-template-columns: 1fr; }


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


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


.hwh-products-cols-4.product-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }


.hwh-products-cols-5.product-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-items: start;
  gap: 8px;
  text-align: center;
}

.product-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: var(--nude);
  overflow: hidden;
  transition: transform 260ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 260ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.product-card p,
.hwh-price {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hwh-product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 8px;
}

.hwh-card-cart-form {
  display: contents;
}

.hwh-card-cart-form .hwh-cart-feedback {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.2em;
  font-size: 12px;
}

.hwh-cart-added,
.hwh-card-cart-form.is-added .hwh-cart-label {
  display: none;
}

.hwh-card-cart-form.is-added .hwh-cart-added {
  display: inline-grid;
  place-items: center;
}

.hwh-card-cart-form.is-added .hwh-cart-added svg {
  width: 17px;
  height: 17px;
}

.product-card.is-adding {
  opacity: .82;
}

.product-card.is-added .product-image {
  border-color: var(--gold);
}

.transformation-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 520px) minmax(0, 620px) minmax(20px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding-inline: 0;
  color: #fff;
  background: var(--black);
}

.transformation-copy {
  grid-column: 2;
}

.transformation-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.transformation-copy ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.transformation-copy li {
  position: relative;
  margin-top: 10px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.transformation-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.transformation-visual {
  grid-column: 3;
  min-height: 540px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10px;
}

.before,
.after {
  position: relative;
  overflow: hidden;
}

.before img,
.after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before {
  opacity: .5;
  filter: grayscale(1);
}

.before span,
.after span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--black);
  background: var(--cream);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  overflow: visible;
}

.founder-art {
  position: relative;
  min-height: 650px;
  overflow: visible;
}

.founder-blob {
  position: absolute;
  inset: 8% 0 0 2%;
  width: 92%;
  height: 86%;
  overflow: hidden;
  fill: var(--nude);
  stroke: var(--line-gold);
  stroke-width: 1;
}

.founder-portrait {
  position: absolute;
  z-index: 2;
  left: 11%;
  right: 6%;
  bottom: -3%;
  height: 92%;
  overflow: visible;
}

.hwh-founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hwh-founder-image-position, center center);
  border-radius: 52% 52% 10px 10px;
}

.portrait-face {
  position: absolute;
  left: 35%;
  top: 13%;
  width: 30%;
  height: 23%;
  border-radius: 48% 48% 44% 44%;
  background: linear-gradient(135deg, #c89373, #70452d);
}

.portrait-hair {
  position: absolute;
  left: 18%;
  right: 14%;
  top: 8%;
  height: 70%;
  border-radius: 52% 52% 10px 10px;
  background: repeating-linear-gradient(102deg, rgba(255,255,255,.1) 0 2px, transparent 2px 13px), linear-gradient(120deg, #080605, #1d120e 40%, #4b2b1d 78%, #0c0806);
  box-shadow: inset 32px 0 70px rgba(255,255,255,.06), inset -40px 0 78px rgba(0,0,0,.68);
}

.portrait-body {
  position: absolute;
  left: 25%;
  right: 20%;
  bottom: 0;
  height: 46%;
  border-radius: 44% 44% 0 0;
  background: linear-gradient(135deg, #f5ede6, #d7bda6);
  border: 1px solid rgba(201,169,110,.42);
}

.founder-label {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 8%;
  padding: 16px 18px;
  background: var(--black);
  color: #fff;
  border: 1px solid var(--line-gold);
}

.founder-label span,
.founder-label strong {
  display: block;
}

.founder-label span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.founder-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.founder-copy {
  max-width: 620px;
}

.founder-copy p {
  color: var(--muted);
  font-size: 18px;
}

.founder-quote {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.35;
}

.values-section {
  padding-top: 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-item {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-item span {
  display: inline-flex;
  min-width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.value-item h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.value-item p {
  color: var(--muted);
  font-size: 14px;
}

.review-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
}

.review-media {
  min-height: 330px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--black);
  border: 1px solid var(--line-gold);
}

.photo-strip {
  width: min(360px, 82%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.photo-strip img {
  min-height: 120px;
}

.review-media p {
  margin: -54px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.review-content {
  min-width: 0;
}

.review-carousel {
  position: relative;
  display: block;
  margin-top: 22px;
}

.review-carousel > button[data-hwh-prev] {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.review-carousel > button[data-hwh-next] {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.review-card {
  flex: 0 0 100%;
  min-height: 190px;
  box-sizing: border-box;
  padding: var(--hwh-card-padding, 26px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.review-head span,
.review-card small {
  color: var(--muted);
  font-size: 12px;
}

.review-card p {
  color: var(--muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--ink);
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
}

.guarantees span {
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.final-cta {
  padding: clamp(90px, 12vw, 150px) 20px clamp(28px, 4vw, 52px);
  margin-bottom: 0;
  text-align: center;
  background: var(--nude);
  border: 0;
}

.final-cta div {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: 30px;
}

.site-footer.hwh-footer {
  position: relative;
  margin-top: -3px;
  color: var(--footer-text);
  background: var(--footer);
  border: 0;
  overflow: hidden;
}

.site-footer.hwh-footer .footer-wave {
  display: block;
  position: relative;
  z-index: 1;
  width: 260%;
  height: clamp(58px, 6.5vw, 88px);
  fill: var(--footer);
  margin-left: -80%;
  margin-top: -2px;
  margin-bottom: -8px;
  background: var(--nude);
  transform: translate3d(0, 2px, 0);
  transform-origin: center bottom;
  animation: hwh-footer-wave-drift 5.8s ease-in-out infinite;
  shape-rendering: geometricPrecision;
  will-change: transform;
}

.site-footer.hwh-footer .footer-wave path {
  stroke: none;
  stroke-width: 0;
}

.site-footer.hwh-footer .footer-wave-back {
  opacity: .38;
  transform-origin: center bottom;
  animation: hwh-footer-wave-pulse 4.8s ease-in-out infinite;
}

.site-footer.hwh-footer .footer-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: -4px auto 0;
  padding: clamp(38px, 5vw, 62px) 0 42px;
  background: var(--footer);
  box-shadow: 0 0 0 100vmax var(--footer);
  clip-path: inset(0 -100vmax);
  border-top: 0;
}

.site-footer.hwh-footer .footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "logo title" "text text";
  column-gap: 28px;
  row-gap: 22px;
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 42px);
  border-bottom: 1px solid rgba(201, 169, 110, .22);
}

.site-footer.hwh-footer .footer-brand img {
  grid-area: logo;
  width: clamp(72px, 7vw, 92px);
  height: clamp(72px, 7vw, 92px);
  padding: 7px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.site-footer.hwh-footer .footer-brand h2 {
  grid-area: title;
  max-width: 860px;
  color: var(--footer-text);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.02;
}

.site-footer.hwh-footer .footer-brand p {
  grid-area: text;
  max-width: 760px;
  margin: 0;
  color: rgba(250, 250, 250, .72);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer.hwh-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(34px, 5vw, 52px) 0;
}

.site-footer.hwh-footer .footer-grid h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer.hwh-footer .footer-grid a {
  display: block;
  margin-top: 10px;
  color: rgba(250, 250, 250, .78);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer.hwh-footer .footer-grid a i {
  width: 20px;
  color: var(--gold);
}

.site-footer.hwh-footer input[type="email"] {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  color: var(--footer-text);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,169,110,.34);
  border-radius: var(--radius);
}

.site-footer.hwh-footer form .button {
  margin-top: 10px;
}

.site-footer.hwh-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(201,169,110,.22);
  color: rgba(250,250,250,.68);
  font-size: 12px;
  letter-spacing: .04em;
}

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

.hwh-product-card-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.hwh-product-card-modal[hidden] {
  display: none !important;
}

.hwh-product-card-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hwh-product-card-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, .72);
}

.hwh-product-card-modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-gold);
  transform: translateY(16px);
  transition: transform 200ms ease;
}

.hwh-product-card-modal.is-open .hwh-product-card-modal-panel {
  transform: translateY(0);
}

.hwh-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hwh-modal-product-head {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-right: 44px;
  margin-bottom: 24px;
}

.hwh-modal-product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--nude);
  border: 1px solid var(--line);
}

.hwh-modal-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.hwh-variable-modal-form table.variations,
.hwh-variable-cart-form table.variations {
  width: 100%;
}

.hwh-variable-modal-form .variations select,
.hwh-variable-cart-form .variations select,
.hwh-variable-modal-form input.qty,
.hwh-variable-cart-form input.qty {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.hwh-variable-modal-form .single_add_to_cart_button,
.hwh-variable-cart-form .single_add_to_cart_button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  color: #fff !important;
  background: var(--black) !important;
  border: 1px solid var(--black) !important;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hwh-variable-modal-form .hwh-cart-feedback,
.hwh-variable-cart-form .hwh-cart-feedback {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

.hwh-cart-feedback-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, background .2s ease;
}

.hwh-cart-feedback-link:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.hwh-variable-modal-form .variations_button,
.hwh-variable-cart-form .variations_button {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hwh-variable-modal-form .quantity,
.hwh-variable-cart-form .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hwh-variable-modal-form input.qty,
.hwh-variable-cart-form input.qty {
  width: 72px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  appearance: textfield;
}

.hwh-variable-modal-form input.qty::-webkit-outer-spin-button,
.hwh-variable-modal-form input.qty::-webkit-inner-spin-button,
.hwh-variable-cart-form input.qty::-webkit-outer-spin-button,
.hwh-variable-cart-form input.qty::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

@media (max-width: 1100px) {
.hero-inner,
  .founder-section,
  .review-section {
    grid-template-columns: 1fr;
  }

  .product-row,
  .hwh-products-cols-5.product-row,
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .transformation-section {
    grid-template-columns: minmax(20px, 1fr) minmax(0, var(--max)) minmax(20px, 1fr);
  }

  .transformation-copy,
  .transformation-visual {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
.hero {
    min-height: auto;
    padding: 54px 20px 30px;
    background: var(--cream);
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-visual {
    min-height: 420px;
  }

  .micro-reviews {
    grid-template-columns: 1fr;
  }

  .micro-reviews .carousel-control,
  .review-carousel .carousel-control {
    display: none;
  }

  .collection-grid,
  .values-grid,
  .product-row,
  .hwh-products-cols-2.product-row,
  .hwh-products-cols-3.product-row,
  .hwh-products-cols-4.product-row,
  .hwh-products-cols-5.product-row,
  .guarantees,
  .site-footer.hwh-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 430px;
  }

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

  .transformation-visual {
    min-height: 420px;
  }

  .founder-art {
    min-height: 520px;
  }

  .site-footer.hwh-footer .footer-brand {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "title" "text";
  }

  .site-footer.hwh-footer .footer-bottom {
    display: grid;
  }

  .hwh-modal-product-head {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

/* Collection signature hardening: keep cards full-bleed while allowing Elementor spacing controls. */
.hwh-collections.collection-grid {
  gap: var(--hwh-collection-row-gap, var(--hwh-collection-gap, 0)) var(--hwh-collection-column-gap, var(--hwh-collection-gap, 0));
}

.hwh-collection-card.collection-card {
  isolation: isolate;
}

.hwh-collection-card.collection-card > img {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
}

/* Signature House of Wig media hardening. */
.hwh-premium-experience.transformation-section .transformation-visual {
  align-self: stretch;
  min-height: clamp(420px, 44vw, 620px);
}

.hwh-premium-experience.transformation-section .before,
.hwh-premium-experience.transformation-section .after {
  position: relative;
  min-height: inherit;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
}

.hwh-premium-experience.transformation-section .before > img,
.hwh-premium-experience.transformation-section .after > img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
}

.hwh-premium-experience.transformation-section .before > span,
.hwh-premium-experience.transformation-section .after > span {
  z-index: 1;
}

/* Home parity refinements: balanced product cards, readable footer opt-in, mobile collection spacing. */
.products-section .product-row {
  align-items: stretch;
}

.products-section .product-card {
  height: 100%;
  grid-template-rows: auto minmax(50px, auto) minmax(22px, auto) auto;
}

.products-section .product-card h3 {
  display: -webkit-box;
  min-height: 50px;
  margin-top: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.12;
}

.products-section .product-card .hwh-price {
  min-height: 22px;
}

.products-section .hwh-product-card-actions {
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: stretch;
  margin-top: auto;
}

.products-section .hwh-product-link,
.products-section .hwh-add-to-cart-button {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 16px;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

.products-section .hwh-add-to-cart-button {
  padding-inline: 0;
}

.products-section .hwh-add-to-cart-button i {
  font-size: 16px;
  line-height: 1;
}

.products-section .hwh-add-to-cart-unavailable,
.products-section .hwh-add-to-cart-unavailable:hover,
.products-section .hwh-add-to-cart-unavailable:focus {
  opacity: .46;
  cursor: not-allowed;
  transform: none !important;
  color: var(--hwh-button-text) !important;
  background: var(--hwh-button-bg) !important;
  border-color: var(--hwh-button-bg) !important;
}

.products-section .hwh-add-to-cart-button .hwh-cart-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-footer.hwh-footer .hwh-footer-newsletter-text {
  margin: -8px 0 12px;
  color: rgba(250, 250, 250, .72);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer.hwh-footer .hwh-footer-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 12px;
  color: rgba(250, 250, 250, .76);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer.hwh-footer .hwh-footer-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.hwh-why-choose.values-section .section-heading > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
}

.hwh-why-choose.values-section .section-heading h2 {
  font-size: clamp(36px, 5vw, 72px);
}

.hwh-why-choose .value-item span i {
  font-size: 14px;
  line-height: 1;
}

.hwh-social-review-card.review-card,
.hwh-social-review-card.micro-review,
.hwh-social-review-card {
  flex: 0 0 min(460px, 100%);
  min-height: 268px;
  padding: 26px 28px 24px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--hwh-card-radius, 2px);
  box-shadow: 0 18px 42px rgba(15, 15, 15, .06);
  text-align: left;
}

.hwh-social-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.hwh-social-review-top strong {
  margin: 0;
  color: #6b481f;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hwh-social-review-top i {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.hwh-social-review-card .hwh-stars,
.hwh-social-review-card .stars {
  display: block;
  margin: 8px 0 4px;
  color: #f3a21a;
  font-size: 20px;
  line-height: 1;
  letter-spacing: .02em;
}

.hwh-social-review-card .hwh-review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin: 2px 0 6px;
  padding: 3px 10px;
  color: var(--paper);
  background: var(--black);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hwh-social-review-card small {
  display: block;
  color: #9a6435;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
}

.hwh-social-review-card p {
  margin: 20px 0 0;
  color: #57514d;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.28;
}

.hwh-story-longform,
.hwh-story-editorial,
.hwh-contact-custom {
  color: var(--ink);
  background: var(--cream);
}

.hwh-story-longform-head {
  max-width: 820px;
  margin: 0 0 46px;
}

.hwh-story-longform-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hwh-story-longform-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.hwh-story-longform-media,
.hwh-story-editorial-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--nude);
}

.hwh-story-longform-media {
  position: sticky;
  top: 120px;
  aspect-ratio: 4 / 5;
}

.hwh-story-longform-media img,
.hwh-story-editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hwh-story-longform-copy {
  display: grid;
  gap: 24px;
}

.hwh-story-longform-copy article,
.hwh-story-editorial-grid article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hwh-story-longform-copy span,
.hwh-story-editorial-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hwh-story-longform-copy h3,
.hwh-story-editorial-grid h3 {
  margin: 10px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.hwh-story-longform-copy p,
.hwh-story-editorial-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hwh-story-layout-split .hwh-story-longform-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
}

.hwh-story-layout-split .hwh-story-longform-media {
  order: 2;
}

.hwh-story-layout-chapters .hwh-story-longform-grid {
  grid-template-columns: 1fr;
}

.hwh-story-layout-chapters .hwh-story-longform-media {
  position: relative;
  top: auto;
  max-height: 520px;
}

.hwh-story-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hwh-story-editorial-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 10px;
}

.hwh-story-editorial-image {
  aspect-ratio: 1 / 1.16;
  margin: -28px -28px 12px;
}

.hwh-story-editorial-timeline .hwh-story-editorial-grid {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

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

.hwh-contact-custom {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.hwh-contact-custom-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hwh-contact-custom-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hwh-contact-custom-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hwh-contact-custom-form input,
.hwh-contact-custom-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 14px;
  font: 500 15px/1.4 var(--sans);
  text-transform: none;
  letter-spacing: 0;
}

.hwh-contact-custom-form textarea {
  resize: vertical;
}

.hwh-contact-custom-form .hwh-contact-full,
.hwh-contact-custom-form button,
.hwh-contact-custom-form .hwh-form-message {
  grid-column: 1 / -1;
}

.hwh-contact-custom-form .hwh-form-message {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hwh-contact-custom-centered {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.hwh-contact-custom-centered .hwh-contact-custom-copy {
  text-align: center;
}

.hwh-contact-custom-centered .hwh-contact-custom-copy p:not(.eyebrow) {
  margin-inline: auto;
}

.hwh-contact-custom-compact {
  grid-template-columns: 1fr;
}

html.hwh-theme-dark .hwh-social-review-card,
html.hwh-theme-dark .hwh-story-longform-copy article,
html.hwh-theme-dark .hwh-story-editorial-grid article,
html.hwh-theme-dark .hwh-contact-custom-form {
  color: var(--hwh-dark-text);
  background: var(--hwh-dark-surface);
  border-color: rgba(255,255,255,.14);
}

html.hwh-theme-dark .hwh-social-review-top strong,
html.hwh-theme-dark .hwh-social-review-top i {
  color: var(--hwh-dark-text);
}

html.hwh-theme-dark .hwh-social-review-card p,
html.hwh-theme-dark .hwh-story-longform-copy p,
html.hwh-theme-dark .hwh-story-editorial-grid p,
html.hwh-theme-dark .hwh-contact-custom-copy p:not(.eyebrow),
html.hwh-theme-dark .hwh-contact-custom-form .hwh-form-message {
  color: rgba(248,244,239,.74);
}

/* HWH cart/checkout parity layer. */
.hwh-cart-checkout {
  --hwh-cart-brown: #7a4a07;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(340px, .76fr) minmax(540px, 1.24fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 108px) max(24px, calc((100vw - var(--max, 1480px)) / 2));
  color: var(--ink);
  background: var(--cream);
}

.hwh-cart-checkout-heading {
  grid-column: 1 / -1;
  max-width: 880px;
  margin-bottom: -8px;
}

.hwh-cart-checkout-heading h1 {
  margin: 0 0 12px;
  color: var(--hwh-cart-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  line-height: 1;
}

.hwh-cart-checkout-heading p:not(.hwh-eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.hwh-cart-panel-inner,
.hwh-checkout-panel .woocommerce,
.hwh-checkout-empty {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(15, 15, 15, .06);
}

.hwh-cart-panel-inner {
  padding: clamp(24px, 3vw, 38px);
}

.hwh-checkout-panel .woocommerce {
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
}

.hwh-cart-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hwh-cart-heading h2,
.hwh-checkout-panel .woocommerce-billing-fields > h3,
.hwh-checkout-panel #order_review_heading,
.hwh-checkout-panel .woocommerce-additional-fields > h3 {
  color: var(--hwh-cart-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
}

.hwh-cart-heading h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.hwh-cart-lines {
  gap: 12px;
}

.hwh-cart-line {
  grid-template-columns: 92px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: start;
  padding: 16px;
  border-color: var(--line);
  border-radius: 0;
  background: #fff;
}

.hwh-cart-line-image {
  width: 92px;
  height: 104px;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  background: var(--nude);
  overflow: hidden;
}

.hwh-cart-line-copy h3 {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.25;
}

.hwh-cart-line-price {
  display: block;
  color: var(--hwh-cart-brown);
  font-weight: 800;
}

.hwh-cart-line-meta {
  color: #4d443d;
}

.hwh-cart-line-meta dt {
  color: var(--ink);
}

.hwh-qty {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.hwh-qty button,
.hwh-qty input {
  width: 100%;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--ink);
  background: transparent;
  text-align: center;
}

.hwh-qty button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s ease, background .2s ease;
}

.hwh-qty button:hover {
  color: var(--ink);
  background: var(--cream);
}

.hwh-qty input {
  width: 64px;
  border-inline: 1px solid var(--line) !important;
  appearance: textfield;
  font-size: 14px;
  font-weight: 600;
}

.hwh-qty input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--gold);
}

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

.hwh-cart-remove {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #f2d9d9;
  border-radius: 50%;
  color: #8b1a1a;
  background: #fff3f3;
  text-decoration: none !important;
}

.hwh-cart-lines > .hwh-button-secondary,
.hwh-coupon-form .hwh-button-secondary {
  width: 100%;
  color: var(--black) !important;
  background: #fff !important;
  border-color: var(--line) !important;
}

.hwh-coupon-form {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 22px;
}

.hwh-coupon-form label,
.hwh-shipping-box label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hwh-coupon-form input,
.hwh-shipping-box input,
.hwh-shipping-box select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
}

.hwh-cart-totals {
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top-color: var(--line);
}

.hwh-cart-totals > div {
  align-items: start;
  color: var(--muted);
  font-size: 14px;
}

.hwh-cart-totals strong {
  color: var(--ink);
  text-align: right;
}

.hwh-shipping-box {
  display: grid !important;
  gap: 12px !important;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hwh-shipping-box > span {
  color: var(--ink);
  font-weight: 800;
}

.hwh-shipping-box .shipping-calculator-button {
  color: var(--hwh-cart-brown);
  font-weight: 800;
  text-decoration: none !important;
}

.hwh-shipping-box .shipping-calculator-form {
  display: grid;
  gap: 10px;
}

.hwh-cart-total {
  padding-top: 6px;
  color: var(--hwh-cart-brown);
  font-size: 18px;
}

.hwh-checkout-jump {
  width: 100%;
  margin-top: 8px;
  background: var(--black) !important;
  border-color: var(--black) !important;
}

.hwh-cart-express {
  margin-top: 18px;
}

.hwh-cart-express > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hwh-cart-express :where(button, a, .button) {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

.hwh-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hwh-payment-label,
.hwh-payment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.hwh-payment-label {
  color: var(--black);
  background: var(--nude);
}

.hwh-payment-badge {
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
}

.hwh-payment-badge.is-paypal {
  color: #fff;
  background: #003087;
  border-color: #003087;
}

.hwh-checkout-panel form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.hwh-checkout-panel #customer_details {
  min-width: 0;
}

.hwh-checkout-panel #order_review_heading,
.hwh-checkout-panel #order_review {
  grid-column: 2;
}

.hwh-checkout-panel #order_review_heading {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.hwh-checkout-panel .woocommerce-billing-fields > h3,
.hwh-checkout-panel .woocommerce-additional-fields > h3 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
}

.hwh-checkout-panel .woocommerce form .form-row {
  margin: 0 0 14px;
}

.hwh-checkout-panel .woocommerce form .form-row label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.hwh-checkout-panel .woocommerce form .form-row input.input-text,
.hwh-checkout-panel .woocommerce form .form-row textarea,
.hwh-checkout-panel .woocommerce form .form-row select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f7f3ef;
  color: var(--ink);
  font-size: 14px;
}

.hwh-checkout-panel .woocommerce-checkout-review-order {
  padding: 22px;
  background: #f7f3ef;
  border: 1px solid var(--line);
}

.hwh-checkout-panel .woocommerce-checkout-review-order-table {
  margin: 0 0 18px;
  border: 0;
  color: var(--ink);
  font-size: 13px;
}

.hwh-checkout-panel .woocommerce-checkout-review-order-table th,
.hwh-checkout-panel .woocommerce-checkout-review-order-table td {
  border-color: rgba(15, 15, 15, .08);
  padding: 10px 0;
}

.hwh-checkout-panel #payment {
  border-radius: 0;
  background: #efebe7;
}

.hwh-checkout-panel #payment ul.payment_methods {
  border-bottom-color: var(--line);
}

.hwh-checkout-panel #payment div.payment_box {
  background: #dfd9d5;
  color: var(--ink);
}

.hwh-checkout-panel #payment div.payment_box::before {
  border-bottom-color: #dfd9d5;
}

.hwh-checkout-panel #place_order {
  width: 100%;
  margin-top: 14px;
  min-height: 58px;
  border-radius: 0 !important;
  background: var(--black) !important;
  color: #fff !important;
}

html.hwh-theme-dark .hwh-cart-checkout {
  color: var(--hwh-dark-text);
  background: var(--hwh-dark-bg);
}

html.hwh-theme-dark .hwh-cart-checkout-heading h1,
html.hwh-theme-dark .hwh-cart-heading h2,
html.hwh-theme-dark .hwh-checkout-panel .woocommerce-billing-fields > h3,
html.hwh-theme-dark .hwh-checkout-panel #order_review_heading,
html.hwh-theme-dark .hwh-checkout-panel .woocommerce-additional-fields > h3 {
  color: var(--hwh-dark-text);
}

html.hwh-theme-dark .hwh-cart-line,
html.hwh-theme-dark .hwh-qty,
html.hwh-theme-dark .hwh-qty button,
html.hwh-theme-dark .hwh-qty input,
html.hwh-theme-dark .hwh-coupon-form input,
html.hwh-theme-dark .hwh-shipping-box input,
html.hwh-theme-dark .hwh-shipping-box select,
html.hwh-theme-dark .hwh-checkout-panel .woocommerce-checkout-review-order,
html.hwh-theme-dark .hwh-checkout-panel .woocommerce form .form-row input.input-text,
html.hwh-theme-dark .hwh-checkout-panel .woocommerce form .form-row textarea,
html.hwh-theme-dark .hwh-checkout-panel .woocommerce form .form-row select {
  color: var(--hwh-dark-text);
  background: var(--hwh-dark-surface);
  border-color: rgba(255,255,255,.14);
}

@media (max-width: 1180px) {
.hwh-cart-checkout,
  .hwh-checkout-panel form.checkout {
    grid-template-columns: 1fr;
  }

  .hwh-checkout-panel #order_review_heading,
  .hwh-checkout-panel #order_review {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
.hwh-cart-checkout {
    padding-inline: 18px;
  }

  .hwh-cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .hwh-cart-line-image {
    width: 82px;
    height: 94px;
  }

  .hwh-cart-remove {
    grid-column: 2;
    justify-self: end;
    margin-top: -44px;
  }

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

  .hwh-checkout-panel .woocommerce {
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
.hwh-collections.collection-grid {
    row-gap: var(--hwh-collection-row-gap, 18px);
  }

  .hwh-social-review-card.review-card,
  .hwh-social-review-card.micro-review,
  .hwh-social-review-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 24px 20px;
  }

  .hwh-social-review-card p {
    font-size: 18px;
    line-height: 1.34;
  }

  .hwh-story-longform-grid,
  .hwh-story-layout-split .hwh-story-longform-grid,
  .hwh-story-editorial-grid,
  .hwh-story-editorial-masonry .hwh-story-editorial-grid,
  .hwh-contact-custom {
    grid-template-columns: 1fr;
  }

  .hwh-story-layout-split .hwh-story-longform-media {
    order: 0;
  }

  .hwh-story-longform-media {
    position: relative;
    top: auto;
  }

  .hwh-contact-custom-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .products-section .hwh-product-card-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .products-section .hwh-add-to-cart-button {
    padding-inline: 12px;
  }

  .products-section .hwh-add-to-cart-button .hwh-cart-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

/* Founder image clipping: uploaded photos live inside the SVG path, never as an overflowing portrait layer. */
.hwh-founder.has-founder-image .hwh-svg-image-frame.founder-blob {
  position: absolute;
  inset: 8% 0 0 2%;
  display: block;
  width: 92%;
  height: 86%;
  max-width: none;
  overflow: hidden !important;
  contain: paint;
  border-radius: 0;
}

.hwh-founder.has-founder-image .hwh-svg-image-frame .hwh-svg-image-clip {
  clip-rule: nonzero;
}

.hwh-founder.has-founder-image .hwh-svg-image-frame .hwh-svg-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
}

.hwh-founder.has-founder-image .hwh-svg-image-frame .hwh-svg-image-outline {
  fill: transparent;
  vector-effect: non-scaling-stroke;
}

/* Current product category header/section for Elementor Theme Builder archives. */
.hwh-current-category-header.section {
  padding: var(--hwh-section-padding, clamp(74px, 9vw, 118px) 0 clamp(38px, 6vw, 78px));
}

.hwh-current-category-header .hwh-category-header-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.hwh-current-category-header.hwh-category-header-align-left .hwh-category-header-inner {
  margin-inline: 0 auto;
  text-align: left;
}

.hwh-current-category-header h1,
.hwh-current-category-header h2,
.hwh-current-category-header h3,
.hwh-current-category-products .hwh-category-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.hwh-current-category-header h1 {
  font-size: clamp(46px, 6.2vw, 92px);
}

.hwh-current-category-header h2,
.hwh-current-category-products .hwh-category-heading h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.hwh-current-category-header h3 {
  font-size: clamp(28px, 3.4vw, 46px);
}

.hwh-current-category-header .hwh-category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 24px;
  padding: 7px 14px;
  color: var(--ink);
  background: var(--nude);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hwh-current-category-products.section {
  padding: var(--hwh-section-padding, clamp(92px, 11vw, 142px) 0);
}

.hwh-current-category-products .hwh-category-heading {
  margin-bottom: 28px;
}

.hwh-current-category-header .hwh-category-description,
.hwh-current-category-products .hwh-category-description {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
}

.hwh-current-category-header.hwh-category-header-align-left .hwh-category-description {
  margin-inline: 0;
}

.hwh-current-category-products .hwh-category-products-count {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.hwh-current-category-products .hwh-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
  background: var(--nude);
}

/* Variable product color surcharge feedback. */
.hwh-color-surcharge-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--nude);
  border: 1px solid var(--line-gold, var(--line));
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.hwh-color-surcharge-note[hidden] {
  display: none !important;
}

.hwh-color-surcharge-inline {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Final CTA normalization: anchors navigate, buttons act, both align identically. */
a.hwh-button,
button.hwh-button,
input.hwh-button,
.hwh-button,
a.button,
button.button,
input.button,
.hwh-template .elementor-button,
.hwh-product-link,
.hwh-product-card .hwh-add-to-cart-button,
.hwh-cart-checkout .button,
.hwh-cart-checkout a.button,
.hwh-cart-checkout button.button,
.hwh-cart-checkout input.button,
.hwh-checkout-panel #place_order,
.hwh-product-detail-premium .single_add_to_cart_button,
.site-footer.hwh-footer form .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  min-height: 44px;
  height: auto;
  box-sizing: border-box;
  text-align: center !important;
  line-height: 1.15 !important;
  vertical-align: middle;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-decoration: none !important;
}

a.hwh-button > *,
button.hwh-button > *,
.hwh-button > *,
a.button > *,
button.button > *,
.hwh-product-link > *,
.hwh-product-card .hwh-add-to-cart-button > *,
.hwh-cart-checkout .button > *,
.hwh-product-detail-premium .single_add_to_cart_button > * {
  flex: 0 0 auto;
  line-height: inherit;
}

.hwh-button i,
.button i,
.hwh-product-link i,
.hwh-product-card .hwh-add-to-cart-button i,
.hwh-cart-checkout .button i,
.hwh-product-detail-premium .single_add_to_cart_button i {
  flex-shrink: 0;
  line-height: 1;
}

.products-section .hwh-product-link,
.products-section .hwh-add-to-cart-button {
  min-height: 50px;
  align-self: stretch;
}

.products-section .hwh-product-link {
  padding-block: 11px;
}

@media (max-width: 640px) {
.products-section .hwh-product-link,
  .products-section .hwh-add-to-cart-button,
  .hwh-cart-checkout .button,
  .site-footer.hwh-footer form .button {
    width: 100%;
  }

  .products-section .hwh-product-card-actions {
    align-items: stretch;
  }
}

/* Product Detail Full — spec layout */
.hwh-product-detail-premium.hwh-product-detail-full {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: initial;
  padding: 0;
}

.hwh-product-detail-full {
  background: var(--cream);
}

.hwh-product-detail-full .hwh-pd-inner {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 40fr);
  gap: 5%;
  width: min(100%, var(--max, 1200px));
  max-width: none;
  margin: 0 auto;
  padding: 40px 24px;
  box-sizing: border-box;
}

.hwh-product-detail-full .hwh-pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.hwh-product-detail-full .hwh-pd-gallery-main {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  background: var(--nude, #f5ede6);
  border-radius: 6px;
  display: block;
}

.hwh-product-detail-full .hwh-pd-gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.hwh-product-detail-full .hwh-pd-gallery-main img.is-active {
  opacity: 1;
}

.hwh-product-detail-full .hwh-pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hwh-product-detail-full .hwh-pd-thumbs button {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 1px solid var(--line);
  transition: border-color .15s ease, transform .15s ease;
}

.hwh-product-detail-full .hwh-pd-thumbs button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.hwh-product-detail-full .hwh-pd-thumbs button.is-active {
  border: 2px solid var(--ink);
}

.hwh-product-detail-full .hwh-pd-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reviews */
.hwh-product-detail-full .hwh-pd-reviews {
  margin-top: 48px;
}

.hwh-product-detail-full .hwh-pd-reviews-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-rating-overview {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hwh-product-detail-full .hwh-pd-rating-number {
  font-size: 64px;
  font-weight: 200;
  line-height: 1;
  color: var(--ink);
  flex-shrink: 0;
}

.hwh-product-detail-full .hwh-pd-rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hwh-product-detail-full .hwh-pd-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.hwh-product-detail-full .hwh-pd-rating-bar-track {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.hwh-product-detail-full .hwh-pd-rating-bar-fill {
  height: 100%;
  background: var(--ink);
  border-radius: 2px;
}

.hwh-product-detail-full .hwh-pd-rating-total {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hwh-product-detail-full .hwh-pd-review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.hwh-product-detail-full .hwh-pd-review-item {
  display: flex;
  gap: 12px;
}

.hwh-product-detail-full .hwh-pd-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--nude);
  object-fit: cover;
}

.hwh-product-detail-full .hwh-pd-review-avatar.hwh-review-avatar-svg {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--nude);
  overflow: hidden;
}

.hwh-product-detail-full .hwh-pd-review-avatar.hwh-review-avatar-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hwh-product-detail-full .hwh-pd-review-body {
  flex: 1;
  min-width: 0;
}

.hwh-product-detail-full .hwh-pd-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}

.hwh-product-detail-full .hwh-pd-review-name {
  font-weight: 600;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-review-date {
  color: var(--muted);
}

.hwh-product-detail-full .hwh-pd-review-stars {
  display: flex;
  gap: 2px;
  margin: 4px 0;
}

.hwh-product-detail-full .hwh-pd-review-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
  flex-shrink: 0;
}

.hwh-product-detail-full .hwh-pd-review-text {
  font-size: 13px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
}

.hwh-product-detail-full .hwh-pd-review-empty,
.hwh-product-detail-full .hwh-pd-review-login-note {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.hwh-product-detail-full .hwh-pd-review-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.hwh-product-detail-full .hwh-pd-review-form h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hwh-product-detail-full .hwh-pd-review-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-review-form input,
.hwh-product-detail-full .hwh-pd-review-form select,
.hwh-product-detail-full .hwh-pd-review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  padding: 11px 12px;
}

.hwh-product-detail-full .hwh-pd-review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hwh-product-detail-full .hwh-pd-review-submit {
  justify-self: start;
}

/* Recommendations */
.hwh-product-detail-full .hwh-pd-rec {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.hwh-product-detail-full .hwh-pd-rec-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--ink);
  letter-spacing: .01em;
  text-align: center;
}

.hwh-product-detail-full .hwh-pd-rec-grid,
.hwh-related-products .hwh-related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 36px;
  align-items: stretch;
  justify-items: center;
  margin: 0;
  padding: 0;
}

.hwh-product-detail-full .hwh-pd-rec-grid .hwh-product-card,
.hwh-related-products .hwh-related-products-grid .hwh-product-card {
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hwh-product-detail-full .hwh-pd-rec-grid,
  .hwh-related-products .hwh-related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hwh-product-detail-full .hwh-pd-rec-grid,
  .hwh-related-products .hwh-related-products-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 28px;
  }
}

/* Standalone Related Products widget */
.hwh-related-products {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0;
  color: var(--ink);
}

.hwh-related-products-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  gap: 8px;
}

.hwh-related-products-head .hwh-eyebrow,
.hwh-related-products-head .eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0;
}

.hwh-related-products-title {
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: .01em;
  margin: 0;
  line-height: 1.2;
}

/* Right column */
.hwh-product-detail-full .hwh-pd-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.hwh-product-detail-full .hwh-pd-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0;
}

.hwh-product-detail-full .hwh-pd-title {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hwh-product-detail-full .hwh-pd-price {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-price del {
  font-weight: 400;
  color: var(--muted);
  margin-right: 8px;
}

.hwh-product-detail-full .hwh-pd-price ins {
  text-decoration: none;
}

/* Size selector */
.hwh-product-detail-full .hwh-pd-size-label {
  font-size: 13px;
  font-weight: 500;
  margin: 20px 0 8px;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hwh-product-detail-full .hwh-pd-size-btn {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.hwh-product-detail-full .hwh-pd-size-btn.is-active {
  background: var(--gold);
  color: var(--hwh-black);
  border-color: transparent;
}

.hwh-product-detail-full .hwh-pd-size-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

/* Qty + CTA */
.hwh-product-detail-full .hwh-pd-cart-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hwh-product-detail-full .hwh-pd-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
  flex-shrink: 0;
}

.hwh-product-detail-full .hwh-pd-qty button {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}

.hwh-product-detail-full .hwh-pd-qty button:hover {
  background: var(--nude);
}

.hwh-product-detail-full .hwh-pd-qty input {
  width: 32px;
  min-width: 32px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  padding: 0;
  -moz-appearance: textfield;
}

.hwh-product-detail-full .hwh-pd-qty input::-webkit-inner-spin-button,
.hwh-product-detail-full .hwh-pd-qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hwh-product-detail-full .hwh-pd-add-to-cart {
  flex: 1;
  min-width: 200px;
  height: 44px;
  border-radius: 6px;
  border: none;
  background: var(--gold);
  color: var(--hwh-black);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  padding: 0 20px;
  transition: opacity .15s ease, transform .15s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hwh-product-detail-full .hwh-pd-add-to-cart:hover {
  opacity: .85;
  transform: translateY(-1px);
}

/* Accordions */
.hwh-product-detail-full .hwh-pd-accordions {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.hwh-product-detail-full .hwh-pd-accordion-item {
  border-bottom: 1px solid var(--line);
}

.hwh-product-detail-full .hwh-pd-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}

.hwh-product-detail-full .hwh-pd-accordion-header:hover {
  opacity: .8;
}

.hwh-product-detail-full .hwh-pd-accordion-header svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform .2s ease;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-accordion-item.is-open .hwh-pd-accordion-header svg {
  transform: rotate(180deg);
}

.hwh-product-detail-full .hwh-pd-accordion-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 0 12px;
  display: none;
}

.hwh-product-detail-full .hwh-pd-accordion-item.is-open .hwh-pd-accordion-body {
  display: block;
}

.hwh-product-detail-full .hwh-product-description {
  margin: 0;
  color: var(--muted);
}

.hwh-product-detail-full .hwh-product-description-read-more.is-collapsed::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--paper));
}

.hwh-product-detail-full .hwh-product-description-content h2,
.hwh-product-detail-full .hwh-product-description-content h3,
.hwh-product-detail-full .hwh-product-description-content h4 {
  color: var(--ink);
}

/* Delivery block */
.hwh-product-detail-full .hwh-pd-delivery {
  margin-top: 20px;
  background: var(--paper);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hwh-product-detail-full .hwh-pd-delivery-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hwh-product-detail-full .hwh-pd-delivery-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink);
}

.hwh-product-detail-full .hwh-pd-delivery-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.hwh-product-detail-full .hwh-pd-delivery-time {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .hwh-product-detail-full .hwh-pd-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hwh-product-detail-full .hwh-pd-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .hwh-product-detail-full .hwh-pd-inner {
    padding: 24px 16px;
    gap: 32px;
  }

  .hwh-product-detail-full .hwh-pd-rating-number {
    font-size: 48px;
  }

  .hwh-product-detail-full .hwh-pd-review-form-grid {
    grid-template-columns: 1fr;
  }

  .hwh-product-detail-full .hwh-pd-rec {
    margin-top: 48px;
    padding-top: 32px;
  }

  .hwh-product-detail-full .hwh-pd-rec-title {
    margin-bottom: 20px;
  }

  .hwh-product-detail-full .hwh-pd-thumbs button {
    width: 72px;
    height: 72px;
  }

  .hwh-product-detail-full .hwh-pd-add-to-cart {
    min-width: 0;
    width: 100%;
  }
}

/* Shop Archive — spec layout */
.hwh-shop-archive {
  background: var(--cream);
}

.hwh-shop-archive .hwh-sa-inner {
  display: grid;
  grid-template-columns: var(--hwh-sidebar-w, 260px) 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
}

.hwh-shop-archive .hwh-sa-sidebar {
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.hwh-shop-archive .hwh-sa-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hwh-shop-archive .hwh-sa-sidebar-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}

.hwh-shop-archive .hwh-sa-clear-all {
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

.hwh-shop-archive .hwh-sa-clear-all:hover {
  text-decoration: underline;
}

.hwh-shop-archive .hwh-sa-clear-all[hidden] {
  display: none;
}

/* Filter accordion blocks */
.hwh-shop-archive .hwh-sa-filter-block {
  border-bottom: 1px solid var(--line);
}

.hwh-shop-archive .hwh-sa-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: left;
}

.hwh-shop-archive .hwh-sa-filter-header svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform .2s ease;
  color: var(--muted);
}

.hwh-shop-archive .hwh-sa-filter-block.is-closed .hwh-sa-filter-header svg {
  transform: rotate(-90deg);
}

.hwh-shop-archive .hwh-sa-filter-body {
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hwh-shop-archive .hwh-sa-filter-block.is-closed .hwh-sa-filter-body {
  display: none;
}

/* Checkbox row */
.hwh-shop-archive .hwh-sa-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
}

.hwh-shop-archive .hwh-sa-check-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}

.hwh-shop-archive .hwh-sa-check-box.is-checked {
  background: var(--gold);
  border-color: var(--gold);
}

.hwh-shop-archive .hwh-sa-check-box svg {
  width: 10px;
  height: 10px;
  color: var(--hwh-black);
  opacity: 0;
  transition: opacity .15s ease;
}

.hwh-shop-archive .hwh-sa-check-box.is-checked svg {
  opacity: 1;
}

.hwh-shop-archive .hwh-sa-check-label {
  font-size: 13px;
  cursor: pointer;
  color: var(--ink);
  flex: 1;
}

.hwh-shop-archive .hwh-sa-check-count {
  font-size: 12px;
  color: var(--muted);
}

/* Pill buttons (size) */
.hwh-shop-archive .hwh-sa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hwh-shop-archive .hwh-sa-pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.hwh-shop-archive .hwh-sa-pill.is-active {
  background: var(--gold);
  color: var(--hwh-black);
  border-color: transparent;
}

.hwh-shop-archive .hwh-sa-pill:hover {
  background: #f0f0f0;
}

/* Color swatches */
.hwh-shop-archive .hwh-sa-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hwh-shop-archive .hwh-sa-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: transform .15s ease, outline-color .15s ease;
  position: relative;
}

.hwh-shop-archive .hwh-sa-swatch:hover {
  transform: scale(1.1);
}

.hwh-shop-archive .hwh-sa-swatch.is-active {
  outline-color: var(--gold);
}

/* Price inputs */
.hwh-shop-archive .hwh-sa-price-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hwh-shop-archive .hwh-sa-price-input {
  width: 80px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 13px;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
}

.hwh-shop-archive .hwh-sa-price-sep {
  color: var(--muted);
  font-size: 13px;
}

/* Rating radio */
.hwh-shop-archive .hwh-sa-radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  cursor: pointer;
}

.hwh-shop-archive .hwh-sa-radio-circle {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease;
}

.hwh-shop-archive .hwh-sa-radio-circle.is-selected {
  border-color: var(--gold);
}

.hwh-shop-archive .hwh-sa-radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity .15s ease;
}

.hwh-shop-archive .hwh-sa-radio-circle.is-selected::after {
  opacity: 1;
}

.hwh-shop-archive .hwh-sa-rating-stars {
  color: var(--gold);
}

.hwh-shop-archive .hwh-sa-rating-stars svg {
  width: 12px;
  height: 12px;
}

/* Stock toggle */
.hwh-shop-archive .hwh-sa-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.hwh-shop-archive .hwh-sa-toggle-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.hwh-shop-archive .hwh-sa-toggle-track {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  position: relative;
  transition: background .2s ease;
  flex-shrink: 0;
}

.hwh-shop-archive .hwh-sa-toggle-track.is-on {
  background: var(--gold);
}

.hwh-shop-archive .hwh-sa-toggle-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform .2s ease;
}

.hwh-shop-archive .hwh-sa-toggle-track.is-on .hwh-sa-toggle-thumb {
  transform: translateX(16px);
}

/* Main content area */
.hwh-shop-archive .hwh-sa-main {
  min-width: 0;
}

.hwh-shop-archive .hwh-sa-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hwh-shop-archive .hwh-sa-results-count {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.hwh-shop-archive .hwh-sa-toolbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hwh-shop-archive .hwh-sa-sort-wrap {
  position: relative;
}

.hwh-shop-archive .hwh-sa-sort-select {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.hwh-shop-archive .hwh-sa-sort-chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 14px;
  height: 14px;
  color: var(--muted);
}

/* View toggle */
.hwh-shop-archive .hwh-sa-view-toggle {
  display: flex;
  gap: 4px;
}

.hwh-shop-archive .hwh-sa-view-btn {
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  border-radius: 4px;
  transition: background .15s ease, color .15s ease;
  display: flex;
  align-items: center;
}

.hwh-shop-archive .hwh-sa-view-btn svg {
  width: 16px;
  height: 16px;
}

.hwh-shop-archive .hwh-sa-view-btn.is-active {
  background: var(--gold);
  color: var(--hwh-black);
}

/* Product grid */
.hwh-shop-archive .hwh-sa-grid {
  display: grid;
  gap: var(--hwh-grid-gap, 24px);
}

.hwh-shop-archive .hwh-sa-grid .product-card {
  margin: 0 auto;
  width: 100%;
}

.hwh-shop-archive .hwh-sa-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.hwh-shop-archive .hwh-sa-grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.hwh-shop-archive .hwh-sa-grid-list {
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hwh-shop-archive .hwh-sa-inner {
    grid-template-columns: 1fr !important;
  }

  .hwh-shop-archive .hwh-sa-sidebar {
    display: none;
  }

  .hwh-shop-archive .hwh-sa-grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwh-shop-archive .hwh-sa-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Empty state */
.hwh-shop-archive .hwh-sa-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.hwh-shop-archive .hwh-sa-empty svg {
  width: 48px;
  height: 48px;
  color: var(--muted);
}

.hwh-shop-archive .hwh-sa-empty h3 {
  font-size: 20px;
  margin: 16px 0 0;
  color: var(--ink);
}

.hwh-shop-archive .hwh-sa-empty p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
}

.hwh-shop-archive .hwh-sa-empty button {
  margin-top: 16px;
}

/* Skeleton loading */
.hwh-shop-archive .hwh-sa-skeleton {
  display: grid;
  gap: 24px;
}

.hwh-shop-archive .hwh-sa-skeleton-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.hwh-shop-archive .hwh-sa-skeleton-card {
  background: var(--line);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hwh-shop-archive .hwh-sa-skeleton-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: hwh-shimmer 1.5s infinite;
}

@keyframes hwh-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hwh-shop-archive .hwh-sa-skeleton-img {
  aspect-ratio: 1 / 1;
  background: var(--line);
}

.hwh-shop-archive .hwh-sa-skeleton-line {
  height: 14px;
  margin: 12px 10px;
  background: var(--line);
  border-radius: 3px;
}

.hwh-shop-archive .hwh-sa-skeleton-line-short {
  width: 60%;
}

/* Pagination */
.hwh-shop-archive .hwh-sa-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hwh-shop-archive .hwh-sa-page-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
  padding: 0 8px;
}

.hwh-shop-archive .hwh-sa-page-btn:hover {
  background: var(--line);
}

.hwh-shop-archive .hwh-sa-page-btn.is-active {
  background: var(--gold);
  color: var(--hwh-black);
}

.hwh-shop-archive .hwh-sa-page-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.hwh-shop-archive .hwh-sa-page-btn:disabled:hover {
  background: transparent;
}

.hwh-shop-archive .hwh-sa-page-ellipsis {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

.hwh-shop-archive .hwh-sa-page-info {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* Mobile sticky bar */
.hwh-shop-archive .hwh-sa-mobile-bar {
  display: none;
}

/* Mobile drawer */
.hwh-shop-archive .hwh-sa-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.hwh-shop-archive .hwh-sa-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hwh-shop-archive .hwh-sa-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 85vw;
  max-width: 320px;
  background: var(--paper);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}

.hwh-shop-archive .hwh-sa-drawer.is-open {
  transform: translateX(0);
}

.hwh-shop-archive .hwh-sa-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.hwh-shop-archive .hwh-sa-drawer-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}

.hwh-shop-archive .hwh-sa-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .15s ease;
}

.hwh-shop-archive .hwh-sa-drawer-close:hover {
  background: var(--line);
}

.hwh-shop-archive .hwh-sa-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 24px;
}

.hwh-shop-archive .hwh-sa-drawer-footer {
  border-top: 1px solid var(--line);
  padding: 16px;
  background: var(--paper);
}

.hwh-shop-archive .hwh-sa-drawer-footer .hwh-sa-clear-all {
  display: block;
  margin: 8px auto 0;
  text-align: center;
}

/* Load more */
.hwh-shop-archive .hwh-sa-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* Loading state */
.hwh-shop-archive.is-loading [data-hwh-sa-results] {
  opacity: .4;
  pointer-events: none;
  transition: opacity .2s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hwh-shop-archive .hwh-sa-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hwh-shop-archive .hwh-sa-sidebar {
    display: none;
  }

  .hwh-shop-archive .hwh-sa-main {
    padding: 16px;
  }

  .hwh-shop-archive .hwh-sa-toolbar {
    display: none;
  }

  .hwh-shop-archive .hwh-sa-mobile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
  }

  .hwh-shop-archive .hwh-sa-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: var(--ink);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .15s ease;
  }

  .hwh-shop-archive .hwh-sa-filter-btn:hover {
    background: var(--line);
  }

  .hwh-shop-archive .hwh-sa-filter-btn svg {
    width: 16px;
    height: 16px;
  }

  .hwh-shop-archive .hwh-sa-filter-badge {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--hwh-black);
    font-size: 10px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
  }

  .hwh-shop-archive .hwh-sa-filter-badge.is-visible {
    display: flex;
  }

  .hwh-shop-archive .hwh-sa-sort-select {
    padding: 6px 28px 6px 10px;
    font-size: 12px;
  }

  .hwh-shop-archive .hwh-sa-grid {
    gap: 12px;
  }

  .hwh-shop-archive .hwh-sa-grid-cols-3,
  .hwh-shop-archive .hwh-sa-grid-cols-2,
  .hwh-shop-archive .hwh-sa-grid-list {
    grid-template-columns: 1fr;
  }

  .hwh-shop-archive .hwh-sa-page-btn {
    min-width: 40px;
    height: 40px;
  }
}
