/*
Theme Name: Aurelith Stone
Theme URI: https://drystonebathmat.com
Author: Codex
Description: A premium WordPress storefront theme for Aurelith stone bath mats.
Version: 1.0.0
Text Domain: aurelith-stone
*/

:root {
  --ivory: #f7f4ee;
  --chalk: #fcfbf8;
  --stone: #d8d1c6;
  --taupe: #988d81;
  --charcoal: #24211e;
  --slate: #4f5652;
  --sage: #7d8b7b;
  --sand: #e8dfd2;
  --line: rgba(36, 33, 30, 0.12);
  --shadow: 0 24px 70px rgba(36, 33, 30, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 210, 0.7), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
}

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

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

ul {
  margin: 0;
  padding-left: 20px;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(252, 251, 248, 0.9);
  border-bottom: 1px solid rgba(36, 33, 30, 0.06);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(160deg, #f1ece2 0%, #cfc6b8 48%, #8e8478 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(36, 33, 30, 0.08);
}

.brand-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-tagline {
  margin: 3px 0 0;
  font-size: 0.92rem;
  color: rgba(36, 33, 30, 0.62);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: rgba(36, 33, 30, 0.8);
}

.button-link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-link:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 14px 34px rgba(36, 33, 30, 0.18);
}

.button-secondary {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 33, 30, 0.1);
}

.hero {
  padding: 82px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 32px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.feature-card,
.collection-panel,
.showcase-card,
.material-panel,
.cta-panel,
.page-card,
.post-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(125, 139, 123, 0.1);
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.page-card h1,
.post-card h1 {
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  max-width: 12ch;
}

.hero-copy p,
.section-heading p,
.page-card p,
.post-card p {
  color: rgba(36, 33, 30, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.hero-metrics div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(247, 244, 238, 0.9);
  border: 1px solid rgba(36, 33, 30, 0.08);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.hero-metrics span {
  display: block;
  font-size: 0.92rem;
  color: rgba(36, 33, 30, 0.68);
}

.hero-note {
  margin-top: 22px;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 640px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 223, 210, 0.94));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 28px;
  border: 1px solid rgba(36, 33, 30, 0.08);
}

.bath-scene {
  position: relative;
  height: 100%;
  min-height: 560px;
}

.scene-wall,
.scene-floor,
.scene-shadow,
.scene-mat,
.scene-towel,
.scene-stool {
  position: absolute;
  border-radius: 28px;
}

.scene-wall {
  inset: 22px 22px 44% 22px;
  background:
    linear-gradient(135deg, #f7f5f1, #ece5da);
}

.scene-floor {
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 42%;
  background:
    linear-gradient(180deg, #d5cdc0, #bbb09f);
}

.scene-shadow {
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 42px;
  border-radius: 999px;
  background: rgba(36, 33, 30, 0.14);
  filter: blur(16px);
}

.scene-mat {
  left: 15%;
  right: 15%;
  bottom: 19%;
  height: 30%;
  border-radius: 36px;
  background:
    linear-gradient(160deg, #fbfaf7 0%, #d8d0c3 48%, #958b7e 100%);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.65),
    inset 0 -18px 28px rgba(79, 86, 82, 0.1),
    0 26px 45px rgba(36, 33, 30, 0.12);
}

.scene-towel {
  top: 15%;
  right: 12%;
  width: 28%;
  height: 14%;
  background: linear-gradient(180deg, #ffffff, #e9e0d3);
  transform: rotate(-9deg);
}

.scene-stool {
  left: 10%;
  top: 18%;
  width: 18%;
  height: 22%;
  background:
    linear-gradient(180deg, rgba(152, 141, 129, 0.18), rgba(152, 141, 129, 0.32));
}

.visual-caption {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 33, 30, 0.08);
}

.visual-caption strong,
.feature-card h3,
.collection-panel h3,
.showcase-card h2,
.material-panel h3,
.page-card h2,
.page-card h3,
.post-card h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.section {
  padding: 34px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.feature-grid,
.collection-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.collection-panel,
.showcase-card,
.material-panel {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.feature-card p,
.collection-panel p,
.showcase-card p,
.material-panel p {
  margin-bottom: 0;
}

.finish-grid,
.quote-band {
  display: grid;
  gap: 20px;
}

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

.finish-card,
.quote-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-band {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.quote-card h2 {
  margin: 14px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.quote-card p,
.finish-card p {
  margin: 0;
  color: rgba(36, 33, 30, 0.72);
}

.quote-card-accent {
  background:
    linear-gradient(180deg, rgba(216,209,198,0.32), rgba(255,255,255,0.82));
}

.number-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(125, 139, 123, 0.1);
  color: var(--slate);
  font-weight: 700;
}

.material-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
}

.material-panel.accent {
  background:
    linear-gradient(180deg, rgba(216, 209, 198, 0.46), rgba(255, 255, 255, 0.76));
}

.collection-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.cta {
  padding: 42px 0 72px;
}

.cta-panel {
  padding: clamp(32px, 5vw, 52px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 223, 210, 0.8));
}

.page-wrap,
.blog-wrap {
  padding: 64px 0 84px;
}

.page-card,
.post-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
}

.post-list {
  display: grid;
  gap: 20px;
}

.archive-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 0 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(36, 33, 30, 0.08);
  color: rgba(36, 33, 30, 0.68);
}

.shop-wrap,
.single-product-wrap {
  padding: 24px 0 84px;
}

.shop-hero {
  padding: 34px 0 18px;
}

.shop-hero-grid,
.single-product-shell,
.single-product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 22px;
}

.shop-hero-copy,
.shop-hero-panel,
.single-product-gallery-card,
.single-product-summary-card,
.story-card,
.single-product-tabs-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 42px);
}

.shop-hero-copy h1,
.single-product-summary-card .product_title,
.story-card h2 {
  margin: 16px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.shop-hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 8ch;
}

.shop-hero-copy p,
.shop-hero-panel p,
.story-card p {
  color: rgba(36, 33, 30, 0.74);
}

.shop-hero-tags,
.aurelith-loop-meta,
.aurelith-color-swatches,
.aurelith-buybar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-hero-tags {
  margin-top: 22px;
}

.shop-hero-tags span,
.aurelith-loop-meta span,
.aurelith-product-card__eyebrow,
.aurelith-buybar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.95);
  border: 1px solid rgba(36, 33, 30, 0.08);
  color: rgba(36, 33, 30, 0.72);
  font-size: 0.83rem;
}

.aurelith-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(36, 33, 30, 0.08);
  color: rgba(36, 33, 30, 0.72);
  font-size: 0.83rem;
}

.swatch-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(36, 33, 30, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.swatch-pure-white {
  background: linear-gradient(180deg, #ffffff, #e9e3d8);
}

.swatch-stone-grey {
  background: linear-gradient(180deg, #c6c0b7, #8d877f);
}

.swatch-matte-black {
  background: linear-gradient(180deg, #494642, #1e1c1a);
}

.swatch-stone {
  background: linear-gradient(180deg, #e1dbcf, #a79a8d);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 22px;
}

.shop-toolbar .woocommerce-result-count,
.shop-toolbar .woocommerce-ordering {
  margin: 0;
}

.shop-toolbar select,
.variations select,
.quantity .qty {
  min-height: 50px;
  border-radius: 18px;
  border: 1px solid rgba(36, 33, 30, 0.14);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 16px;
  font: inherit;
  color: var(--charcoal);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product.aurelith-product-card {
  width: auto;
  margin: 0;
  float: none;
}

.aurelith-product-card__frame {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.aurelith-product-card__media {
  display: flex;
  align-items: stretch;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.6), rgba(232,223,210,0.95));
}

.aurelith-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aurelith-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.aurelith-product-card__body .woocommerce-loop-product__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.02;
}

.aurelith-product-card__body .price {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 600;
}

.aurelith-product-card__copy {
  margin: 0;
  color: rgba(36, 33, 30, 0.72);
}

.aurelith-product-card__footer {
  margin-top: auto;
}

.aurelith-product-card__footer .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 600;
}

.aurelith-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(36, 33, 30, 0.62);
  font-size: 0.92rem;
}

.single-product-gallery-card .woocommerce-product-gallery {
  margin: 0;
}

.single-product-gallery-card .woocommerce-product-gallery__wrapper {
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(232,223,210,0.95));
}

.single-product-gallery-card .woocommerce-product-gallery__image img {
  width: 100%;
}

.single-product-summary-card .price {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
}

.single-product-summary-card .woocommerce-product-details__short-description {
  color: rgba(36, 33, 30, 0.74);
}

.aurelith-product-highlights {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.single-product-summary-card .aurelith-color-swatches {
  margin: 18px 0 8px;
}

.aurelith-buybar {
  margin: 18px 0 0;
}

.aurelith-product-highlights div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(247, 244, 238, 0.9);
  border: 1px solid rgba(36, 33, 30, 0.08);
}

.aurelith-product-highlights strong {
  display: block;
  margin-bottom: 6px;
}

.aurelith-product-highlights span,
.aurelith-material-note p {
  color: rgba(36, 33, 30, 0.7);
}

.aurelith-material-note {
  margin-top: 20px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(216,209,198,0.32), rgba(255,255,255,0.78));
  border: 1px solid rgba(36, 33, 30, 0.08);
}

.variations {
  margin: 22px 0;
}

.variations th,
.variations td {
  padding: 0 0 14px;
  text-align: left;
  vertical-align: top;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.single_add_to_cart_button.button.alt {
  min-width: 180px;
  min-height: 52px;
  border-radius: 999px;
  background: var(--charcoal);
}

.single-product-tabs-card .woocommerce-tabs {
  margin: 0;
}

.single-product-tabs-card .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 0;
  margin-bottom: 24px;
  padding: 0;
}

