:root {
  /* MOSTHOME palette: logo orange #ff5f06, packaging slate #3e4051, gold #efd375. */
  --ink: #242632;
  --muted: #666875;
  --paper: #f7f5f2;
  --card: #fffdfb;
  --line: #dedde2;
  --brand-slate: #3e4051;
  --brand-slate-deep: #2b2d3a;
  --brand-soft: #f0f0f5;
  --accent: #ff5f06;
  --accent-dark: #d24600;
  --accent-text: #b43a00;
  --accent-light: #ff9d68;
  --accent-soft: #fff0e8;
  --gold: #efd375;
  --radius: 18px;
  --shadow: 0 26px 70px rgba(62, 64, 81, 0.12);
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.review-notice {
  background: var(--brand-slate-deep);
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.review-notice .shell {
  padding-block: 9px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(62, 64, 81, 0.14);
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 36px;
}

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

.brand-logo {
  display: block;
  width: 188px;
  height: auto;
}

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

.primary-nav a {
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--accent-text);
}

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

.header-phone {
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.cart-link b {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.mosthome-promo-strip {
  border-bottom: 1px solid rgba(255, 95, 6, 0.22);
  background: var(--accent-soft);
  color: var(--brand-slate-deep);
}

.mosthome-promo-strip-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .015em;
  text-align: center;
}

.mosthome-promo-strip a {
  color: var(--accent-text);
  font-weight: 850;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 68px;
}

.hero::before {
  position: absolute;
  inset: auto -15% -60% 38%;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 6, 0.15), rgba(255, 95, 6, 0) 66%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.content-page h1,
.empty-state h1 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(52px, 6.1vw, 88px);
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.service-actions,
.review-product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 23px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
}

.button-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-block: 5px;
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--accent-text);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  gap: 0;
  margin: 48px 0 0;
}

