:root {
  --retail-forest: #244038;
  --retail-forest-dark: #172e28;
  --retail-ivory: #f8f7f3;
  --retail-gold: #b8893e;
  --retail-ink: #172033;
  --retail-muted: #65716d;
  --retail-line: #dce2de;
}

.retail-page {
  color: var(--retail-ink);
  background: #fff;
}

.retail-page main {
  overflow: hidden;
}

.retail-section {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 78px 0;
}

.retail-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: #91671f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.retail-section-title {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 460px);
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.retail-section-title h2,
.retail-section-title p {
  margin: 0;
}

.retail-section-title h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.retail-section-title p {
  color: var(--retail-muted);
  line-height: 1.7;
}

.retail-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: flex;
  align-items: flex-end;
  background: #26372f;
  color: #fff;
}

.retail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,33,29,.82) 0%, rgba(18,33,29,.54) 44%, rgba(18,33,29,.08) 78%),
    url("./assets/hero-real-textiles.webp") center / cover no-repeat;
}

.retail-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 96px 0 88px;
}

.retail-hero h1 {
  max-width: 740px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: .94;
}

.retail-hero p {
  max-width: 600px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.7;
}

.retail-hero-actions,
.retail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.retail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--retail-forest);
  border-radius: 6px;
  padding: 12px 19px;
  background: var(--retail-forest);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.retail-button:hover {
  border-color: var(--retail-forest-dark);
  background: var(--retail-forest-dark);
  color: #fff;
}

.retail-button.light {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.94);
  color: var(--retail-forest);
}

.retail-button.outline {
  border-color: #9eb0a9;
  background: transparent;
  color: var(--retail-forest);
}

.retail-button.confirmed {
  border-color: #1b7655;
  background: #1b7655;
}

.retail-proof-strip {
  border-bottom: 1px solid var(--retail-line);
  background: var(--retail-ivory);
}

.retail-proof-strip .retail-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 22px;
  padding-bottom: 22px;
}

.retail-proof-strip div {
  padding: 5px 22px;
  border-right: 1px solid var(--retail-line);
}

.retail-proof-strip div:first-child {
  padding-left: 0;
}

.retail-proof-strip div:last-child {
  border-right: 0;
}

.retail-proof-strip strong,
.retail-proof-strip span {
  display: block;
}

.retail-proof-strip strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.retail-proof-strip span {
  color: var(--retail-muted);
  font-size: 12px;
  line-height: 1.45;
}

.retail-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.retail-product-card {
  overflow: hidden;
  border: 1px solid var(--retail-line);
  border-radius: 8px;
  background: #fff;
}

.retail-product-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.retail-product-card-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 24px;
}

.retail-product-card h3 {
  margin: 0 0 7px;
  font-size: 23px;
}

.retail-product-card p {
  margin: 0;
  color: var(--retail-muted);
  font-size: 14px;
  line-height: 1.6;
}

.retail-product-card strong {
  font-size: 18px;
}

.retail-product-card a {
  grid-column: 1 / -1;
  color: var(--retail-forest);
  font-size: 14px;
  font-weight: 850;
}

.silk-story-band {
  background: #eef2ef;
}

.silk-story {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.silk-story img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
  border-radius: 6px;
}

.silk-story h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
}

.silk-story > div > p {
  color: var(--retail-muted);
  line-height: 1.75;
}

.silk-story-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
  border-top: 1px solid #cfd8d3;
}

.silk-story-list div {
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid #cfd8d3;
}

.silk-story-list strong,
.silk-story-list span {
  display: block;
}

.silk-story-list strong {
  margin-bottom: 5px;
}

.silk-story-list span {
  color: var(--retail-muted);
  font-size: 13px;
  line-height: 1.5;
}

.retail-feature-band {
  background: var(--retail-ink);
  color: #fff;
}

.retail-feature-band .retail-section-title h2 {
  color: #fff;
}

.retail-feature-band .retail-section-title p {
  color: rgba(255,255,255,.68);
}

.wholesale-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
}

.wholesale-paths article {
  min-height: 245px;
  padding: 28px 28px 30px 0;
  border-right: 1px solid rgba(255,255,255,.2);
}

.wholesale-paths article + article {
  padding-left: 28px;
}

.wholesale-paths article:last-child {
  border-right: 0;
}

.wholesale-paths span {
  color: #d2ae6b;
  font-size: 12px;
  font-weight: 900;
}