.single-product-tabs-card .tabs li {
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.95);
}

.single-product-tabs-card .tabs li a {
  padding: 12px 18px;
}

.single-product-tabs-card .panel h2:first-child {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading,
  .feature-grid,
  .collection-grid,
  .showcase-grid,
  .material-band,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .primary-nav,
  .primary-nav ul,
  .footer-inner,
  .visual-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

  .shop-hero-grid,
  .single-product-shell,
  .single-product-story,
  .finish-grid,
  .quote-band,
  .aurelith-product-card__frame,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
  }

  .header-inner {
    padding: 16px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .button-link,
  button,
  input[type="submit"] {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .scene-mat {
    left: 10%;
    right: 10%;
  }

  .shop-toolbar,
  .woocommerce-variation-add-to-cart {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar .woocommerce-ordering,
  .shop-toolbar .woocommerce-result-count {
    width: 100%;
  }
}

:root {
  --ls-cream: #fbf7f0;
  --ls-warm-white: #fffdf8;
  --ls-beige: #e8dccd;
  --ls-stone: #d6cec2;
  --ls-wood: #b88f67;
  --ls-olive: #4f5a2e;
  --ls-olive-deep: #445028;
  --ls-ink: #2a241f;
  --ls-muted: #6f665d;
  --ls-line: rgba(42, 36, 31, 0.12);
  --ls-soft-line: rgba(42, 36, 31, 0.08);
  --ls-card: #fffdf9;
  --ls-shadow: 0 24px 60px rgba(79, 61, 40, 0.08);
}

body {
  color: var(--ls-ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(232, 220, 205, 0.35), transparent 36%),
    linear-gradient(180deg, var(--ls-warm-white) 0%, var(--ls-cream) 100%);
}

.site-shell {
  overflow: clip;
}

.site-announcement {
  padding: 10px 16px;
  background: var(--ls-olive);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(42, 36, 31, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 80px), 1440px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-wordmark {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  letter-spacing: -0.04em;
  color: #261f1a;
}

.brand-mark,
.brand-name,
.brand-tagline {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 28px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.6vw, 28px);
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(42, 36, 31, 0.86);
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 8px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ls-olive);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a.is-active::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--ls-ink);
}

.header-icon-link svg {
  width: 20px;
  height: 20px;
}

.button-link,
button,
input[type="submit"] {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ls-olive);
  color: #fff;
  box-shadow: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ls-olive-deep);
}

.button-secondary,
.button-outline {
  border: 1px solid rgba(42, 36, 31, 0.24);
  background: transparent;
  color: var(--ls-ink);
}

.button-outline {
  min-height: 42px;
}

.section-pad {
  padding: 34px 0;
}

.section-heading h2,
.lumastone-hero__copy h1,
.lumastone-cta-band h2,
.lumastone-wholesale__copy h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #2b231d;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading-center {
  text-align: center;
}

.section-heading-center h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.lumastone-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ls-olive);
}

.lumastone-home {
  padding-bottom: 0;
}

.lumastone-hero {
  min-height: 720px;
  max-height: 760px;
  padding: 52px 0 36px;
  background: linear-gradient(180deg, #fffdf8 0%, #fbf7f0 100%);
}

.lumastone-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: 64px;
  align-items: center;
  min-height: 100%;
}

.lumastone-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 12px 0 12px 40px;
}

.lumastone-hero__copy h1 {
  margin: 0 0 30px;
  max-width: 540px;
  font-size: clamp(56px, 4.2vw, 76px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.lumastone-hero__copy h1 em {
  font-style: italic;
  font-weight: 400;
}

.lumastone-hero__copy p {
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--ls-muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
}

.lumastone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.lumastone-hero__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 520px;
  max-height: 560px;
  margin: 0;
  align-self: center;
  justify-self: start;
  border-radius: 2px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lumastone-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(33, 24, 17, 0.03)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.lumastone-hero__image,
.lumastone-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.08);
  transform-origin: center;
}

.lumastone-image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(180deg, #eee5d9 0%, #e3d8cb 52%, #d8cdbf 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), inset 0 -28px 44px rgba(126, 112, 96, 0.08);
}

.lumastone-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 38%, rgba(119, 103, 86, 0.08) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.lumastone-image-placeholder::after {
  content: "Stone Bath Mat Bathroom Image\A Replace after uploading real photos";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 18px;
  border: 1px solid rgba(138, 129, 117, 0.18);
  border-radius: 4px;
  background: rgba(255, 253, 249, 0.58);
  color: #8a8175;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  white-space: pre-line;
  text-align: center;
}

.lumastone-image-placeholder-hero {
  min-height: 560px;
}

.lumastone-image-placeholder-stone {
  min-height: 100%;
}

.lumastone-image-placeholder-product {
  aspect-ratio: 1.08 / 1;
}

.lumastone-image-placeholder-lifestyle {
  aspect-ratio: 1.2 / 0.86;
}

.lumastone-image-placeholder-wholesale {
  width: 72%;
  min-height: 250px;
  margin-left: auto;
}

.lumastone-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 600px;
  margin-top: 48px;
  align-items: start;
}

.lumastone-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  justify-items: center;
  text-align: center;
  color: #564d46;
  font-size: 13px;
  line-height: 1.3;
  padding: 0 2px;
}

.lumastone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #6f665d;
}

.lumastone-benefit span:last-child {
  white-space: nowrap;
}

.lumastone-icon svg,
.lumastone-step__icon svg {
  width: 100%;
  height: 100%;
}

.comparison-section {
  padding: 44px 0 24px;
  background: #faf8f3;
  overflow: visible;
}

#why-it-works .section-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

#why-it-works .section-heading {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

#why-it-works .section-heading h2 {
  margin: 0;
  text-align: center;
  max-width: none;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.1;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  color: #2b2a26;
  margin-left: auto;
  margin-right: auto;
}

.comparison-layout {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  grid-template-columns: 1.45fr 0.85fr 1fr;
  gap: 17px;
  align-items: stretch;
}

.fabric-comparison-group {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #faf8f3;
  border: 1px solid rgba(228, 221, 210, 0.7);
  border-radius: 8px;
  overflow: hidden;
  height: 290px;
}

.fabric-photo {
  height: 100%;
  overflow: hidden;
}

.fabric-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fabric-copy {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(228, 221, 210, 0.7);
  background: #faf8f3;
}

.stone-photo {
  height: 290px;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

.stone-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.lumastone-stone-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.18), transparent 12%),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.14), transparent 10%),
    linear-gradient(180deg, #ece4d8 0%, #ddd3c7 52%, #d1c6b9 100%);
}

.lumastone-stone-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(108, 95, 81, 0.03));
}

.stone-benefit-panel {
  height: 290px;
  padding: 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f6f2ea;
  border: 1px solid rgba(228, 221, 210, 0.65);
  border-radius: 8px;
  box-shadow: none;
}

.fabric-copy h3,
.stone-benefit-panel h3 {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: #2b2a26;
}

.lumastone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lumastone-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 30px;
  color: #6f6a61;
  font-size: 15px;
  line-height: 1.45;
}

.lumastone-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(138, 129, 117, 0.45);
}

.lumastone-list-negative li::after,
.lumastone-list-positive li::after {
  content: "";
  position: absolute;
  left: 5px;
}

.lumastone-list-negative li::after {
  top: 4px;
  width: 9px;
  height: 9px;
  background:
    linear-gradient(45deg, transparent 44%, #8a8175 44%, #8a8175 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, #8a8175 44%, #8a8175 56%, transparent 56%);
}

.lumastone-list-positive li::after {
  left: 4px;
  top: 4px;
  width: 9px;
  height: 5px;
  border-left: 1.8px solid #68724b;
  border-bottom: 1.8px solid #68724b;
  transform: rotate(-45deg);
}

.lumastone-how {
  padding: 32px 0 68px;
  background: #fffdf8;
}

.lumastone-how .section-inner {
  width: min(calc(100% - 96px), 1040px);
  margin: 0 auto;
  text-align: center;
}

.lumastone-how .section-heading {
  display: block;
  width: 100%;
  margin-bottom: 28px;
  text-align: center;
}

.lumastone-how .section-heading h2 {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-family: inherit;
  font-weight: 600;
}

.lumastone-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  justify-items: center;
}

.lumastone-step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.lumastone-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -5px;
  top: 24px;
  color: #8a8175;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
}

.lumastone-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 14px;
  border: 1px solid #dcd6cc;
  border-radius: 50%;
  color: #6f6a61;
}

.lumastone-step h3 {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.lumastone-step p {
  margin: 0;
  max-width: 190px;
  margin-left: auto;
  margin-right: auto;
  color: #6f6a61;
  font-size: 14px;
  line-height: 1.5;
}

#shop.section-pad {
  padding-bottom: 22px;
}

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

#shop .section-heading {
  display: block;
  text-align: center;
}

#shop .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lumastone-product {
  overflow: hidden;
  border: 1px solid rgba(228, 221, 210, 0.72);
  background: #fffdf8;
  box-shadow: none;
}

.lumastone-product__media {
  display: block;
  background: transparent;
  overflow: hidden;
}

.lumastone-product__media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transform-origin: center;
}

.lumastone-image-placeholder-shop::after {
  content: "Image Placeholder";
  font-size: 11px;
  letter-spacing: 0.05em;
  background: rgba(255, 253, 249, 0.46);
  border: none;
}

.lumastone-product__body {
  padding: 18px 20px 22px;
  text-align: center;
}

.lumastone-product__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.lumastone-product__copy {
  margin: 0 0 10px;
  color: #645c54;
  font-size: 14px;
  line-height: 1.55;
}