.hero-facts div {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.hero-facts div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-facts dt {
  font-size: 18px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
}

.hero-halo {
  position: absolute;
  width: min(520px, 94%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.94), 0 32px 95px rgba(255, 95, 6, 0.12);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 570px;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 126px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 14px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(62, 64, 81, 0.14);
  backdrop-filter: blur(13px);
}

.hero-tag span {
  font-size: 16px;
  font-weight: 800;
}

.hero-tag small {
  color: var(--muted);
}

.hero-tag-top {
  top: 16%;
  right: 2%;
}

.hero-tag-bottom {
  left: 3%;
  bottom: 12%;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: grid;
  gap: 2px;
  border-right: 1px solid var(--line);
  padding: 23px 26px;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid b {
  font-size: 14px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 108px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section h2,
.content-page h1,
.empty-state h1 {
  font-size: clamp(39px, 4.2vw, 62px);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: 300px 300px;
  gap: 18px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.collection-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(36,38,50,.54), rgba(36,38,50,0) 58%),
    linear-gradient(90deg, rgba(36,38,50,.72), rgba(36,38,50,.03) 72%);
  content: "";
}

.collection-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.collection-ultra img {
  object-position: 50% 50%;
}

.collection-smart img {
  object-position: 54% 50%;
}

.collection-floor img {
  object-position: 50% 50%;
}

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

.collection-large {
  grid-row: 1 / 3;
}

.collection-dark {
  background: var(--brand-slate-deep);
}

.collection-content {
  position: absolute;
  z-index: 2;
  inset: auto 34px 30px;
  max-width: 410px;
  color: #fff;
}

.collection-content > span {
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.collection-content h3 {
  margin: 7px 0 5px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
}

.collection-content p {
  max-width: 380px;
  margin: 10px 0 17px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.collection-content b {
  font-size: 13px;
}

.choice-guide {
  border-top: 4px solid var(--accent);
  background: var(--brand-slate);
  color: #fff;
}

.guide-grid {
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  align-items: center;
  gap: 68px;
}

.guide-copy .eyebrow {
  color: var(--gold);
}

.guide-copy p {
  max-width: 430px;
  margin: 25px 0 28px;
  color: rgba(255,255,255,.7);
}

.size-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.size-cards article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 27px 20px;
  background: rgba(255,255,255,.055);
  text-align: center;
}

.size-disc {
  display: block;
  margin: auto;
  border: 4px solid rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(255,95,6,.3), inset 0 0 14px rgba(255,255,255,.26);
}

.size-30 { width: 92px; height: 92px; }
.size-40 { width: 124px; height: 124px; }
.size-50 { width: 154px; height: 154px; }

.size-cards b {
  margin-top: 20px;
  font-size: 15px;
}

.size-cards p {
  margin: 2px 0;
  color: var(--gold);
  font-weight: 800;
}

.size-cards small {
  color: rgba(255,255,255,.58);
}

.popular-products {
  background: #fff9f4;
}

.home-moods { padding-top: 20px; }
.mood-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.mood-grid article { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius); background: var(--brand-slate-deep); color: #fff; }
.mood-grid article::after { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(36, 38, 50, .9)); content: ""; }
.mood-grid img { width: 100%; height: 100%; object-fit: cover; }
.mood-grid article > div { position: absolute; z-index: 2; inset: auto 28px 28px; }
.mood-grid span { color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.mood-grid h3 { margin: 8px 0; font-size: clamp(28px, 3vw, 42px); line-height: 1; }
.mood-grid p { max-width: 340px; margin: 0; color: rgba(255,255,255,.72); }

.temperature {
  padding-top: 36px;
}

.temperature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 330px auto;
  gap: 16px;
}

.temperature-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: inset 0 0 70px rgba(255,255,255,.32);
}

.temperature-panel span {
  margin-bottom: auto;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .1em;
}

.temperature-panel b {
  font-size: 24px;
}

.temperature-panel small {
  color: rgba(23,24,22,.65);
}

.temp-warm { background: #f1ca8e; }
.temp-neutral { background: #f6f2df; }
.temp-cold { background: #d9e9f5; }

.temperature-copy {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: start;
  gap: 30px;
  padding-top: 30px;
}

.temperature-copy h2 {
  font-size: clamp(34px, 4vw, 55px);
}

.temperature-copy p {
  margin: 0;
  color: var(--muted);
}

.service-banner {
  padding-top: 40px;
}

.service-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-radius: var(--radius);
  padding: 54px;
  background: var(--accent);
  color: var(--ink);
}

.service-inner .eyebrow {
  color: var(--brand-slate-deep);
}

.service-inner .button-primary {
  border-color: var(--brand-slate-deep);
  background: var(--brand-slate-deep);
  color: #fff;
}

.service-inner .button-primary:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.service-inner h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 58px);
}

.service-inner p {
  max-width: 660px;
  margin-bottom: 0;
}

.service-actions {
  min-width: 230px;
  flex-direction: column;
  align-items: stretch;
}

.site-footer {
  margin-top: 100px;
  padding: 70px 0 24px;
  background: var(--brand-slate-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr 1fr 1fr;
  gap: 48px;
}

.brand-light {
  width: fit-content;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 9px 13px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18,19,25,.16);
}

.brand-light .brand-logo {
  width: 196px;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255,255,255,.58);
}

.footer-brand .footer-warranty {
  color: var(--gold);
  font-size: 13px;
  font-weight: 750;
}