.wholesale-paths h3 {
  margin: 42px 0 10px;
  color: #fff;
  font-size: 22px;
}

.wholesale-paths p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.65;
}

.wholesale-paths a {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.retail-document-row {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.retail-document-row h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.retail-document-row > div > p {
  color: var(--retail-muted);
  line-height: 1.7;
}

.retail-document-list {
  border-top: 1px solid var(--retail-line);
}

.retail-document-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--retail-line);
}

.retail-document-list b {
  color: #9b7028;
}

.retail-document-list h3,
.retail-document-list p {
  margin: 0;
}

.retail-document-list h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.retail-document-list p {
  color: var(--retail-muted);
  font-size: 14px;
  line-height: 1.6;
}

.empty-review-band {
  border-top: 1px solid var(--retail-line);
  border-bottom: 1px solid var(--retail-line);
}

.empty-review-band .retail-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.empty-review-band h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
}

.empty-review-band article {
  padding-left: 26px;
  border-left: 2px solid #d1ad6b;
}

.empty-review-band article strong {
  display: block;
  margin-bottom: 8px;
}

.empty-review-band article p {
  margin: 0;
  color: var(--retail-muted);
  line-height: 1.7;
}

.retail-newsletter {
  background: #edf2ef;
}

.retail-newsletter .retail-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

.retail-newsletter h2,
.retail-newsletter p {
  margin: 0;
}

.retail-newsletter h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 50px);
}

.retail-newsletter p {
  color: var(--retail-muted);
  line-height: 1.6;
}

.retail-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.retail-newsletter input {
  min-height: 48px;
  border: 1px solid #bfcac4;
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff;
}

.retail-newsletter small {
  grid-column: 1 / -1;
  color: var(--retail-muted);
}

.shop-hero,
.policy-hero {
  padding: 82px 0 56px;
  border-bottom: 1px solid var(--retail-line);
  background: var(--retail-ivory);
}

.shop-hero .retail-section,
.policy-hero .retail-section {
  padding-top: 0;
  padding-bottom: 0;
}

.shop-hero h1,
.policy-hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: .96;
}

.shop-hero p,
.policy-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--retail-muted);
  font-size: 17px;
  line-height: 1.7;
}

[data-launch-feature="newsletter"][hidden] {
  display: none;
}

.color-preview-note {
  margin: 10px 0 0;
  color: var(--retail-muted);
  font-size: 12px;
  line-height: 1.55;
}

.color-preview-note a {
  color: var(--retail-forest);
  font-weight: 800;
}

.online-variant-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid #d8dfdb;
  border-radius: 6px;
  padding: 10px 12px;
  background: #f7f8f6;
}

.online-variant-row > span:nth-child(2) {
  display: grid;
  flex: 1;
  gap: 3px;
}

.online-variant-row small {
  color: var(--retail-muted);
  font-size: 12px;
  line-height: 1.4;
}

.variant-swatch {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(23,32,51,.15);
  border-radius: 50%;
  background: var(--swatch, #ddd);
}

.paypal-purchase {
  margin-top: 2px;
  border: 1px solid #d7ded9;
  border-radius: 7px;
  padding: 17px;
  background: #f7f8f6;
}

.paypal-purchase-label {
  display: block;
  margin-bottom: 10px;
  color: var(--retail-forest);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.paypal-purchase > small {
  display: block;
  margin-top: 8px;
  color: var(--retail-muted);
  font-size: 11px;
  line-height: 1.5;
}

paypal-add-to-cart-button {
  display: none;
  width: 100%;
}

.paypal-immediate-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 5px;
  padding: 0 20px;
  background: var(--retail-forest);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.paypal-immediate-button:hover:not(:disabled) {
  background: #173e34;
}

.paypal-immediate-button:disabled {
  cursor: wait;
  opacity: .78;
}

paypal-add-to-cart-button.paypal-ready {
  display: block;
}

.paypal-loading {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--retail-line);
  border-radius: 5px;
  color: var(--retail-muted);
  font-size: 12px;
  font-weight: 800;
}

paypal-add-to-cart-button > div {
  margin: 0 !important;
}

paypal-add-to-cart-button .item-header,
paypal-add-to-cart-button .item-description {
  display: none !important;
}

paypal-add-to-cart-button [id^="form-container-"] {
  max-width: none !important;
}

paypal-add-to-cart-button .addToCartButtonContainer {
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 5px !important;
}

.paypal-status {
  margin: 9px 0 0;
  color: #8b4c42;
  font-size: 12px;
  line-height: 1.5;
}

.retail-product-page {
  padding-bottom: 96px;
}

.retail-product-detail {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 64px;
  align-items: start;
  padding-top: 42px;
}

.retail-gallery {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
}

.retail-gallery-thumbs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.retail-gallery-thumbs button {
  overflow: hidden;
  width: 84px;
  height: 84px;
  border: 1px solid var(--retail-line);
  border-radius: 4px;
  padding: 0;
  background: #fff;
}

.retail-gallery-thumbs button[aria-pressed="true"] {
  outline: 2px solid var(--retail-forest);
  outline-offset: 2px;
}

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

.retail-gallery-main {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #f0ede7;
}

.retail-purchase-panel {
  position: sticky;
  top: 96px;
}

.retail-breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--retail-muted);
  font-size: 13px;
  font-weight: 750;
}