.lumastone-product__variant {
  margin: 0 0 16px;
  color: #6e655d;
  font-size: 14px;
  line-height: 1.5;
}

.lumastone-product__price {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 600;
}

.comparison-table-section {
  padding-top: 56px;
  padding-bottom: 42px;
}

.comparison-table-section .section-heading h2 {
  text-align: center;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: 26px;
}

.comparison-table-section .section-heading {
  display: block;
  text-align: center;
}

.comparison-table-section .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.lumastone-table-wrap {
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid #e4ddd2;
  border-radius: 8px;
  background: #faf8f3;
}

.lumastone-table {
  width: 100%;
  border-collapse: collapse;
  background: #faf8f3;
}

.lumastone-table th,
.lumastone-table td {
  padding: 11px 18px;
  font-size: 14px;
  line-height: 1.35;
  border-bottom: 1px solid #e9e2d8;
  border-right: 1px solid #e9e2d8;
  text-align: left;
  vertical-align: middle;
}

.lumastone-table thead th {
  background: #f2ede5;
  color: #2b2a26;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.lumastone-table tbody th {
  width: 24%;
  font-weight: 600;
  color: #2b2a26;
  background: rgba(255, 253, 248, 0.54);
}

.lumastone-table thead th:nth-child(2),
.lumastone-table td:nth-child(2) {
  width: 38%;
}

.lumastone-table thead th:nth-child(3),
.lumastone-table td:nth-child(3) {
  width: 38%;
}

.lumastone-table tbody td {
  color: #6f6a61;
}

.lumastone-table tr:last-child th,
.lumastone-table tr:last-child td {
  border-bottom: 0;
}

.lumastone-table th:last-child,
.lumastone-table td:last-child {
  border-right: 0;
}

.lumastone-table__check {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 24px;
  color: #2f2f29;
}

.lumastone-table__check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(79, 90, 53, 0.28);
  transform: translateY(-50%);
}

.lumastone-table__check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid #4f5a35;
  border-bottom: 1.6px solid #4f5a35;
  transform: translateY(-58%) rotate(-45deg);
}

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

.lifestyle-section {
  padding-top: 30px;
}

.lifestyle-section .section-heading {
  display: block;
  text-align: center;
}

.lifestyle-section .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: nowrap;
}

.lumastone-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}

.lumastone-gallery__item img {
  width: 100%;
  aspect-ratio: 1.2 / 0.86;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transform-origin: center;
}

.lumastone-wholesale {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 220px;
  gap: 24px;
  padding: 18px 36px 18px 18px;
  align-items: stretch;
  max-width: 1440px;
  min-height: 220px;
  margin: 0 auto;
  background: linear-gradient(90deg, #f2e6d8 0%, #f6efe6 36%, #faf7f2 100%);
  border: 1px solid #e6d8c7;
  border-radius: 16px;
  overflow: hidden;
}

.lumastone-wholesale__media {
  position: relative;
  display: block;
  align-self: stretch;
  height: auto;
  min-height: 220px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: -18px 0 -18px -18px;
  overflow: hidden;
}

.lumastone-wholesale__media::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 48px;
  background: linear-gradient(90deg, rgba(242, 230, 216, 0) 0%, rgba(246, 239, 230, 0.88) 100%);
  pointer-events: none;
}

.lumastone-wholesale__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  display: block;
  border: 0;
  box-shadow: none;
}

.lumastone-wholesale__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lumastone-wholesale__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2.125rem, 3vw, 2.625rem);
  line-height: 1.05;
  color: #2f241d;
}

.lumastone-wholesale__lead,
.lumastone-wholesale__copy p {
  color: #6f665d;
}

.lumastone-wholesale__lead {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 500;
}

.lumastone-wholesale__copy p {
  margin: 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.5;
}

.lumastone-wholesale__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 18px;
  align-items: center;
  color: #5f5a52;
}

.lumastone-wholesale__features span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 28px;
  font-size: 14px;
}

.lumastone-wholesale__features span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(139, 135, 115, 0.28);
  border-radius: 50%;
}

.lumastone-wholesale__features span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 1.6px solid #8b8773;
  border-bottom: 1.6px solid #8b8773;
  transform: rotate(-45deg);
}

.lumastone-wholesale__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lumastone-wholesale__action .button-link {
  min-width: 210px;
  min-height: 56px;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  background: var(--ls-olive);
  border-color: var(--ls-olive);
  color: #ffffff;
}

.lumastone-wholesale__action .button-link:hover,
.lumastone-wholesale__action .button-link:focus-visible {
  background: #3f4a2a;
  border-color: #3f4a2a;
  color: #ffffff;
}

.lumastone-reviews-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

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

.lumastone-review {
  padding: 24px;
}

.lumastone-review p {
  margin: 14px 0 18px;
  color: #594f47;
  font-size: 17px;
  line-height: 1.65;
}

.lumastone-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4f473f;
}

.lumastone-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #5f4a38 0%, #342821 100%);
  color: #fff;
  font-weight: 700;
}

.lumastone-faq-wrap {
  padding: 24px 28px;
}

.lumastone-faq {
  display: grid;
  gap: 0;
}

.lumastone-faq__item {
  border-top: 1px solid var(--ls-soft-line);
}

.lumastone-faq__item:first-child {
  border-top: 0;
}

.lumastone-faq__item summary {
  position: relative;
  padding: 18px 36px 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 500;
}

.lumastone-faq__item summary::-webkit-details-marker {
  display: none;
}

.lumastone-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 15px;
  color: #70665d;
  font-size: 26px;
  line-height: 1;
}

.lumastone-faq__item[open] summary::after {
  content: "-";
}

.lumastone-faq__item p {
  margin: 0 0 18px;
  color: var(--ls-muted);
}

.lumastone-cta-band {
  margin-top: 14px;
  padding: 56px 0;
  background:
    linear-gradient(0deg, rgba(36, 28, 21, 0.28), rgba(36, 28, 21, 0.28)),
    url("/wp-content/themes/aurelith-stone/assets/thmins-cta-bathroom-1.webp") center/cover no-repeat;
}

.lumastone-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lumastone-cta-band h2,
.lumastone-cta-band p {
  margin: 0;
  color: #fff;
}

.lumastone-cta-band h2 {
  font-size: clamp(2.3rem, 3.4vw, 4rem);
}

.lumastone-cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.site-footer {
  padding: 34px 0 30px;
  background: #f8f2e9;
  border-top: 1px solid rgba(42, 36, 31, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.95fr));
  gap: 26px;
  align-items: start;
}

.site-footer h3,
.footer-brand strong {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand strong {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #5f564d;
  font-size: 14px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 56px;
  overflow: hidden;
  border: 1px solid rgba(42, 36, 31, 0.16);
  background: #fff;
}

.newsletter-form input {
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  font: inherit;
}

.newsletter-form button {
  min-height: 54px;
  border-radius: 0;
  border-left: 1px solid rgba(42, 36, 31, 0.12);
  background: var(--ls-olive);
  color: #fff;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.footer-contact-bar {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 36, 31, 0.08);
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: #6a6259;
  font-size: 13px;
  line-height: 1.55;
}

.footer-contact-row span,
.footer-contact-address {
  white-space: nowrap;
}

.footer-contact-row strong,
.footer-contact-address strong {
  color: #3f372f;
  font-weight: 600;
}

.footer-contact-address {
  margin-top: 10px;
  color: #6a6259;
  font-size: 13px;
  line-height: 1.6;
  white-space: normal;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(42, 36, 31, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #6a6259;
}

.footer-bottom .footer-legal-links {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 48px), 1440px);
  }

  .lumastone-hero__grid,
  .lumastone-wholesale,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-row,
  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .lumastone-products,
  .lumastone-gallery,
  .lumastone-reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lumastone-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 420px;
  }

  .lumastone-hero__copy {
    padding-left: 24px;
  }

  .comparison-layout {
    padding: 0 48px;
  }
}

@media (max-width: 900px) {
  .site-announcement {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .header-inner,
  .primary-nav,
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    padding: 18px 0;
  }

  .primary-nav {
    width: 100%;
    gap: 16px;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .lumastone-hero__grid,
  .lumastone-steps,
  .lumastone-products,
  .lumastone-gallery,
  .lumastone-reviews,
  .lumastone-cta-band__inner {
    grid-template-columns: 1fr;
  }

  .lumastone-step:not(:last-child)::after {
    display: none;
  }

  .lumastone-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 320px;
  }

  .lumastone-hero__copy h1 {
    font-size: clamp(54px, 10vw, 72px);
  }

  .lumastone-hero__media,
  .lumastone-image-placeholder-hero {
    aspect-ratio: 4 / 3;
    min-height: 460px;
    max-height: 520px;
    max-width: 100%;
  }

  .lumastone-hero {
    min-height: unset;
    max-height: none;
    padding: 48px 0 58px;
  }

  .lumastone-hero__copy {
    min-height: auto;
    padding-left: 0;
  }

  #why-it-works .section-heading {
    margin-bottom: 36px;
  }

  #why-it-works .section-heading h2 {
    white-space: normal;
  }

  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 24px;
  }

  .fabric-comparison-group,
  .stone-photo,
  .stone-benefit-panel {
    height: auto;
  }

  .fabric-comparison-group {
    grid-template-columns: 1fr;
  }

  .fabric-copy {
    border-left: 0;
    border-top: 1px solid #e7e0d6;
  }

  .stone-photo {
    min-height: 280px;
  }

  .lumastone-compare__copy {
    padding: 24px 22px;
  }

  .lumastone-cta-band__inner {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 24px), 1440px);
  }

  .button-link,
  button,
  input[type="submit"] {
    width: 100%;
  }

  .header-actions .header-icon-link {
    width: 42px;
    flex: 0 0 auto;
  }

  .lumastone-benefits,
  .lumastone-products,
  .lumastone-gallery,
  .lumastone-reviews {
    grid-template-columns: 1fr;
  }

  .lumastone-wholesale,
  .lumastone-review,
  .lumastone-faq-wrap {
    padding: 20px;
  }

  .lumastone-hero__media,
  .lumastone-image-placeholder-hero {
    aspect-ratio: 4 / 3;
    min-height: 340px;
    max-height: 420px;
    border-radius: 4px;
  }

  .lumastone-hero {
    padding: 44px 0 56px;
  }

  .lumastone-wholesale {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    overflow: visible;
  }

  .lumastone-wholesale__media img {
    width: 100%;
    height: 200px;
    min-height: 0;
    border-radius: 12px;
  }

  .lumastone-wholesale__action {
    justify-content: flex-start;
  }

  .lumastone-wholesale__action .button-link {
    min-width: 0;
    width: 100%;
  }

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

  .newsletter-form button {
    border-left: 0;
    border-top: 1px solid rgba(42, 36, 31, 0.12);
  }
}