.site-footer h2 {
  margin: 0 0 17px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.site-footer li,
.footer-contact {
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--accent-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact .footer-phone {
  font-size: 20px;
  font-weight: 800;
}

.footer-contact span {
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 58px;
  padding-top: 22px;
  color: rgba(255,255,255,.38);
  font-size: 11px;
}

.page-main,
.shop-main {
  min-height: 65vh;
  padding: 72px 0;
}

.content-page {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: 78px;
}

.content-page-header {
  position: sticky;
  top: 120px;
  align-self: start;
}

.legal-content {
  max-width: 820px;
  border-radius: var(--radius);
  padding: 44px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 42px 0 15px;
  font-size: 28px;
  letter-spacing: -.025em;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #555762;
}

.legal-content a {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
}

.legal-content th,
.legal-content td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
  vertical-align: top;
}

.empty-state {
  padding-block: 80px;
  text-align: center;
}

.empty-state p {
  max-width: 560px;
  margin: 24px auto;
  color: var(--muted);
}

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.cart_totals h2,
.woocommerce-checkout h3 {
  font-weight: 760;
  letter-spacing: -.04em;
}

.woocommerce-products-header__title {
  margin-bottom: 42px;
  font-size: clamp(44px, 5vw, 72px);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.woocommerce .woocommerce-ordering select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 35px 10px 15px;
  background: var(--card);
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  --product-card-padding: 15px;
  --product-media-inset: 12px;
  position: relative;
  float: none;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--product-card-padding);
  background: var(--card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1;
  border-radius: 13px;
  margin-bottom: 17px;
  background: var(--brand-soft);
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 52px;
  padding: 0 4px;
  font-size: 16px;
  line-height: 1.35;
}

.woocommerce ul.products li.product .price {
  padding: 0 4px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.woocommerce .price del {
  margin-right: 7px;
  color: var(--muted);
  font-size: .8em;
  font-weight: 650;
  opacity: .8;
}

.woocommerce .price ins {
  color: var(--accent-text);
  font-weight: 900;
  text-decoration: none;
}

.woocommerce ul.products li.product .button {
  width: calc(100% - 8px);
  min-height: 50px;
  margin: 16px 4px 3px;
  border-color: var(--brand-slate-deep);
  border-radius: 14px;
  padding: 13px 16px;
  background: var(--brand-slate-deep);
  color: #fff;
  box-shadow: 0 10px 24px rgba(43, 45, 58, .14);
  text-align: center;
}

.woocommerce ul.products li.product .button.product_type_variable {
  border-color: rgba(255, 95, 6, .22);
  background: var(--accent-soft);
  color: var(--accent-text);
  box-shadow: none;
}

.woocommerce ul.products li.product .button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(255, 95, 6, .22);
}

.woocommerce span.onsale {
  min-width: auto;
  min-height: auto;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
}

.woocommerce ul.products li.product span.onsale {
  top: calc(var(--product-card-padding) + var(--product-media-inset));
  right: calc(var(--product-card-padding) + var(--product-media-inset));
  bottom: auto;
  left: auto;
  margin: 0;
}

.woocommerce div.product span.onsale {
  top: 25px;
  right: auto;
  bottom: auto;
  left: 25px;
}

.woocommerce span.onsale.mosthome-sale-badge {
  box-shadow: 0 8px 20px rgba(255, 95, 6, .2);
  font-weight: 900;
  letter-spacing: .025em;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
  float: none;
  width: 100% !important;
  min-width: 0;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.woocommerce div.product .summary {
  padding-top: 20px;
}

.woocommerce div.product .product_title {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
}

.woocommerce div.product p.price {
  color: var(--accent-text);
  font-size: 25px;
  font-weight: 850;
}

.woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 17px;
}

.woocommerce div.product form.variations_form {
  margin-top: 28px;
}

.woocommerce div.product form.variations_form table.variations {
  width: 100%;
  border: 0;
  margin: 0 0 20px;
}

.woocommerce div.product form.variations_form table.variations tbody {
  display: grid;
  gap: 22px;
}

.woocommerce div.product form.variations_form table.variations tr {
  display: grid;
  gap: 10px;
}

.woocommerce div.product form.variations_form table.variations th.label,
.woocommerce div.product form.variations_form table.variations td.value {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
}

.woocommerce div.product form.variations_form table.variations th.label label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.mosthome-variation-current {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.mosthome-native-variation-select {
  position: absolute !important;
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.mosthome-variation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.mosthome-variation-option {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: flex-start;
  appearance: none;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(43, 45, 58, .05);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease, color 150ms ease, transform 150ms ease;
}

.mosthome-variation-option:hover:not(:disabled) {
  border-color: var(--brand-slate);
  box-shadow: 0 8px 20px rgba(43, 45, 58, .1);
  transform: translateY(-1px);
}

.mosthome-variation-option.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent), 0 8px 20px rgba(255, 95, 6, .12);
  color: var(--brand-slate-deep);
}

.mosthome-variation-option:disabled {
  border-color: var(--line);
  background: var(--paper);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .46;
  text-decoration: line-through;
  transform: none;
}

.woocommerce div.product form.variations_form .reset_variations {
  margin-top: 10px;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 750;
}

.review-product-cta {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 26px;
  padding: 20px;
  background: var(--card);
}

.review-product-cta > strong {
  font-size: 17px;
}

.review-product-cta p {
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / 3;
  margin-top: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: var(--line);
}

.woocommerce div.product .woocommerce-tabs .panel {
  max-width: 840px;
}

.product-quick-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; margin: 24px 0 0; background: var(--line); }
.product-quick-facts div { min-width: 0; padding: 14px; background: var(--card); }
.product-quick-facts dt { font-size: 15px; font-weight: 850; }
.product-quick-facts dd { margin: 3px 0 0; color: var(--muted); font-size: 11px; line-height: 1.35; }