.retail-purchase-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.retail-price {
  display: block;
  margin-bottom: 16px;
  color: var(--retail-forest);
  font-size: 24px;
  font-weight: 850;
}

.retail-product-lede {
  margin: 0 0 26px;
  color: var(--retail-muted);
  line-height: 1.7;
}

.retail-option {
  padding: 20px 0;
  border-top: 1px solid var(--retail-line);
}

.retail-option-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 850;
}

.retail-option-head span {
  color: var(--retail-muted);
  font-weight: 700;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.color-swatches button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--retail-line);
  border-radius: 6px;
  padding: 8px 11px;
  background: #fff;
  color: var(--retail-ink);
  font-size: 12px;
  font-weight: 800;
}

.color-swatches button::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid rgba(23,32,51,.15);
  border-radius: 50%;
  background: var(--swatch, #ddd);
}

.color-swatches button[aria-pressed="true"] {
  border-color: var(--retail-forest);
  box-shadow: inset 0 0 0 1px var(--retail-forest);
}

.package-options {
  display: grid;
  gap: 9px;
}

.package-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  border: 1px solid var(--retail-line);
  border-radius: 6px;
  padding: 11px 13px;
  cursor: pointer;
}

.package-options span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.package-options input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--retail-forest);
}

.package-options strong {
  font-size: 13px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 48px 40px;
  width: max-content;
  border: 1px solid var(--retail-line);
  border-radius: 6px;
}

.quantity-control button,
.quantity-control span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 0;
  background: #fff;
}

.quantity-control button {
  color: var(--retail-forest);
  font-size: 18px;
  cursor: pointer;
}

.retail-buy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.retail-buy-actions .retail-button {
  width: 100%;
}

.purchase-notes {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--retail-muted);
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.purchase-notes a {
  color: var(--retail-forest);
  font-weight: 800;
}

.retail-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 84px;
}

.retail-details h2 {
  margin: 0 0 20px;
  font-size: 32px;
}

.retail-details p {
  color: var(--retail-muted);
  line-height: 1.75;
}

.retail-specs {
  margin: 0;
  border-top: 1px solid var(--retail-line);
}

.retail-specs div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--retail-line);
}

.retail-specs dt {
  color: var(--retail-muted);
  font-size: 13px;
  font-weight: 850;
}

.retail-specs dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.bulk-bridge {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 72px;
  padding: 30px;
  border: 1px solid #cdd8d2;
  border-radius: 8px;
  background: #edf2ef;
}

.bulk-bridge h2,
.bulk-bridge p {
  margin: 0;
}

.bulk-bridge h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.bulk-bridge p {
  color: var(--retail-muted);
  font-size: 14px;
  line-height: 1.6;
}

.mobile-buy-bar {
  display: none;
}