.wholesale-page {
  padding-bottom: 64px;
}

.wholesale-page__hero {
  padding: 82px 0 76px;
}

.wholesale-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1440px;
}

.wholesale-page__hero-media {
  position: relative;
  min-height: 568px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(246, 239, 230, 0) 0%, rgba(246, 239, 230, 0.12) 88%, rgba(246, 239, 230, 0.42) 100%);
  border: 0;
}

.wholesale-page__hero-box {
  position: absolute;
  inset: 0;
}

.wholesale-page__hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.wholesale-page__hero-mat {
  position: absolute;
  left: 72px;
  right: 120px;
  bottom: 24px;
  transform: rotate(-7deg);
  filter: drop-shadow(0 16px 30px rgba(111, 86, 58, 0.18));
}

.wholesale-page__hero-mat img {
  width: 100%;
  display: block;
}

.wholesale-page__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding-right: 0;
}

.wholesale-page__hero-copy h1 {
  margin: 0 0 16px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.75rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #2b241f;
}

.wholesale-page__hero-lead {
  margin: 20px 0 18px;
  color: #6f665b;
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.45;
}

.wholesale-page__hero-copy p {
  margin: 0;
  max-width: 600px;
  color: #6f665b;
  font-size: clamp(16px, 1.12vw, 17px);
  line-height: 1.65;
}

.wholesale-page__hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.wholesale-page__hero-actions .button-link {
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.button-secondary {
  background: transparent;
  color: var(--ls-olive);
  border: 1px solid rgba(79, 90, 46, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(79, 90, 46, 0.06);
  color: var(--ls-olive-deep);
}

.wholesale-page__summary {
  padding: 0 0 26px;
}

.wholesale-page__summary-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 240px;
  gap: 36px;
  align-items: center;
  max-width: 1440px;
  min-height: 236px;
  background: #f7f2ea;
  border: 1px solid #e6d8c7;
  border-radius: 18px;
  padding: 28px 36px;
  overflow: hidden;
}

.wholesale-page__summary-image {
  align-self: center;
  margin: 0;
}

.wholesale-page__summary-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
}

.wholesale-page__summary-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wholesale-page__summary-copy h2 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.375rem, 3vw, 2.875rem);
  font-weight: 400;
  line-height: 1.06;
  color: #2f241d;
}

.wholesale-page__summary-lead,
.wholesale-page__summary-copy p {
  color: #6f665d;
}

.wholesale-page__summary-lead {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.wholesale-page__summary-copy p {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.5;
}

.wholesale-page__summary-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 16px;
  align-items: center;
}

.wholesale-page__summary-features span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 40px;
  color: #5f5a52;
  font-size: 14px;
}

.wholesale-page__summary-features span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(91, 101, 55, 0.28);
  transform: translateY(-50%);
}

.wholesale-page__summary-features span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 10px;
  height: 5px;
  border-left: 1.8px solid var(--ls-olive);
  border-bottom: 1.8px solid var(--ls-olive);
  transform: translateY(-60%) rotate(-45deg);
}

.wholesale-page__summary-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.wholesale-page__summary-action .button-link {
  min-width: 220px;
  min-height: 56px;
  justify-content: center;
}

.wholesale-page__heading h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.wholesale-page__collections {
  padding-top: 80px;
  padding-bottom: 42px;
}

.wholesale-page__collections .wholesale-page__heading,
.wholesale-page__reasons .wholesale-page__heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.wholesale-page__collections .wholesale-page__heading h2 {
  margin-bottom: 18px;
}

.wholesale-page__collections .wholesale-page__heading p {
  max-width: 780px;
  margin: 0 auto 38px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

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

.wholesale-page__collection-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(249, 246, 240, 0.92) 100%);
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.wholesale-page__collection-media {
  display: block;
  overflow: hidden;
}

.wholesale-page__collection-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 220ms ease;
}

.wholesale-page__collection-card:hover img {
  transform: scale(1.02);
}

.wholesale-page__collection-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  padding: 20px 24px 22px;
}

.wholesale-page__collection-copy h3 {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.28rem, 1.5vw, 1.48rem);
  line-height: 1.15;
  font-weight: 400;
}

.wholesale-page__collection-copy p {
  margin: 0 0 16px;
  color: var(--ls-muted);
  font-size: 14px;
  line-height: 1.55;
}

.wholesale-page__collection-tag {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 101, 55, 0.18);
  background: rgba(244, 240, 231, 0.94);
  color: #5f5a52;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wholesale-page__collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--ls-olive);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wholesale-page__collection-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -1px;
}

.wholesale-page__collections-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.wholesale-page__collections-action .button-link {
  width: auto;
  min-width: 320px;
  justify-content: center;
}

.wholesale-page__reasons {
  padding: 24px 0 80px;
}

.wholesale-page__reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 40px;
}

.wholesale-page__reason {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  padding: 10px 4px;
}

.wholesale-page__reason-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ls-olive);
}

.wholesale-page__reason-icon svg {
  width: 24px;
  height: 24px;
}

.wholesale-page__reason h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.wholesale-page__reason p {
  margin: 0;
  color: var(--ls-muted);
  font-size: 14px;
  line-height: 1.55;
}

.wholesale-page__oem {
  padding: 8px 0 28px;
}

.wholesale-page__oem-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 36px;
  padding: 28px 34px;
  border: 1px solid #e6d8c7;
  border-radius: 18px;
  background: #faf8f3;
  align-items: center;
}

.wholesale-page__oem-copy {
  padding: 0;
}

.wholesale-page__oem-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2.125rem, 2.7vw, 2.625rem);
  line-height: 1.1;
  font-weight: 400;
}

.wholesale-page__oem-copy p {
  margin: 0 0 18px;
  color: var(--ls-muted);
  font-size: 15px;
  line-height: 1.5;
}

.wholesale-page__oem-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.wholesale-page__oem-copy li {
  position: relative;
  padding-left: 26px;
  color: #5f5a52;
  font-size: 15px;
  line-height: 1.45;
}

.wholesale-page__oem-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 1.8px solid var(--ls-olive);
  border-bottom: 1.8px solid var(--ls-olive);
  transform: rotate(-45deg);
}

.wholesale-page__oem-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.wholesale-page__oem-visual {
  position: relative;
  min-height: 180px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.wholesale-page__oem-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wholesale-page__oem-visual--logo span,
.wholesale-page__oem-visual--box span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-size: 18px;
  letter-spacing: 0.14em;
  color: rgba(87, 76, 65, 0.72);
}

.wholesale-page__oem-visual--box span {
  transform: translate(-50%, -50%);
}

.wholesale-page__oem-visual--swatches {
  display: block;
  padding: 0;
  background: transparent;
}

.wholesale-page__swatch-circles,
.wholesale-page__swatch-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.wholesale-page__swatch-circles span {
  aspect-ratio: 1 / 1;
  border-radius: 999px;
}

.wholesale-page__swatch-bars span {
  height: 58px;
  border-radius: 10px;
}

.swatch-cream {
  background: #eee7da;
}

.swatch-sand {
  background: #ddd2c0;
}

.swatch-gray {
  background: #bfb9b1;
}

.swatch-charcoal {
  background: #6f6b67;
}

.wholesale-page__quote {
  padding-top: 8px;
}

.wholesale-page__quote-inner {
  width: min(calc(100% - 80px), 980px);
}

.wholesale-page__quote .wholesale-page__heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.wholesale-page__quote .wholesale-page__heading h2 {
  margin-bottom: 0;
  white-space: nowrap;
}

.wholesale-page__quote-status {
  margin: -8px 0 18px;
  text-align: center;
  color: var(--ls-muted);
}

.wholesale-page__quote-status--success {
  color: #486235;
}

.wholesale-page__quote-status--error {
  color: #8a5a4b;
}

.wholesale-page__quote-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
}