.product-story { grid-column: 1 / 3; display: grid; gap: 18px; margin-top: 54px; }
.product-story-section { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); min-height: 520px; overflow: hidden; border-radius: 24px; background: var(--card); }
.product-story-section:nth-child(even) { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); }
.product-story-section:nth-child(even) .product-story-copy { order: 2; }
.product-story-section.product-story-no-media { grid-template-columns: 1fr; min-height: auto; }
.product-story-section.product-story-no-media .product-story-copy { order: 0; max-width: 980px; }
.product-story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 72px); }
.product-story-copy h2, .product-specification h2, .product-review-summary h2 { margin: 0; font-size: clamp(36px, 4.6vw, 64px); font-weight: 760; letter-spacing: -.055em; line-height: 1; }
.product-story-copy p { margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.product-story-copy ul { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.product-story-copy li { border-top: 1px solid rgba(104, 107, 102, .25); padding-top: 12px; font-weight: 700; }
.product-story-media { min-height: 420px; margin: 0; background: var(--brand-soft); }
.product-story-media img { width: 100%; height: 100%; object-fit: cover; }
.product-story-green { background: var(--brand-slate); color: #fff; }
.product-story-green .eyebrow { color: var(--gold); }
.product-story-green .product-story-copy p { color: rgba(255,255,255,.7); }
.product-story-green .product-story-copy li { border-color: rgba(255,255,255,.18); }
.product-story-lime { background: var(--accent-soft); }

.product-specification, .product-review-summary { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 100px); border-radius: 24px; padding: clamp(38px, 6vw, 78px); background: var(--card); }
.product-specification dl { margin: 0; }
.product-specification dl div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-bottom: 1px solid var(--line); padding: 13px 0; }
.product-specification dt { color: var(--muted); }
.product-specification dd { margin: 0; font-weight: 750; }
.product-review-summary { background: var(--brand-slate); color: #fff; }
.product-review-summary .eyebrow { color: var(--gold); }
.product-review-points { display: grid; gap: 12px; align-content: center; }
.product-review-points p { border-top: 1px solid rgba(255,255,255,.18); margin: 0; padding-top: 14px; font-size: 17px; }
.product-review-points small { color: rgba(255,255,255,.58); }
.product-review-points a { color: var(--accent-light); text-decoration: underline; }
.product-service-strip { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.product-service-strip div { display: grid; gap: 3px; padding: 25px; background: var(--card); }
.product-service-strip strong { font-size: 15px; }
.product-service-strip span, .product-service-strip a { color: var(--muted); font-size: 12px; }
.mosthome-review-anchor { display: flex; align-items: center; flex-wrap: wrap; gap: 5px 12px; border-block: 1px solid var(--line); margin: 14px 0 20px; padding: 13px 0; color: var(--ink); }
.mosthome-review-anchor strong { border-radius: 999px; padding: 5px 10px; background: var(--gold); font-size: 13px; }
.mosthome-review-anchor span { color: var(--muted); font-size: 12px; font-weight: 700; }
.mosthome-review-anchor small { width: 100%; color: var(--accent-text); font-size: 11px; font-weight: 750; }
.mosthome-reviews { grid-column: 1 / 3; margin-top: 18px; border-radius: 24px; padding: clamp(38px, 5vw, 72px); background: #fff; }
.mosthome-reviews-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); align-items: end; gap: 40px; }
.mosthome-reviews-heading h2 { margin: 0; font-size: clamp(36px, 4.6vw, 64px); letter-spacing: -.055em; line-height: 1; }
.mosthome-reviews-heading > p { margin: 0; color: var(--muted); }
.mosthome-review-disclosure { max-width: 920px; border-left: 3px solid var(--gold); margin: 28px 0 0; padding: 12px 16px; background: var(--paper); color: var(--muted); font-size: 12px; line-height: 1.55; }
.mosthome-review-toolbar { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 30px 0 22px; }
.mosthome-review-toolbar button, .mosthome-review-carousel-controls button { border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; background: #fff; color: var(--ink); font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.mosthome-review-toolbar button.is-active { border-color: var(--brand-slate); background: var(--brand-slate); color: #fff; }
.mosthome-review-toolbar [data-review-count] { display: grid; min-width: 34px; height: 34px; place-items: center; margin-left: auto; border-radius: 999px; background: var(--accent-soft); color: var(--accent-text); font-size: 12px; font-weight: 900; }
.mosthome-review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.mosthome-review-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.mosthome-review-card[hidden] { display: none !important; }
.mosthome-review-photos { display: flex; min-height: 210px; gap: 2px; overflow-x: auto; background: var(--brand-soft); scroll-snap-type: x mandatory; }
.mosthome-review-photo { flex: 1 0 min(72%, 320px); min-width: 0; border: 0; padding: 0; background: transparent; cursor: zoom-in; scroll-snap-align: start; }
.mosthome-review-photo img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; }
.mosthome-review-product-image { display: block; min-height: 210px; background: var(--brand-soft); }
.mosthome-review-product-image img { width: 100%; height: 210px; object-fit: contain; }
.mosthome-review-card-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.mosthome-review-card-head { display: flex; align-items: center; gap: 12px; }
.mosthome-review-card-head > span:last-child { display: grid; gap: 2px; }
.mosthome-review-card-head > span:last-child small { color: var(--muted); font-size: 11px; }
.mosthome-review-score { display: inline-flex; min-width: 58px; align-items: baseline; justify-content: center; gap: 2px; border-radius: 12px; padding: 8px; background: var(--gold); color: var(--ink); }
.mosthome-review-score strong { font-size: 18px; }
.mosthome-review-score small { font-size: 10px; font-weight: 800; }
.mosthome-review-variant { align-self: flex-start; border-radius: 999px; margin: 15px 0 0; padding: 5px 9px; background: var(--paper); color: var(--muted); font-size: 11px; }
.mosthome-review-text { margin: 18px 0 0; font-size: 16px; line-height: 1.55; }
.mosthome-review-detail { display: grid; gap: 4px; margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.mosthome-review-detail strong { color: var(--ink); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.mosthome-review-card-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); margin-top: auto; padding-top: 18px; }
.mosthome-review-source, .mosthome-review-verified { color: var(--muted); font-size: 10px; font-weight: 750; }
.mosthome-review-source { text-decoration: underline; text-underline-offset: 3px; }
.mosthome-review-verified { color: var(--brand-slate); }
.mosthome-review-product-link { max-width: 55%; color: var(--accent-text); font-size: 11px; font-weight: 800; text-align: right; }
.mosthome-review-empty { border: 1px dashed var(--line); border-radius: 16px; margin-top: 28px; padding: 28px; background: var(--paper); }
.mosthome-review-empty p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.mosthome-native-review-form { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: 40px; border-top: 1px solid var(--line); margin-top: 42px; padding-top: 38px; }
.mosthome-native-review-form h3 { margin: 0; font-size: clamp(25px, 3vw, 38px); letter-spacing: -.04em; }
.mosthome-native-review-form > p { margin: 0; color: var(--muted); }
.mosthome-native-review-form .comment-respond { margin: 0; }
.mosthome-native-review-form .comment-form { display: grid; gap: 12px; }
.mosthome-native-review-form .comment-form p { margin: 0; }
.mosthome-native-review-form label { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 800; }
.mosthome-native-review-form textarea, .mosthome-native-review-form select, .mosthome-native-review-form input[type="text"], .mosthome-native-review-form input[type="email"] { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: var(--paper); }
.mosthome-review-dialog { width: min(920px, calc(100% - 30px)); border: 0; border-radius: 18px; padding: 46px 16px 16px; background: #fff; }
.mosthome-review-dialog::backdrop { background: rgba(20, 25, 24, .76); }
.mosthome-review-dialog img { display: block; max-width: 100%; max-height: 78vh; margin: auto; border-radius: 12px; object-fit: contain; }
.mosthome-review-dialog button { position: absolute; top: 12px; right: 14px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; background: #fff; cursor: pointer; }
.mosthome-home-reviews { overflow: hidden; background: var(--brand-slate); color: #fff; }
.mosthome-home-reviews .eyebrow { color: var(--gold); }
.mosthome-review-section-head { align-items: center; }
.mosthome-review-carousel-controls { display: flex; gap: 8px; }
.mosthome-review-carousel-controls button { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; }
.mosthome-home-review-note { max-width: 720px; margin: -20px 0 28px; color: rgba(255,255,255,.65); font-size: 12px; }
.mosthome-review-carousel { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; scrollbar-color: rgba(255,255,255,.35) transparent; }
.mosthome-review-carousel .mosthome-review-card { flex: 0 0 min(390px, 86vw); color: var(--ink); scroll-snap-align: start; }
.woocommerce div.product .flex-control-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 12px !important; }
.woocommerce div.product .flex-control-thumbs li { float: none !important; width: auto !important; }
.woocommerce div.product .flex-control-thumbs img { aspect-ratio: 1; border-radius: 10px; object-fit: cover; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--accent);
  border-radius: 12px;
  background: var(--card);
}

.woocommerce-cart table.cart,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--card);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--card);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 26px;
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 36px, 920px);
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    align-content: center;
    gap: 5px;
    padding: 8px;
  }

  .nav-toggle > span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .primary-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 18px;
    background: var(--paper);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
  }

  .header-actions {
    justify-self: end;
  }

  .header-phone {
    display: none;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-actions,
  .hero-facts {
    justify-content: center;
    margin-inline: auto;
  }

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

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

  .trust-grid > div {
    border-bottom: 1px solid var(--line);
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 330px;
  }

  .mood-grid { grid-template-columns: 1fr; }
  .mood-grid article { min-height: 410px; }

  .collection-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-page {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .content-page-header {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 14px;
  }

  body {
    font-size: 15px;
  }

  .review-notice {
    text-align: left;
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand-logo {
    width: 150px;
  }

  .brand-light .brand-logo {
    width: 180px;
  }

  .primary-nav {
    top: 66px;
  }

  .cart-link span {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(45px, 15vw, 65px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .mosthome-promo-strip-inner {
    min-height: 44px;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
  }

  .mosthome-promo-strip-inner > span {
    max-width: 245px;
    font-size: 10px;
    line-height: 1.35;
  }

  .mosthome-promo-strip a {
    font-size: 0;
  }

  .mosthome-promo-strip a span {
    font-size: 18px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }

  .hero-facts div,
  .hero-facts div:first-child {
    border-left: 2px solid var(--accent);
    padding-left: 16px;
  }

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

  .hero-tag {
    min-width: 105px;
    padding: 9px 11px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    border-right: 0;
    padding: 17px 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 390px);
  }

  .collection-large {
    grid-column: auto;
  }

  .collection-content {
    inset: auto 22px 22px;
  }

  .collection-smart img {
    object-position: 62% 50%;
  }

  .collection-floor img {
    object-position: 48% 50%;
  }

  .size-cards,
  .temperature-grid {
    grid-template-columns: 1fr;
  }

  .size-cards article {
    min-height: 285px;
  }

  .temperature-grid {
    grid-template-rows: repeat(3, 260px) auto;
  }

  .temperature-copy {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 25px;
  }

  .service-actions {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-content {
    padding: 25px 20px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    --product-card-padding: 9px;
    --product-media-inset: 10px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 58px;
    font-size: 14px;
  }

  .woocommerce ul.products li.product .button {
    width: calc(100% - 8px);
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary {
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
  }

  .woocommerce div.product .flex-viewport {
    max-width: 100%;
    overflow: hidden;
  }

  .woocommerce div.product .woocommerce-tabs {
    grid-column: auto;
  }

  .product-quick-facts { grid-template-columns: 1fr; }
  .product-story { grid-column: auto; margin-top: 30px; }
  .product-story-section,
  .product-story-section:nth-child(even),
  .product-specification,
  .product-review-summary { grid-template-columns: 1fr; }
  .product-story-section:nth-child(even) .product-story-copy { order: 0; }
  .product-story-section { min-height: 0; }
  .product-story-copy { padding: 34px 24px; }
  .product-story-media { min-height: 340px; }
  .hero-visual img { height: 390px; }
  .product-specification,
  .product-review-summary { gap: 30px; padding: 36px 24px; }
  .product-specification dl div { grid-template-columns: 1fr; gap: 4px; }
  .product-service-strip { grid-template-columns: 1fr; }
  .mosthome-reviews { grid-column: auto; padding: 36px 20px; }
  .mosthome-reviews-heading, .mosthome-native-review-form { grid-template-columns: 1fr; gap: 20px; }
  .mosthome-review-grid { grid-template-columns: 1fr; }
  .mosthome-review-card-footer { align-items: flex-start; flex-direction: column; }
  .mosthome-review-product-link { max-width: none; text-align: left; }
  .mosthome-review-section-head { flex-direction: row; align-items: flex-end; }
  .mosthome-review-carousel-controls { flex: 0 0 auto; }
  .mosthome-review-carousel-controls button { padding-inline: 12px; }
  .woocommerce div.product .flex-control-thumbs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .woocommerce div.product .flex-control-thumbs li { flex: 0 0 72px; scroll-snap-align: start; }

  .woocommerce div.product form.variations_form {
    margin-top: 24px;
  }

  .woocommerce div.product form.variations_form table.variations tbody {
    gap: 20px;
  }

  .mosthome-variation-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mosthome-variation-option {
    min-height: 54px;
    padding: 11px 13px;
    font-size: 14px;
  }

}