.cart-toast {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  border-radius: 6px;
  padding: 15px 18px;
  background: var(--retail-ink);
  color: #fff;
  box-shadow: 0 18px 50px rgba(10,19,31,.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.cart-toast.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cart-toast a {
  color: #e2c58e;
  font-weight: 850;
  white-space: nowrap;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 48px;
  align-items: start;
}

.cart-list {
  border-top: 1px solid var(--retail-line);
}

.cart-line {
  display: grid;
  grid-template-columns: 122px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--retail-line);
}

.cart-line-image {
  width: 122px;
  height: 122px;
  overflow: hidden;
  border-radius: 5px;
}

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

.cart-line h2 {
  margin: 0 0 7px;
  font-size: 18px;
}

.cart-line p {
  margin: 0 0 10px;
  color: var(--retail-muted);
  font-size: 13px;
}

.cart-remove {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8b4c42;
  font-size: 12px;
  font-weight: 800;
}

.cart-line-quantity {
  display: grid;
  grid-template-columns: 32px 34px 32px;
  border: 1px solid var(--retail-line);
  border-radius: 5px;
}

.cart-line-quantity button,
.cart-line-quantity span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 0;
  background: #fff;
}

.cart-summary {
  position: sticky;
  top: 96px;
  border: 1px solid var(--retail-line);
  border-radius: 8px;
  padding: 24px;
  background: var(--retail-ivory);
}

.cart-summary h2 {
  margin: 0 0 22px;
  font-size: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--retail-line);
  font-size: 14px;
}

.cart-summary-row.total {
  font-size: 18px;
  font-weight: 850;
}

.cart-summary .retail-button {
  width: 100%;
  margin-top: 14px;
}

.coupon-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 18px;
}

.coupon-form input {
  min-width: 0;
  border: 1px solid var(--retail-line);
  border-radius: 5px;
  padding: 10px;
}

.coupon-form button {
  border: 1px solid #9eb0a9;
  border-radius: 5px;
  padding: 10px 12px;
  background: #fff;
  color: var(--retail-forest);
  font-weight: 850;
}

.cart-note {
  margin: 12px 0 0;
  color: var(--retail-muted);
  font-size: 12px;
  line-height: 1.5;
}

.cart-empty {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid var(--retail-line);
  border-radius: 8px;
  text-align: center;
}

.cart-empty h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.cart-empty p {
  margin: 0 0 20px;
  color: var(--retail-muted);
}

.paypal-cart-section {
  padding-top: 52px;
}

.paypal-cart-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
  align-items: center;
  border: 1px solid var(--retail-line);
  border-radius: 8px;
  padding: 42px;
  background: var(--retail-ivory);
}

.paypal-cart-card h2 {
  margin: 8px 0 12px;
  font-size: 32px;
}

.paypal-cart-card p {
  max-width: 700px;
  color: var(--retail-muted);
  line-height: 1.7;
}

.paypal-cart-action {
  display: grid;
  justify-items: stretch;
  gap: 12px;
}

.paypal-cart-action paypal-cart-button {
  display: block;
  width: 100%;
}

.paypal-cart-action .viewCartButtonContainer {
  justify-content: center !important;
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 5px !important;
}

.paypal-cart-action > a {
  color: var(--retail-forest);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}

.policy-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 6px;
  align-self: start;
}

.policy-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--retail-line);
  color: var(--retail-muted);
  font-size: 14px;
  font-weight: 800;
}

.policy-content section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--retail-line);
}

.policy-content h2 {
  margin: 0 0 15px;
  font-size: 30px;
}

.policy-content h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.policy-content p,
.policy-content li {
  color: var(--retail-muted);
  line-height: 1.75;
}

.policy-content ul,
.care-steps {
  padding-left: 20px;
}

.care-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.care-grid img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.care-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--retail-line);
}

.care-steps b {
  color: #9b7028;
}

.care-steps strong {
  display: block;
  margin-bottom: 6px;
}