.wholesale-page__quote-form input,
.wholesale-page__quote-form select,
.wholesale-page__quote-form textarea {
  width: 100%;
  border: 1px solid rgba(42, 36, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px 16px;
  font: inherit;
  color: var(--ls-ink);
}

.wholesale-page__quote-form select,
.wholesale-page__quote-form textarea {
  grid-column: span 2;
}

.wholesale-page__quote-form textarea {
  min-height: 92px;
  resize: vertical;
}

.wholesale-page__quote-form button {
  min-height: 54px;
  justify-content: center;
}

.wholesale-page__quote-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--ls-muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .wholesale-page__hero-inner,
  .wholesale-page__summary-card,
  .wholesale-page__oem-card {
    grid-template-columns: 1fr;
  }

  .wholesale-page__hero-media {
    min-height: 420px;
    border-radius: 10px;
  }

  .wholesale-page__hero-copy {
    max-width: none;
  }

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

  .wholesale-page__collection-card img {
    height: 220px;
  }

  .wholesale-page__summary-image {
    margin: 0;
  }

  .wholesale-page__summary-image img {
    height: 240px;
    border-radius: 12px;
  }

  .wholesale-page__summary-action {
    justify-content: flex-start;
  }

  .wholesale-page__oem-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .wholesale-page__quote-form select,
  .wholesale-page__quote-form textarea {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .wholesale-page {
    padding-bottom: 48px;
  }

  .wholesale-page__hero {
    padding: 32px 0 44px;
  }

  .wholesale-page__hero-media {
    min-height: 300px;
    border-radius: 8px;
  }

  .wholesale-page__hero-copy h1 {
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .wholesale-page__hero-actions {
    flex-direction: column;
  }

  .wholesale-page__hero-actions .button-link,
  .wholesale-page__summary-action .button-link {
    width: 100%;
  }

  .wholesale-page__collection-grid,
  .wholesale-page__reasons-grid,
  .wholesale-page__quote-form {
    grid-template-columns: 1fr;
  }

  .wholesale-page__oem-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wholesale-page__collection-card img {
    height: 210px;
  }

  .wholesale-page__oem-visual {
    height: 210px;
    min-height: 210px;
  }

  .wholesale-page__quote-form select,
  .wholesale-page__quote-form textarea {
    grid-column: span 1;
  }

  .wholesale-page__summary-card,
  .wholesale-page__oem-card {
    padding: 14px;
  }

  .wholesale-page__summary-image {
    margin: -14px -14px 0;
  }

  .wholesale-page__summary-image img {
    min-height: 180px;
  }

  .wholesale-page__summary-action .button-link,
  .wholesale-page__collections-action .button-link {
    width: 100%;
    min-width: 0;
  }

.wholesale-page__quote-inner {
    width: min(calc(100% - 32px), 980px);
  }
}

.contact-page {
  padding: 0 0 48px;
  background: linear-gradient(180deg, #f8f4ee 0%, #fcfaf6 100%);
}

.contact-page__hero {
  padding: 0 0 36px;
}

.contact-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(43, 36, 31, 0.1);
  border-bottom: 1px solid rgba(43, 36, 31, 0.08);
}

.contact-page__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5.6vw, 68px) clamp(24px, 4.6vw, 60px);
}

.contact-page__hero-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-page__hero-rule {
  width: 64px;
  height: 3px;
  margin: 26px 0 22px;
  background: #6c7741;
}

.contact-page__hero-copy p {
  max-width: 420px;
  margin: 0;
  color: #4e4942;
  font-size: 17px;
  line-height: 1.6;
}

.contact-page__hero-media {
  min-height: 530px;
  overflow: hidden;
}

.contact-page__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
  display: block;
}

.contact-page__body {
  padding: 0 0 36px;
}

.contact-page__body-inner {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 24px;
  width: min(calc(100% - 64px), 1440px);
  margin: 0 auto;
}

.contact-page__info {
  display: grid;
  gap: 14px;
}

.contact-page__info-card,
.contact-page__note,
.contact-page__form-card,
.contact-page__link-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(214, 203, 190, 0.9);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(110, 101, 91, 0.06);
}

.contact-page__info-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 24px 22px;
}

.contact-page__info-icon,
.contact-page__link-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #6c7741 0%, #566132 100%);
}

.contact-page__info-icon svg,
.contact-page__link-icon svg,
.contact-page__note-icon svg {
  width: 26px;
  height: 26px;
}

.contact-page__info-copy h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.contact-page__info-copy p,
.contact-page__info-copy a {
  margin: 0;
  color: #4f4a43;
  line-height: 1.55;
}

.contact-page__info-copy a {
  text-decoration: none;
}

.contact-page__note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  background: rgba(247, 244, 236, 0.86);
}

.contact-page__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6c7741;
}

.contact-page__note p {
  margin: 0;
  color: #514b43;
  line-height: 1.7;
}

.contact-page__form-card {
  padding: 24px 32px 28px;
}

.contact-page__form-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 400;
}

.contact-page__status {
  margin: -2px 0 18px;
  color: #6f665b;
}

.contact-page__status--success {
  color: #486235;
}

.contact-page__status--error {
  color: #8a5a4b;
}

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

.contact-page__form label,
.contact-page__radio-group {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-page__form span {
  font-size: 14px;
  color: #3f3933;
}

.contact-page__form input,
.contact-page__form select,
.contact-page__form textarea {
  width: 100%;
  border: 1px solid rgba(42, 36, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  font: inherit;
  color: var(--ls-ink);
}

.contact-page__form-full {
  grid-column: 1 / -1;
}

.contact-page__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding: 2px 0 0;
}

.contact-page__radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5d574f;
  font-size: 14px;
}

.contact-page__radio-group input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.contact-page__submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
  letter-spacing: 0.08em;
}

.contact-page__links {
  padding: 0 0 24px;
}

.contact-page__link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(calc(100% - 64px), 1440px);
  margin: 0 auto;
}

.contact-page__link-card {
  display: grid;
  grid-template-columns: 56px 1fr 18px;
  gap: 16px;
  align-items: center;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
}

.contact-page__link-copy h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.contact-page__link-copy p {
  margin: 0;
  color: #625b53;
  font-size: 14px;
  line-height: 1.55;
}

.contact-page__link-arrow {
  width: 10px;
  height: 10px;
  border-top: 1.6px solid #6c7741;
  border-right: 1.6px solid #6c7741;
  transform: rotate(45deg);
  justify-self: end;
}

@media (max-width: 1080px) {
  .contact-page__hero-inner,
  .contact-page__body-inner,
  .contact-page__link-grid {
    grid-template-columns: 1fr;
  }

  .contact-page__body-inner,
  .contact-page__link-grid {
    width: min(calc(100% - 40px), 1440px);
  }

  .contact-page__hero-media {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding-bottom: 32px;
  }

  .contact-page__hero {
    padding-bottom: 24px;
  }

  .contact-page__hero-copy {
    padding: 36px 20px 28px;
  }

  .contact-page__hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .contact-page__hero-copy p {
    font-size: 16px;
  }

  .contact-page__hero-media {
    min-height: 300px;
  }

  .contact-page__body-inner,
  .contact-page__link-grid {
    width: min(calc(100% - 24px), 1440px);
  }

  .contact-page__form-card {
    padding: 22px 18px 24px;
  }

  .contact-page__form {
    grid-template-columns: 1fr;
  }

  .contact-page__form-full,
  .contact-page__submit {
    grid-column: auto;
  }

  .contact-page__radio-group {
    gap: 12px;
  }

  .contact-page__link-card {
    grid-template-columns: 52px 1fr 16px;
    padding: 20px 18px;
  }
}

.shop-page {
  padding: 10px 0 64px;
  background: linear-gradient(180deg, #f8f4ee 0%, #fcfaf6 100%);
}

.shop-page__hero {
  padding: 26px 0 24px;
}

.shop-page__hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.shop-page__hero-inner h1 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.shop-page__hero-inner p {
  margin: 12px 0 0;
  color: #5f5a52;
  font-size: 18px;
  line-height: 1.55;
}

.shop-page__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.shop-page__filters a,
.shop-page__filters button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(43, 36, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #4f4a43;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.shop-page__filters a.is-active,
.shop-page__filters button.is-active {
  background: #5b6537;
  border-color: #5b6537;
  color: #fff;
}

.shop-page__collections {
  padding: 2px 0 36px;
}

.shop-page .section-inner {
  width: min(calc(100% - 56px), 1240px);
}

.shop-page__collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.shop-page__collection-panel {
  padding: 16px 16px 14px;
  border: 1px solid rgba(214, 203, 190, 0.58);
  border-radius: 18px;
  background: rgba(250, 248, 243, 0.78);
  box-shadow: none;
}

.shop-page__collection-header {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}

.shop-page__collection-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #4d473f;
}

.shop-page__collection-icon svg {
  width: 24px;
  height: 24px;
}

.shop-page__collection-header h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2vw, 2.25rem);
  line-height: 1.1;
  font-weight: 400;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.shop-page__collection-header p {
  margin: 6px 0 0;
  color: #5f5a52;
  font-size: 15px;
  line-height: 1.45;
}

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

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

.shop-page__product-grid--quad {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-page__product-carousel,
.shop-page__carousel-controls,
.shop-page__product-track,
.shop-page__product-card--slide {
  display: none !important;
}

.shop-page__product-carousel {
  display: grid;
  gap: 10px;
}

.shop-page__product-carousel-viewport {
  overflow: hidden;
}

.shop-page__product-track {
  display: flex;
  margin: 0 -10px;
  transition: transform 320ms ease;
  will-change: transform;
}

.shop-page__product-card--slide {
  flex: 0 0 50%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 10px;
}

.shop-page__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.shop-page__carousel-arrow {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #e4ddd2;
  background: #faf8f3;
  box-shadow: none;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transform: none;
}

.shop-page__carousel-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-top: 1.6px solid #5b6537;
  border-right: 1.6px solid #5b6537;
}

.shop-page__carousel-arrow[data-carousel-prev]::before {
  transform: rotate(-135deg);
}

.shop-page__carousel-arrow[data-carousel-next]::before {
  transform: rotate(45deg);
}

.shop-page__carousel-arrow:hover {
  background: #f3f0e7;
  transform: none;
}

.shop-page__carousel-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.shop-page__carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.shop-page__carousel-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: #d8d2c6;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.shop-page__carousel-dot.is-active {
  background: #4f5a35;
}

.shop-page__carousel-dot:hover {
  background: #c9c2b6;
  transform: none;
}

.shop-page__product-card {
  border: 1px solid rgba(214, 203, 190, 0.58);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-page__product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 116, 103, 0.38);
  box-shadow: 0 16px 32px rgba(79, 61, 40, 0.08);
}

.shop-page__product-media {
  display: block;
  overflow: hidden;
}

.shop-page__product-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
}

#foldable .shop-page__product-media {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

#foldable .shop-page__product-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.shop-page__product-copy {
  padding: 14px 15px 15px;
}

.shop-page__product-copy h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 400;
}

.shop-page__product-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.shop-page__product-size {
  margin: 6px 0 4px;
  color: #4f4a43;
  font-size: 13px;
  line-height: 1.35;
}

.shop-page__product-meta {
  margin: 0 0 10px;
  color: #7b7368;
  font-size: 13px;
}

.shop-page__product-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.shop-page__product-swatch {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(43, 36, 31, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.shop-page__product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-page__product-price {
  color: #2f241d;
  font-size: 18px;
  font-weight: 600;
}

.shop-page__product-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(43, 36, 31, 0.12);
  position: relative;
  flex: 0 0 auto;
}

.shop-page__product-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-top: 1.6px solid #5b6537;
  border-right: 1.6px solid #5b6537;
  transform: rotate(45deg);
}

.swatch-rubber-gray {
  background: linear-gradient(180deg, #b3aea6, #7b756d);
}

.swatch-medium-gray {
  background: linear-gradient(180deg, #a8a39b, #6f6962);
}

.swatch-light-gray {
  background: linear-gradient(180deg, #d9d5cf, #b8b2a8);
}

.swatch-dark-charcoal {
  background: linear-gradient(180deg, #78736d, #57534e);
}

.shop-page__wholesale {
  padding: 40px 0 24px;
}

.shop-page__wholesale-card {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(214, 203, 190, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.shop-page__wholesale-image {
  overflow: hidden;
  border-radius: 14px;
}

.shop-page__wholesale-image img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
}

.shop-page__wholesale-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 2.4vw, 2.9rem);
  line-height: 1.05;
  font-weight: 400;
}

.shop-page__wholesale-copy p {
  margin: 0;
  color: #605a52;
  line-height: 1.55;
}

.shop-page__wholesale-copy p + p {
  margin-top: 8px;
}

.shop-page__wholesale-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.shop-page__wholesale-actions .button-link {
  min-width: 210px;
}

.shop-page__learn-more {
  color: #3e3932;
  text-decoration: none;
  position: relative;
  padding-right: 22px;
}

.shop-page__learn-more::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

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

  .shop-page__product-grid,
  .shop-page__product-grid--triple,
  .shop-page__product-grid--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-page__wholesale-card {
    grid-template-columns: 1fr;
  }

  .shop-page__wholesale-actions {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .shop-page {
    padding-bottom: 40px;
  }

  .shop-page .section-inner {
    width: min(calc(100% - 32px), 1240px);
  }

  .shop-page__hero {
    padding: 18px 0 20px;
  }

  .shop-page__hero-inner h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .shop-page__hero-inner p {
    font-size: 16px;
  }

  .shop-page__product-grid {
    grid-template-columns: 1fr;
  }

  .shop-page__product-grid--triple {
    grid-template-columns: 1fr;
  }

  .shop-page__product-grid--quad {
    grid-template-columns: 1fr;
  }

  .shop-page__product-media img {
    height: 220px;
  }

  .shop-page__wholesale-card {
    padding: 16px;
  }

  .shop-page__wholesale-image img {
    height: 180px;
  }

  .shop-page__wholesale-actions .button-link {
    width: 100%;
    min-width: 0;
  }
}

.classic-pdp-wrap {
  padding: 24px 0 88px;
  background: linear-gradient(180deg, #fcfaf6 0%, #f8f4ed 100%);
}

.classic-pdp-hero,
.classic-pdp-story,
.classic-pdp-chooser,
.classic-pdp-benefits,
.classic-pdp-information,
.classic-pdp-faq,
.classic-pdp-related {
  padding: 0 0 28px;
}

.classic-pdp-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 56px;
  align-items: stretch;
}

.classic-pdp-gallery,
.classic-pdp-summary,
.classic-pdp-story__card,
.classic-pdp-chooser__panel,
.classic-pdp-benefit,
.classic-pdp-tabs,
.classic-pdp-reviews,
.classic-pdp-related__card {
  background: rgba(250, 248, 243, 0.72);
  border: 1px solid rgba(228, 221, 210, 0.35);
  border-radius: 20px;
  box-shadow: none;
}

.classic-pdp-gallery,
.classic-pdp-summary {
  padding: 0;
  overflow: hidden;
  min-height: 720px;
}

.classic-pdp-gallery__stage {
  position: relative;
}

.classic-pdp-gallery__main {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f8f5ef;
}

.classic-pdp-gallery__main img {
  display: block;
  width: 100%;
  height: clamp(480px, 45vw, 620px);
  object-fit: cover;
  object-position: center;
}

.classic-pdp-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 221, 210, 0.75);
  border-radius: 999px;
  background: rgba(250, 248, 243, 0.88);
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: none;
}

.classic-pdp-gallery__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2b241f;
  border-right: 2px solid #2b241f;
}

.classic-pdp-gallery__nav--prev {
  left: 18px;
}

.classic-pdp-gallery__nav--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.classic-pdp-gallery__nav--next {
  right: 18px;
}

.classic-pdp-gallery__nav--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.classic-pdp-gallery__thumbs {
  display: flex;
  gap: 12px;
  padding: 0 0 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.classic-pdp-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.classic-pdp-gallery__thumb-rail {
  position: relative;
  padding: 14px 0 0;
}

.classic-pdp-gallery__thumbs-wrap {
  overflow: hidden;
  padding: 0;
}

.classic-pdp-gallery__thumb-nav {
  position: absolute;
  top: calc(50% + 8px);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(228, 221, 210, 0.96);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.96);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.classic-pdp-gallery__thumb-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #2b241f;
  border-right: 2px solid #2b241f;
}

.classic-pdp-gallery__thumb-nav--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.classic-pdp-gallery__thumb-nav--prev {
  left: 10px;
}

.classic-pdp-gallery__thumb-nav--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.classic-pdp-gallery__thumb-nav--next {
  right: 10px;
}

.classic-pdp-gallery__thumb-nav:hover,
.classic-pdp-gallery__thumb-nav:focus-visible {
  border-color: rgba(91, 101, 55, 0.9);
  background: #fff;
}

.classic-pdp-gallery__thumb {
  flex: 0 0 112px;
  padding: 0;
  border: 1px solid rgba(228, 221, 210, 0.8);
  border-radius: 14px;
  background: #f8f5ef;
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.classic-pdp-gallery__thumb.is-active {
  border: 2px solid #4f5a35;
  box-shadow: none;
}

.classic-pdp-gallery__thumb:hover,
.classic-pdp-gallery__thumb:focus-visible {
  border-color: #beb4a6;
  transform: translateY(-1px);
}

.classic-pdp-gallery__thumb img {
  display: block;
  width: 100%;
  height: 78px;
  object-fit: cover;
  object-position: center;
}

.classic-pdp-summary {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 8px 0 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.classic-pdp-summary__eyebrow {
  margin-bottom: 18px;
  color: #5f5a52;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.classic-pdp-summary h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 4.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #2b241f;
}

.classic-pdp-summary__subline {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: #6f665b;
}

.classic-pdp-summary__price {
  margin: 0 0 32px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #2b241f;
}

.classic-pdp-summary__price .amount {
  color: inherit;
}

.classic-pdp-variant-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: -6px 0 24px;
  color: #6f665b;
  font-size: 13px;
}

.classic-pdp-variant-meta strong {
  color: #2b241f;
}

.classic-pdp-options {
  display: grid;
  gap: 22px;
}

.classic-pdp-options__labelrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.classic-pdp-options__labelstack {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-bottom: 12px;
  text-align: left;
}

.classic-pdp-options__label {
  display: block;
  color: #5f5a52;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.classic-pdp-options__value {
  color: #2b241f;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

.classic-pdp-options__value strong {
  font-weight: 700;
}

.classic-pdp-size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 28px;
}

.classic-pdp-size-pill {
  min-width: 104px;
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(228, 221, 210, 0.96);
  border-radius: 10px;
  background: #faf8f3;
  color: #2b241f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.classic-pdp-size-pill.is-active {
  border-color: #4f5a35;
  background: #faf8f3;
  box-shadow: inset 0 0 0 1px #4f5a35;
}

.classic-pdp-color-options {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  margin-top: 12px;
  margin-bottom: 34px;
}

.classic-pdp-color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #5f5a52;
  font-size: 13px;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.classic-pdp-color-option__dot,
.classic-pdp-color-card__swatch {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #d8d2c6;
  box-shadow: none;
}

.classic-pdp-color-option.is-active .classic-pdp-color-option__dot {
  outline: 2px solid #4f5a35;
  outline-offset: 4px;
}

.classic-pdp-color-option.is-active {
  color: #2b241f;
  transform: translateY(-1px);
}

.classic-pdp-color-option span:last-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4f473f;
  text-transform: uppercase;
}

.classic-pdp-purchase {
  margin-top: 24px;
}

.classic-pdp-options__label--quantity {
  margin-bottom: 0;
}

.classic-pdp-buy-now {
  width: 100%;
  min-height: 56px;
  margin-bottom: 14px;
  border-radius: 9px;
  letter-spacing: 0.14em;
  font-size: 13px;
}