.care-steps p {
  margin: 0;
  color: var(--retail-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  body.retail-page {
    padding-bottom: 0;
  }

  .retail-section-title,
  .silk-story,
  .retail-document-row,
  .empty-review-band .retail-section,
  .retail-newsletter .retail-section,
  .retail-product-detail,
  .retail-details,
  .cart-layout,
  .policy-layout,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .retail-product-detail,
  .cart-layout {
    gap: 34px;
  }

  .retail-purchase-panel,
  .cart-summary,
  .policy-nav {
    position: static;
  }

  .paypal-cart-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .retail-proof-strip .retail-section,
  .wholesale-paths {
    grid-template-columns: repeat(2, 1fr);
  }

  .retail-proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .retail-proof-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--retail-line);
  }

  .wholesale-paths article:nth-child(2) {
    border-right: 0;
  }

  .wholesale-paths article:nth-child(3) {
    padding-left: 0;
  }

  .retail-gallery {
    max-width: 700px;
  }

  .policy-nav {
    display: flex;
    overflow-x: auto;
  }

  .policy-nav a {
    flex: 0 0 auto;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .shop-hero {
    padding: 48px 0 34px;
  }

  .shop-hero h1 {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: 42px;
    line-height: 1.02;
  }

  .shop-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .retail-section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  .retail-hero {
    min-height: 610px;
  }

  .retail-hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 72px 0 56px;
  }

  .retail-hero h1 {
    font-size: 48px;
  }

  .retail-hero p {
    font-size: 16px;
  }

  .retail-hero-actions,
  .retail-actions,
  .retail-buy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .retail-button {
    width: 100%;
  }

  .paypal-cart-card {
    padding: 24px;
  }

  .paypal-cart-card h2 {
    font-size: 27px;
  }

  .retail-proof-strip .retail-section,
  .retail-product-grid,
  .wholesale-paths,
  .silk-story-list {
    grid-template-columns: 1fr;
  }

  .retail-proof-strip div,
  .retail-proof-strip div:first-child {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--retail-line);
  }

  .retail-product-card img {
    height: 330px;
  }

  .retail-product-card-copy {
    grid-template-columns: 1fr auto;
    padding: 18px;
  }

  .silk-story img {
    min-height: 390px;
  }

  .wholesale-paths article,
  .wholesale-paths article + article,
  .wholesale-paths article:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .wholesale-paths h3 {
    margin-top: 22px;
  }

  .retail-newsletter form {
    grid-template-columns: 1fr;
  }

  .retail-gallery {
    grid-template-columns: 1fr;
  }

  .retail-gallery-thumbs {
    grid-row: 2;
    grid-template-columns: repeat(4, 1fr);
  }

  .retail-gallery-thumbs button {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .retail-purchase-panel h1 {
    font-size: 36px;
  }

  .retail-specs div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .bulk-bridge {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 14px;
    border-top: 1px solid var(--retail-line);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -12px 35px rgba(15,23,42,.12);
  }

  .mobile-buy-bar span {
    font-weight: 900;
  }

  .mobile-buy-bar .retail-button {
    min-height: 44px;
  }

  .retail-product-page {
    padding-bottom: 84px;
  }

  .cart-line {
    grid-template-columns: 90px 1fr;
    align-items: start;
  }

  .cart-line-image {
    width: 90px;
    height: 90px;
  }

  .cart-line-quantity {
    grid-column: 2;
    width: max-content;
  }

  .cart-line > strong {
    grid-column: 2;
  }

  .cart-toast {
    right: 12px;
    bottom: 74px;
    left: 12px;
    max-width: none;
  }
}

/* Homepage: preserve the original editorial factory-backed visual language. */
.refined-home {
  background: #fff;
}

.refined-home .refined-hero {
  min-height: 500px;
}

.refined-home .hero-content > .eyebrow {
  display: block;
  margin-bottom: 13px;
  color: #e5bd72;
  font-weight: 900;
  text-transform: uppercase;
}

.refined-home .hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: 0;
}

.refined-home .hero p {
  max-width: 620px;
}

.refined-home .quick-grid a {
  min-height: 320px;
}

.refined-home .quick-grid span {
  bottom: 78px;
}

.refined-home .quick-grid strong {
  bottom: 42px;
}

.refined-home .quick-grid small {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
}

.home-inline-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.home-inline-actions .text-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.program-kicker {
  display: block;
  margin-bottom: 8px;
  color: #a87527;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.refined-home .capability.band {
  background: #f2f4f0;
}

.refined-home .refined-newsletter {
  border-top: 1px solid var(--retail-line);
  border-bottom: 1px solid var(--retail-line);
}

.refined-home .refined-newsletter .retail-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.refined-home .cta > .section > .eyebrow {
  display: block;
  color: #a87527;
}

@media (max-width: 900px) {
  .refined-home .refined-hero {
    min-height: 460px;
  }

  .refined-home .hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 600px) {
  .refined-home .promo-bar {
    min-height: 34px;
  }

  .refined-home .refined-hero {
    min-height: 430px;
  }

  .refined-home .hero-content > .eyebrow {
    margin-bottom: 10px;
  }

  .refined-home .hero h1 {
    font-size: 42px;
  }

  .refined-home .hero p {
    font-size: 15px;
  }

  .refined-home .quick-grid a {
    min-height: 220px;
  }

  .home-inline-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