.classic-pdp-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.classic-pdp-links a,
.classic-pdp-wholesale-note a {
  color: #6f665b;
  font-size: 14px;
  font-weight: 600;
}

.classic-pdp-links a:last-child {
  color: #4f5a35;
}

.classic-pdp-wholesale-note {
  margin: 16px 0 0;
  color: #6f665b;
  line-height: 1.5;
  font-size: 13px;
}

.classic-pdp-cart-wrap form {
  margin: 0;
}

.classic-pdp-cart-wrap .variations,
.classic-pdp-cart-wrap .reset_variations,
.classic-pdp-cart-wrap .single_variation {
  display: none !important;
}

.classic-pdp-cart-wrap .woocommerce-variation-add-to-cart,
.classic-pdp-cart-wrap .cart {
  display: grid;
  gap: 12px;
}

.classic-pdp-cart-wrap .single_add_to_cart_button.button.alt {
  width: 100%;
  min-height: 54px;
  border-radius: 9px;
  border: 1px solid #e4ddd2;
  background: #fff;
  color: #5a4f43;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.classic-pdp-cart-wrap .single_add_to_cart_button.button.alt:hover,
.classic-pdp-cart-wrap .single_add_to_cart_button.button.alt:focus-visible {
  background: #faf7f2;
  transform: none;
}

.classic-pdp-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  min-height: 48px;
  border: 1px solid rgba(228, 221, 210, 0.92);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.classic-pdp-quantity .qty {
  width: 64px;
  min-height: 48px;
  border: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  border-radius: 0;
}

.classic-pdp-quantity__button {
  width: 44px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: #2b241f;
  font-size: 22px;
  cursor: pointer;
}

.classic-pdp-amazon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 54px;
  margin-top: 0;
  padding: 0 24px;
  border-radius: 9px;
  border: 1px solid #e4ddd2;
  background: transparent;
  color: #5a4f43;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.classic-pdp-add-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  margin-bottom: 14px;
  border-radius: 9px;
  border: 1px solid #e4ddd2;
  background: #fff;
  color: #5a4f43;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.classic-pdp-add-to-cart:hover,
.classic-pdp-add-to-cart:focus-visible {
  background: #faf7f2;
  border-color: #d8cdbf;
  color: #4f473f;
}

.classic-pdp-hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(228, 221, 210, 0.7);
}

.classic-pdp-hero-feature {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #6f665b;
  font-size: 12px;
  text-align: center;
}

.classic-pdp-hero-feature__icon,
.classic-pdp-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #6f665b;
}

.classic-pdp-hero-feature__icon svg,
.classic-pdp-benefit__icon svg {
  width: 22px;
  height: 22px;
}

.classic-pdp-story .section-inner,
.classic-pdp-chooser .section-inner,
.classic-pdp-information__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
}

.classic-pdp-story .section-inner {
  display: block;
}

.classic-pdp-story__card,
.classic-pdp-chooser__panel,
.classic-pdp-tabs,
.classic-pdp-reviews {
  padding: 30px 32px;
}

.classic-pdp-lifestyle {
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: stretch;
  background: #faf8f3;
  border: 1px solid rgba(228, 221, 210, 0.45);
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  max-height: 500px;
}

.classic-pdp-lifestyle__copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #faf8f3;
}

.classic-pdp-lifestyle__copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 3.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: #2b241f;
}

.classic-pdp-lifestyle__line {
  width: 56px;
  height: 2px;
  background: #4f5a35;
  margin: 24px 0 28px;
}

.classic-pdp-lifestyle__copy p {
  max-width: 380px;
  margin: 0;
  color: #6f665b;
  font-size: 16px;
  line-height: 1.6;
}

.classic-pdp-lifestyle__media {
  min-height: 420px;
  max-height: 500px;
  height: 100%;
  overflow: hidden;
}

.classic-pdp-lifestyle__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.classic-pdp-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.classic-pdp-story__copy h2,
.classic-pdp-chooser__panel h3,
.classic-pdp-reviews h2,
.classic-pdp-related h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2b241f;
}

.classic-pdp-story__copy p,
.classic-pdp-chooser__panel p,
.classic-pdp-benefit p,
.classic-pdp-review-card p {
  color: #6f665b;
}

.classic-pdp-story__media {
  padding: 0;
  overflow: hidden;
}

.classic-pdp-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

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

.classic-pdp-color-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.classic-pdp-chooser.classic-pdp-chooser--foldable .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 32px;
  align-items: stretch;
}

.classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-chooser__panel {
  height: 100%;
}

.classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-chooser__panel--sizes {
  min-width: 0;
}

.classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-chooser__panel--finishes {
  min-width: 0;
}

.classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-size-grid--foldable {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-size-grid--foldable .classic-pdp-size-card,
.classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-color-grid--foldable .classic-pdp-color-card {
  min-height: 160px;
}

.classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-color-grid--foldable {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 18px;
}

.classic-pdp-chooser.classic-pdp-chooser--drying .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 32px;
  align-items: stretch;
}

.classic-pdp-chooser.classic-pdp-chooser--drying .classic-pdp-chooser__panel {
  height: 100%;
}

.classic-pdp-chooser.classic-pdp-chooser--drying .classic-pdp-size-grid--drying,
.classic-pdp-chooser.classic-pdp-chooser--drying .classic-pdp-color-grid--drying {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.classic-pdp-chooser.classic-pdp-chooser--drying .classic-pdp-size-grid--drying .classic-pdp-size-card,
.classic-pdp-chooser.classic-pdp-chooser--drying .classic-pdp-color-grid--drying .classic-pdp-color-card {
  min-height: 160px;
}

.classic-pdp-chooser.classic-pdp-chooser--pattern .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: stretch;
}

.classic-pdp-chooser.classic-pdp-chooser--pattern .classic-pdp-chooser__panel {
  height: 100%;
}

.classic-pdp-chooser.classic-pdp-chooser--pattern .classic-pdp-size-grid--pattern {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.classic-pdp-chooser.classic-pdp-chooser--pattern .classic-pdp-color-grid--pattern {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 18px;
}

.classic-pdp-chooser.classic-pdp-chooser--pattern .classic-pdp-size-grid--pattern .classic-pdp-size-card,
.classic-pdp-chooser.classic-pdp-chooser--pattern .classic-pdp-color-grid--pattern .classic-pdp-color-card {
  min-height: 160px;
}

.classic-pdp-size-card,
.classic-pdp-color-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 168px;
  padding: 18px 14px;
  border: 1px solid rgba(228, 221, 210, 0.92);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.classic-pdp-color-card.is-active {
  border-color: #5b6537;
  box-shadow: 0 0 0 1px rgba(91, 101, 55, 0.14);
}

.classic-pdp-size-card strong,
.classic-pdp-color-card span:last-child {
  color: #2b241f;
}

.classic-pdp-size-card span:last-child {
  color: #6f665b;
  font-size: 14px;
}

.classic-pdp-size-card__shape {
  display: block;
  width: 74px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid rgba(194, 185, 170, 0.92);
  background: linear-gradient(180deg, #fff, #f4f0e8);
}

.classic-pdp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.classic-pdp-benefit {
  padding: 26px 22px;
  text-align: center;
}

.classic-pdp-benefit h3 {
  margin: 14px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #2b241f;
}

.classic-pdp-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.classic-pdp-tabs__button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #6f665b;
  font-size: 14px;
  cursor: pointer;
}

.classic-pdp-tabs__button.is-active {
  border-bottom-color: #5b6537;
  color: #2b241f;
}

.classic-pdp-tab-panel {
  display: none;
}

.classic-pdp-tab-panel.is-active {
  display: block;
}

.classic-pdp-tab-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #5f5a52;
  font-size: 15px;
  line-height: 1.65;
}

.classic-pdp-tabs__content--compact {
  min-height: 0;
}

.classic-pdp-faq .section-heading {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.classic-pdp-faq h2 {
  margin: 0;
  text-align: center;
}

.classic-pdp-faq__list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(228, 221, 210, 0.92);
}

.classic-pdp-faq__item {
  border-bottom: 1px solid rgba(228, 221, 210, 0.92);
}

.classic-pdp-faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  color: #2b241f;
  font-size: 17px;
  font-weight: 600;
}

.classic-pdp-faq__item summary::-webkit-details-marker {
  display: none;
}

.classic-pdp-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #5b6537;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.classic-pdp-faq__item[open] summary::after {
  content: "−";
}

.classic-pdp-faq__item p {
  margin: 0;
  padding: 0 44px 22px 0;
  color: #5f5a52;
  font-size: 15px;
  line-height: 1.7;
}

.classic-pdp-reviews__heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}

.classic-pdp-reviews__heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
}

.classic-pdp-reviews__heading span {
  color: #2b241f;
  font-size: 1.25rem;
  font-weight: 600;
}

.classic-pdp-reviews__cards {
  display: grid;
  gap: 14px;
}

.classic-pdp-review-card {
  padding: 20px;
  border: 1px solid rgba(228, 221, 210, 0.92);
  border-radius: 16px;
  background: #fff;
}

.classic-pdp-review-card__stars {
  margin-bottom: 10px;
  color: #5b6537;
  letter-spacing: 0.18em;
}

.classic-pdp-related .section-heading {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.classic-pdp-related h2 {
  margin: 0;
  text-align: center;
}

.classic-pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.classic-pdp-related__media {
  display: block;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.classic-pdp-related__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2 / 0.72;
  object-fit: cover;
}

.classic-pdp-related__copy {
  padding: 18px 20px 22px;
}

.classic-pdp-related__copy h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #2b241f;
}

.classic-pdp-related__copy p {
  margin: 0 0 10px;
  color: #6f665b;
  font-size: 14px;
  line-height: 1.6;
}

.classic-pdp-related__copy span {
  display: block;
  margin-bottom: 14px;
  color: #5f5a52;
  font-weight: 600;
}

.classic-pdp-related__action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(79, 90, 53, 0.24);
  border-radius: 8px;
  color: #4f5a35;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.classic-pdp-related__action:hover,
.classic-pdp-related__action:focus-visible {
  background: rgba(79, 90, 53, 0.06);
  color: #3f4a29;
}

.classic-pdp-related__wholesale {
  margin: 18px 0 0;
  text-align: center;
  color: #6f665b;
  font-size: 14px;
  line-height: 1.6;
}

.classic-pdp-related__wholesale a {
  color: #4f5a35;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-page {
  padding-bottom: 64px;
}

.faq-page__hero {
  padding: 28px 0 48px;
}

.faq-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 40px;
  align-items: stretch;
}

.faq-page__hero-copy,
.faq-page__hero-media,
.faq-page__anchor-card,
.faq-page__cta-card {
  background: rgba(250, 248, 243, 0.78);
  border: 1px solid rgba(228, 221, 210, 0.55);
  border-radius: 18px;
  box-shadow: none;
}

.faq-page__hero-copy {
  min-height: 420px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-page__eyebrow,
.faq-page__section-eyebrow,
.faq-page__anchor-eyebrow {
  display: inline-block;
  color: #6f665b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-page__hero-copy h1,
.faq-page__cta-copy h2 {
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 4.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #2b241f;
}

.faq-page__hero-copy p,
.faq-page__cta-copy p {
  max-width: 540px;
  margin: 0;
  color: #6f665b;
  font-size: 16px;
  line-height: 1.7;
}

.faq-page__hero-actions,
.faq-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.faq-page__hero-media {
  overflow: hidden;
  min-height: 420px;
}

.faq-page__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-page__anchors {
  padding: 0 0 36px;
}

.faq-page__anchor-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.faq-page__anchor-card {
  min-height: 138px;
  padding: 24px 26px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.faq-page__anchor-card strong {
  display: block;
  margin-top: 10px;
  color: #2b241f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 500;
}

.faq-page__anchor-card:hover,
.faq-page__anchor-card:focus-visible {
  border-color: #4f5a35;
  background: rgba(250, 248, 243, 0.95);
  transform: translateY(-2px);
}

.faq-page__section {
  padding: 0 0 40px;
}

.faq-page__heading {
  max-width: 920px;
  margin: 0 auto 24px;
}

.faq-page__heading h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.1;
}

.faq-page .classic-pdp-faq__list {
  max-width: 920px;
  border-top: 1px solid rgba(228, 221, 210, 0.8);
}

.faq-page .classic-pdp-faq__item {
  border-bottom: 1px solid rgba(228, 221, 210, 0.8);
}

.faq-page .classic-pdp-faq__item summary {
  padding: 18px 44px 18px 0;
  font-size: 15px;
  font-weight: 600;
}

.faq-page .classic-pdp-faq__item p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: #6f665b;
}

.faq-page__cta {
  padding: 18px 0 0;
}

.faq-page__cta-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 36px 42px;
}

.faq-page__cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

@media (max-width: 1080px) {
  .faq-page__hero-inner,
  .faq-page__cta-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .faq-page__hero {
    padding: 20px 0 38px;
  }

  .faq-page__hero-copy {
    padding: 36px 24px;
  }

  .faq-page__hero-media {
    min-height: 300px;
  }

  .faq-page__anchor-grid {
    grid-template-columns: 1fr;
  }

  .faq-page__cta-card {
    padding: 28px 22px;
  }

  .faq-page__cta-actions {
    width: 100%;
  }

.faq-page__cta-actions .button-link {
    width: 100%;
    justify-content: center;
  }

  .faq-page .classic-pdp-faq__item summary {
    padding-right: 34px;
  }
}

.policy-page {
  padding-bottom: 64px;
}

.policy-page__hero {
  padding: 28px 0 40px;
}

.policy-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 40px;
  align-items: stretch;
}

.policy-page__hero-copy,
.policy-page__hero-media,
.policy-page__summary-card,
.policy-page__card,
.policy-page__cta-card {
  background: rgba(250, 248, 243, 0.78);
  border: 1px solid rgba(228, 221, 210, 0.5);
  border-radius: 18px;
  box-shadow: none;
}

.policy-page__hero-copy {
  min-height: 400px;
  padding: 52px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.policy-page__eyebrow {
  display: inline-block;
  color: #6f665b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-page__hero-copy h1,
.policy-page__cta-copy h2 {
  margin: 14px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #2b241f;
}

.policy-page__hero-copy p,
.policy-page__cta-copy p,
.policy-page__summary-card p,
.policy-page__prose {
  color: #6f665b;
}

.policy-page__hero-copy p,
.policy-page__cta-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.policy-page__hero-media {
  min-height: 400px;
  overflow: hidden;
}

.policy-page__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.policy-page__summary {
  padding: 0 0 34px;
}

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

.policy-page__summary-card {
  min-height: 156px;
  padding: 26px 24px;
}

.policy-page__summary-card h2,
.policy-page__heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #2b241f;
}

.policy-page__summary-card h2 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.policy-page__summary-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
}

.policy-page__content,
.policy-page__faq {
  padding: 0 0 36px;
}

.policy-page__card {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 34px;
}

.policy-page__heading {
  margin-bottom: 20px;
}

.policy-page__heading h2 {
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

.policy-page__prose {
  font-size: 15px;
  line-height: 1.72;
}

.policy-page__prose p {
  margin: 0 0 14px;
}

.policy-page__prose ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.policy-page__faq .classic-pdp-faq__list {
  max-width: 980px;
  border-top: 1px solid rgba(228, 221, 210, 0.8);
}

.policy-page__faq .classic-pdp-faq__item {
  border-bottom: 1px solid rgba(228, 221, 210, 0.8);
}

.policy-page__faq .classic-pdp-faq__item summary {
  padding: 18px 44px 18px 0;
  font-size: 15px;
  font-weight: 600;
}

.policy-page__faq .classic-pdp-faq__item p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.68;
  color: #6f665b;
}

.policy-page__cta-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.policy-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1080px) {
  .policy-page__hero-inner,
  .policy-page__cta-card,
  .policy-page__summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .policy-page__hero {
    padding: 20px 0 32px;
  }

  .policy-page__hero-copy,
  .policy-page__card,
  .policy-page__cta-card {
    padding: 28px 22px;
  }

  .policy-page__hero-media {
    min-height: 300px;
  }

  .policy-page__cta-actions {
    width: 100%;
  }

  .policy-page__cta-actions .button-link {
    width: 100%;
    justify-content: center;
  }

  .policy-page__faq .classic-pdp-faq__item summary {
    padding-right: 34px;
  }
}

@media (max-width: 1080px) {
  .classic-pdp-shell,
  .classic-pdp-chooser .section-inner,
  .classic-pdp-information__grid {
    grid-template-columns: 1fr;
  }

  .classic-pdp-lifestyle {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .classic-pdp-benefits__grid,
  .classic-pdp-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .classic-pdp-chooser.classic-pdp-chooser--foldable .section-inner {
    grid-template-columns: 1fr;
  }

  .classic-pdp-chooser.classic-pdp-chooser--drying .section-inner {
    grid-template-columns: 1fr;
  }

  .classic-pdp-chooser.classic-pdp-chooser--pattern .section-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .classic-pdp-shell {
    gap: 32px;
  }

  .classic-pdp-summary {
    min-height: auto;
  }

  .classic-pdp-summary h1 {
    font-size: clamp(2.4rem, 11vw, 3.3rem);
  }

  .classic-pdp-hero-features,
  .classic-pdp-color-grid,
  .classic-pdp-benefits__grid,
  .classic-pdp-related__grid {
    grid-template-columns: 1fr 1fr;
  }

  .classic-pdp-size-grid {
    grid-template-columns: 1fr;
  }

  .classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-size-grid--foldable,
  .classic-pdp-chooser.classic-pdp-chooser--foldable .classic-pdp-color-grid--foldable {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .classic-pdp-chooser.classic-pdp-chooser--drying .classic-pdp-size-grid--drying,
  .classic-pdp-chooser.classic-pdp-chooser--drying .classic-pdp-color-grid--drying {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .classic-pdp-chooser.classic-pdp-chooser--pattern .classic-pdp-size-grid--pattern,
  .classic-pdp-chooser.classic-pdp-chooser--pattern .classic-pdp-color-grid--pattern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .classic-pdp-gallery__thumb {
    flex-basis: 96px;
  }

  .classic-pdp-chooser__panel,
  .classic-pdp-tabs,
  .classic-pdp-reviews {
    padding: 24px 20px;
  }

  .classic-pdp-lifestyle__copy {
    padding: 42px 32px;
  }

  .classic-pdp-lifestyle__media {
    min-height: 320px;
    max-height: none;
  }

  .classic-pdp-faq__item summary {
    padding-right: 34px;
    font-size: 16px;
  }

  .classic-pdp-faq__item p {
    padding-right: 34px;
  }
}

@media (max-width: 560px) {
  .classic-pdp-wrap {
    padding-bottom: 64px;
  }

  .classic-pdp-hero-features,
  .classic-pdp-color-grid,
  .classic-pdp-benefits__grid,
  .classic-pdp-related__grid {
    grid-template-columns: 1fr;
  }

  .classic-pdp-size-pills,
  .classic-pdp-color-options,
  .classic-pdp-tabs__nav {
    gap: 10px;
  }

  .classic-pdp-gallery__thumb {
    flex-basis: 96px;
  }

  .classic-pdp-gallery__thumb-nav {
    display: none;
  }
}
