/*
Theme Name: Steeva Shoptimizer
Template: shoptimizer
Author: Steeva
Version: 1.4.6
*/

:root {
  --steeva-violet: #977bb7;
  --steeva-violet-deep: #59406f;
  --steeva-ink: #171319;
  --steeva-soft-ink: #4f4753;
  --steeva-tea: #233a30;
  --steeva-copper: #b76e3f;
  --steeva-paper: #f6f0e7;
  --steeva-porcelain: #fffdf8;
  --steeva-steel: #eceff0;
  --steeva-stone: #d8cec2;
  --steeva-white: #ffffff;
  --steeva-radius: 8px;
  --steeva-shadow: 0 16px 48px rgba(23, 19, 25, 0.08);
  --steeva-display: Georgia, "Times New Roman", serif;
  --steeva-body: Aptos, "Segoe UI", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--steeva-ink);
  background: var(--steeva-porcelain);
  font-family: var(--steeva-body);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: var(--steeva-body);
}

h1,
h2,
h3,
.site-title,
.woocommerce-products-header__title,
.product_title,
.entry-title {
  color: var(--steeva-ink);
  font-family: var(--steeva-display);
  letter-spacing: 0;
}

p,
li,
.woocommerce-product-details__short-description {
  line-height: 1.55;
}

a {
  color: var(--steeva-violet-deep);
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.button:focus,
.wp-element-button:focus {
  outline: 3px solid rgba(151, 123, 183, 0.38);
  outline-offset: 3px;
}

.col-full,
.site-content .col-full {
  max-width: 1240px;
}

.site-header,
.main-navigation ul.menu ul.sub-menu {
  background: rgba(255, 253, 248, 0.98);
}

.site-header {
  border-bottom: 1px solid rgba(216, 206, 194, 0.86);
}

.site-header .site-search {
  display: none;
}

.col-full-nav {
  background: var(--steeva-porcelain) !important;
  border-top: 1px solid rgba(216, 206, 194, 0.8);
  border-bottom: 1px solid rgba(216, 206, 194, 0.8);
}

.main-navigation ul.menu > li > a,
.secondary-navigation ul.menu > li > a {
  color: var(--steeva-ink) !important;
  font-weight: 800;
  letter-spacing: 0;
}

.main-navigation ul.menu > li > a:hover,
.secondary-navigation ul.menu > li > a:hover {
  color: var(--steeva-violet-deep);
}

.site-header-cart .cart-contents,
.site-header-cart .cart-contents .amount {
  color: var(--steeva-ink);
}

.site-header-cart .cart-contents .count {
  border-color: var(--steeva-violet);
  color: var(--steeva-violet-deep);
}

.site-header .site-branding img {
  width: auto;
  max-height: 40px;
}

.site-branding button.menu-toggle {
  width: 44px;
}

.menu-toggle .bar-text {
  display: none !important;
}

.steeva-mobile-drawer-head,
.steeva-mobile-extra {
  display: none;
}

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
  min-height: 44px;
  border-radius: 999px;
  background: var(--steeva-violet-deep);
  color: var(--steeva-white);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover {
  background: #473158;
  color: var(--steeva-white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(89, 64, 111, 0.22);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--steeva-violet);
  background: var(--steeva-white);
  color: var(--steeva-ink);
  box-shadow: none;
}

.site-main,
.content-area {
  color: var(--steeva-ink);
}

.steeva-home {
  background: var(--steeva-porcelain);
}

.home .site-content .col-full,
.home.page-id-16 .site-content .col-full,
.page-id-16 .site-content .col-full {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.home .content-area,
.page-id-16 .content-area {
  width: 100%;
  float: none;
  margin-right: 0;
}

.home .widget-area,
.home .entry-header,
.page-id-16 .widget-area,
.page-id-16 .entry-header {
  display: none;
}

.home .entry-content,
.page-id-16 .entry-content {
  margin-top: 0;
}

.home .entry-content > *,
.page-id-16 .entry-content > * {
  max-width: none;
}

.home .steeva-home p:empty,
.page-id-16 .steeva-home p:empty {
  display: none;
}

.steeva-hero {
  min-height: clamp(650px, 86vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
  padding: clamp(34px, 5.8vw, 78px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 88% 18%, rgba(151, 123, 183, 0.18), transparent 30%),
    linear-gradient(130deg, rgba(255, 253, 248, 0.97), rgba(246, 240, 231, 0.9)),
    var(--steeva-paper);
  border-bottom: 1px solid var(--steeva-stone);
}

.steeva-hero-content {
  position: relative;
  z-index: 1;
}

.steeva-hero-rating {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(151, 123, 183, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--steeva-violet-deep);
  box-shadow: 0 10px 30px rgba(23, 19, 25, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
}

.steeva-hero-rating span {
  color: var(--steeva-copper);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.steeva-eyebrow {
  margin: 0 0 12px;
  color: var(--steeva-violet-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steeva-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--steeva-ink);
  font-size: clamp(3rem, 5.5vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.steeva-hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--steeva-soft-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.steeva-hero-mobile-product {
  display: none;
}

.steeva-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.steeva-hero-microcopy {
  margin-top: 12px;
  color: var(--steeva-soft-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.steeva-primary,
.steeva-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.steeva-primary {
  color: var(--steeva-white);
  background: var(--steeva-violet-deep);
}

.steeva-primary:hover {
  color: var(--steeva-white);
  background: #473158;
}

.steeva-secondary {
  color: var(--steeva-ink);
  border: 1px solid var(--steeva-stone);
  background: var(--steeva-white);
}

.steeva-secondary:hover {
  color: var(--steeva-violet-deep);
  border-color: var(--steeva-violet);
}

.steeva-proof-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--steeva-soft-ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.steeva-proof-note span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(151, 123, 183, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.steeva-hero-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 24px;
}

.steeva-hero-review-grid blockquote {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(216, 206, 194, 0.9);
  border-radius: var(--steeva-radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 12px 32px rgba(23, 19, 25, 0.05);
}

.steeva-hero-review-grid blockquote span {
  display: block;
  margin-bottom: 8px;
  color: var(--steeva-copper);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.steeva-hero-review-grid p {
  margin: 0 0 9px;
  color: var(--steeva-ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.42;
}

.steeva-hero-review-grid cite {
  color: var(--steeva-soft-ink);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.steeva-hero-showcase {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.steeva-hero-price-card,
.steeva-hero-process-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(216, 206, 194, 0.9);
  border-radius: var(--steeva-radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 38px rgba(23, 19, 25, 0.12);
  backdrop-filter: blur(10px);
}

.steeva-hero-price-card {
  top: 24px;
  right: 24px;
  min-width: 152px;
  padding: 15px;
}

.steeva-hero-price-card span,
.steeva-hero-process-card strong {
  display: block;
  color: var(--steeva-violet-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steeva-hero-price-card strong {
  display: block;
  margin-top: 4px;
  color: var(--steeva-ink);
  font-size: 1.65rem;
  line-height: 1;
}

.steeva-hero-price-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--steeva-violet-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.steeva-hero-process-card {
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 16px;
}

.steeva-hero-process-card p {
  margin: 0;
  color: var(--steeva-soft-ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.steeva-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--steeva-stone);
  border-top: 1px solid var(--steeva-stone);
  border-bottom: 1px solid var(--steeva-stone);
}

.steeva-trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 12px;
  background: var(--steeva-white);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}

.steeva-trust-row span::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(151, 123, 183, 0.22), rgba(183, 110, 63, 0.16)),
    var(--steeva-paper);
  box-shadow: inset 0 0 0 1px rgba(89, 64, 111, 0.16);
}

.steeva-hero-media {
  height: 100%;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: var(--steeva-radius);
  background: var(--steeva-white);
  box-shadow: var(--steeva-shadow);
}

.steeva-hero-media::after {
  content: "Brew · Strain · Serve";
  position: absolute;
  left: 24px;
  top: 24px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(216, 206, 194, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--steeva-ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.steeva-hero-media img,
.steeva-image-band img,
.steeva-product-visual img,
.steeva-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steeva-hero-media img,
.steeva-product-visual img,
.steeva-image-band img {
  object-fit: contain;
  padding: clamp(12px, 2vw, 26px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 255, 255, 0.98)),
    var(--steeva-white);
}

.steeva-image-band img {
  object-position: center;
}

.steeva-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 112px));
  grid-template-columns: minmax(560px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  padding: clamp(42px, 5vw, 70px) clamp(32px, 5.8vw, 92px) clamp(32px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0 39%, rgba(255, 253, 248, 0.55) 48%, rgba(255, 253, 248, 0.02) 72%),
    url("/wp-content/themes/steeva-shoptimizer/assets/img/gallery/steeva-gallery-01-clean-product-set-1254.webp"),
    var(--steeva-porcelain);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.steeva-hero-content {
  max-width: 680px;
}

.steeva-hero .steeva-eyebrow {
  display: none;
}

.steeva-hero h1 {
  max-width: 720px;
  color: var(--steeva-violet-deep);
  font-size: clamp(4.4rem, 6vw, 6.45rem);
  font-weight: 400;
  line-height: 0.92;
}

.steeva-hero-copy {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(23, 19, 25, 0.7);
  font-family: var(--steeva-display);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  line-height: 1.25;
}

.steeva-hero .steeva-actions {
  margin-top: 42px;
}

.steeva-hero .steeva-primary,
.steeva-hero .steeva-secondary {
  min-height: 58px;
  padding: 0 34px;
  font-size: 1rem;
  gap: 16px;
}

.steeva-hero .steeva-primary {
  min-width: 232px;
  box-shadow: 0 16px 38px rgba(89, 64, 111, 0.22);
}

.steeva-hero .steeva-secondary {
  min-width: 230px;
  color: var(--steeva-violet-deep);
  border-color: rgba(89, 64, 111, 0.32);
  background: rgba(255, 253, 248, 0.7);
}

.steeva-hero-feature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  color: var(--steeva-soft-ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.steeva-hero-feature-line span + span::before {
  content: "•";
  margin-right: 16px;
  color: var(--steeva-violet-deep);
}

.steeva-hero-showcase {
  display: none;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(500px, 52vw, 650px);
}

.steeva-hero-media {
  width: min(100%, 820px);
  min-height: 0;
  height: clamp(470px, 50vw, 640px);
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.steeva-hero-media::after {
  display: none;
}

.steeva-hero-media img {
  padding: 0;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: drop-shadow(0 28px 32px rgba(23, 19, 25, 0.16));
}

.steeva-hero-feature-panel {
  position: absolute;
  right: clamp(32px, 5vw, 84px);
  bottom: clamp(24px, 3vw, 44px);
  left: auto;
  width: min(540px, 42vw);
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(216, 206, 194, 0.5);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 24px 60px rgba(23, 19, 25, 0.1);
  backdrop-filter: blur(14px);
}

.steeva-hero-feature {
  min-height: 106px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px 12px;
  color: var(--steeva-violet-deep);
  text-align: center;
}

.steeva-hero-feature + .steeva-hero-feature {
  border-left: 1px solid rgba(216, 206, 194, 0.72);
}

.steeva-hero-feature svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steeva-hero-feature strong {
  color: var(--steeva-ink);
  font-family: var(--steeva-display);
  font-size: 0.96rem;
  font-weight: 400;
}

.steeva-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 80px);
}

.steeva-section h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.steeva-section-lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--steeva-soft-ink);
  font-size: 1.12rem;
  line-height: 1.62;
}

.steeva-feature-grid {
  counter-reset: steeva-feature;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--steeva-stone);
  border: 1px solid var(--steeva-stone);
  border-radius: var(--steeva-radius);
  overflow: hidden;
}

.steeva-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: var(--steeva-white);
}

.steeva-editorial-copy {
  max-width: 620px;
}

.steeva-editorial-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.steeva-editorial-list li {
  position: relative;
  padding: 18px 0 18px 42px;
  border-top: 1px solid var(--steeva-stone);
}

.steeva-editorial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--steeva-violet-deep);
  box-shadow: inset 0 0 0 7px rgba(255, 253, 248, 0.76);
}

.steeva-editorial-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--steeva-ink);
}

.steeva-editorial-list span {
  color: var(--steeva-soft-ink);
}

.steeva-feature {
  counter-increment: steeva-feature;
  position: relative;
  min-height: 220px;
  padding: 24px;
  background: var(--steeva-white);
}

.steeva-feature::before {
  content: "0" counter(steeva-feature);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(89, 64, 111, 0.1);
  color: var(--steeva-violet-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.steeva-feature strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.steeva-feature p {
  margin: 0;
  color: var(--steeva-soft-ink);
  line-height: 1.55;
}

.steeva-product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  background: var(--steeva-tea);
  color: var(--steeva-white);
}

.steeva-product-story .steeva-section-lede,
.steeva-product-story .steeva-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.steeva-product-story h2 {
  color: var(--steeva-white);
}

.steeva-image-band {
  height: clamp(340px, 48vw, 620px);
  overflow: hidden;
  border-radius: var(--steeva-radius);
  background: var(--steeva-white);
}

.steeva-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: var(--steeva-radius);
  overflow: hidden;
}

.steeva-specs span {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.steeva-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: var(--steeva-paper);
}

.steeva-product-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--steeva-radius);
  background: var(--steeva-white);
  box-shadow: var(--steeva-shadow);
}

.steeva-checks {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steeva-checks li {
  padding-left: 30px;
  position: relative;
  color: var(--steeva-soft-ink);
  line-height: 1.5;
}

.steeva-checks li::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 50%;
  background: var(--steeva-violet);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.6);
}

.steeva-process-section {
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 88% 18%, rgba(151, 123, 184, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(248, 243, 235, 0.86));
}

.steeva-process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.steeva-process-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 206, 194, 0.9);
  border-radius: var(--steeva-radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 26px 74px rgba(48, 39, 59, 0.1);
}

.steeva-process-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%);
}

.steeva-process-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.steeva-process-copy {
  max-width: 680px;
}

.steeva-process-copy h2 {
  max-width: 620px;
}

.steeva-process-card {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(216, 206, 194, 0.9);
  border-radius: var(--steeva-radius);
  background: rgba(216, 206, 194, 0.88);
  box-shadow: 0 22px 54px rgba(48, 39, 59, 0.08);
}

.steeva-process-card span {
  position: relative;
  display: block;
  padding: 18px 20px 18px 58px;
  background: rgba(255, 253, 248, 0.92);
}

.steeva-process-card span::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--steeva-violet-deep);
  box-shadow: inset 0 0 0 5px rgba(255, 253, 248, 0.72);
}

.steeva-process-card strong {
  display: block;
  color: var(--steeva-ink);
  font-size: 1rem;
}

.steeva-process-card small {
  display: block;
  margin-top: 4px;
  color: var(--steeva-soft-ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.steeva-process-copy .steeva-actions {
  margin-top: 28px;
}

.steeva-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--steeva-stone);
  border: 1px solid var(--steeva-stone);
  border-radius: var(--steeva-radius);
  overflow: hidden;
}

.steeva-step {
  position: relative;
  padding: 28px;
  background: var(--steeva-white);
}

.steeva-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(89, 64, 111, 0.1);
  color: var(--steeva-violet-deep);
  font-weight: 900;
}

.steeva-step h3 {
  margin: 12px 0 8px;
  font-family: var(--steeva-display);
  font-size: 1.45rem;
}

.steeva-step p {
  margin: 0;
  color: var(--steeva-soft-ink);
  line-height: 1.55;
}

.steeva-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--steeva-ink);
  color: var(--steeva-white);
}

.steeva-final-cta h2,
.steeva-final-cta .steeva-section-lede {
  color: var(--steeva-white);
}

.steeva-final-cta .steeva-section-lede {
  opacity: 0.78;
}

.single-product div.product {
  color: var(--steeva-ink);
}

.single-product div.product .summary .product_title {
  font-size: clamp(2.4rem, 4.5vw, 4.9rem);
  line-height: 1;
}

.single-product div.product .summary .price {
  color: var(--steeva-violet-deep);
  font-size: 1.45rem;
  font-weight: 900;
}

.single-product div.product form.cart {
  margin-top: 24px;
}

.single-product div.product form.cart .button {
  min-height: 52px;
  padding-right: 32px;
  padding-left: 32px;
  background: var(--steeva-violet-deep);
}

.single-product div.product .woocommerce-product-gallery {
  overflow: hidden;
  border-radius: var(--steeva-radius);
  background: var(--steeva-white);
}

.single-product div.product .woocommerce-product-gallery img,
ul.products li.product img {
  background: var(--steeva-white);
  object-fit: cover;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport,
.single-product div.product .woocommerce-product-gallery__wrapper {
  background: var(--steeva-white);
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image,
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  min-height: clamp(430px, 42vw, 620px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--steeva-white);
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: clamp(430px, 42vw, 620px) !important;
  object-fit: contain;
}

.single-product div.product .woocommerce-product-gallery .zoomImg {
  display: none !important;
}

.steeva-pdp-badges,
.steeva-pdp-trust {
  display: grid;
}

.steeva-pdp-badges {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 20px;
}

.steeva-icon-badge,
.steeva-funnel-note span {
  padding: 10px 12px;
  border: 1px solid rgba(151, 123, 183, 0.24);
  border-radius: var(--steeva-radius);
  background: var(--steeva-paper);
  color: var(--steeva-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.steeva-icon-badge {
  min-height: 52px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 240, 231, 0.92)),
    var(--steeva-paper);
}

.steeva-badge-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(151, 123, 183, 0.14);
  color: var(--steeva-violet-deep);
}

.steeva-badge-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steeva-pdp-trust {
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 24px;
}

.steeva-proof-card {
  position: relative;
  min-height: 94px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(151, 123, 183, 0.18);
  border-radius: var(--steeva-radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(246, 240, 231, 0.52)),
    var(--steeva-white);
}

.steeva-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--steeva-violet-deep);
  opacity: 0.84;
}

.steeva-proof-card--clean::before {
  background: var(--steeva-copper);
}

.steeva-proof-card--steel::before {
  background: var(--steeva-tea);
}

.steeva-proof-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(151, 123, 183, 0.22);
  border-radius: var(--steeva-radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.92), transparent 34%),
    rgba(151, 123, 183, 0.11);
  color: var(--steeva-violet-deep);
}

.steeva-proof-card--clean .steeva-proof-icon {
  border-color: rgba(183, 110, 63, 0.24);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.92), transparent 34%),
    rgba(183, 110, 63, 0.1);
  color: var(--steeva-copper);
}

.steeva-proof-card--steel .steeva-proof-icon {
  border-color: rgba(35, 58, 48, 0.24);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.92), transparent 34%),
    rgba(35, 58, 48, 0.1);
  color: var(--steeva-tea);
}

.steeva-proof-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steeva-proof-card div {
  min-width: 0;
}

.steeva-proof-card strong {
  display: block;
  color: var(--steeva-ink);
  font-size: 0.94rem;
  line-height: 1.25;
}

.steeva-proof-card p {
  margin: 6px 0 0;
  color: var(--steeva-soft-ink);
  font-size: 0.84rem;
  line-height: 1.4;
}

button[data-trigger="callBack"] {
  min-height: 44px !important;
  right: 30px !important;
  bottom: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 999px !important;
  background: var(--steeva-violet-deep) !important;
  color: var(--steeva-white) !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 30px rgba(89, 64, 111, 0.25) !important;
}

.steeva-pdp-story {
  clear: both;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 54px 0 32px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--steeva-radius);
  background: var(--steeva-paper);
}

.steeva-pdp-story h2,
.steeva-pdp-details h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
}

.steeva-pdp-story p,
.steeva-pdp-details p {
  color: var(--steeva-soft-ink);
}

.steeva-detail-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--steeva-radius);
  background: var(--steeva-white);
}

.steeva-pdp-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  margin: 32px 0 56px;
  border: 1px solid var(--steeva-stone);
  border-radius: var(--steeva-radius);
  overflow: hidden;
  background: var(--steeva-stone);
}

.steeva-pdp-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--steeva-white);
}

.steeva-pdp-panel ul {
  margin-bottom: 0;
}

.steeva-funnel-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.steeva-legal {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0 clamp(44px, 7vw, 86px);
}

.page .entry-content > .steeva-legal:first-child {
  margin-top: -10px;
}

.steeva-legal-hero {
  max-width: 780px;
  margin-bottom: clamp(26px, 5vw, 48px);
}

.steeva-legal-hero h1 {
  max-width: 11ch;
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 7vw, 5.7rem);
  line-height: 0.94;
}

.steeva-legal-hero p {
  max-width: 62ch;
  margin: 0;
  color: var(--steeva-soft-ink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.steeva-legal-hero small {
  display: inline-flex;
  margin-top: 18px;
  color: var(--steeva-violet-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.steeva-legal-grid,
.steeva-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.steeva-legal-grid article,
.steeva-contact-cards article,
.steeva-legal-panel {
  border: 1px solid rgba(216, 206, 194, 0.88);
  border-radius: var(--steeva-radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 40px rgba(23, 19, 25, 0.05);
}

.steeva-legal-grid article,
.steeva-contact-cards article {
  padding: clamp(20px, 3vw, 32px);
}

.steeva-legal-grid h2,
.steeva-contact-cards h2,
.steeva-legal-panel h2 {
  margin: 0 0 10px;
  color: var(--steeva-ink);
  font-family: var(--steeva-body);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.steeva-legal-grid p,
.steeva-contact-cards p,
.steeva-legal-panel p,
.steeva-legal-panel li {
  color: var(--steeva-soft-ink);
  font-size: 0.98rem;
}

.steeva-legal-grid p:last-child,
.steeva-contact-cards p:last-child,
.steeva-legal-panel p:last-child,
.steeva-legal-panel ol,
.steeva-legal-panel ul {
  margin-bottom: 0;
}

.steeva-contact-cards a,
.steeva-legal-panel a {
  color: var(--steeva-violet-deep);
  font-weight: 900;
  text-underline-offset: 3px;
}

.steeva-legal-panel {
  margin-top: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.steeva-contact-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.steeva-contact-band a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(89, 64, 111, 0.18);
  border-radius: 999px;
  background: var(--steeva-violet-deep);
  color: var(--steeva-white);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.steeva-contact-band a:nth-child(n+2) {
  background: var(--steeva-white);
  color: var(--steeva-violet-deep);
}

.steeva-site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(216, 206, 194, 0.9);
  background:
    linear-gradient(135deg, rgba(35, 58, 48, 0.96), rgba(23, 19, 25, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 253, 248, 0.035) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-45deg, rgba(151, 123, 183, 0.05) 0 1px, transparent 1px 18px),
    var(--steeva-tea);
  color: rgba(255, 253, 248, 0.86);
}

.steeva-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  gap: 30px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 72px) 0 34px;
}

.steeva-footer-brand {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.steeva-footer-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.steeva-footer-logo img {
  width: auto;
  height: 42px;
  max-width: 210px;
  filter: brightness(0) invert(1);
}

.steeva-footer-rule {
  width: min(100%, 640px);
  height: 1px;
  margin: 0 auto 18px;
  background: rgba(255, 253, 248, 0.34);
}

.steeva-footer-brand p {
  max-width: 48ch;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.98rem;
  line-height: 1.6;
}

.steeva-footer-contact {
  margin-top: 18px !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.steeva-footer-contact strong {
  color: var(--steeva-white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.steeva-footer-contact a {
  color: rgba(255, 253, 248, 0.78);
  text-decoration: none;
}

.steeva-footer-contact a:hover {
  color: var(--steeva-white);
}

.steeva-footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.steeva-footer-badges span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
}

.steeva-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 64px);
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding-top: 12px;
}

.steeva-footer-column h2 {
  position: relative;
  margin: 0 0 18px;
  color: var(--steeva-white);
  font-family: var(--steeva-body);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steeva-footer-column h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-top: 8px;
  background: rgba(255, 253, 248, 0.32);
}

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

.steeva-footer-column a {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.96rem;
  text-decoration: none;
}

.steeva-footer-column a:hover,
.steeva-footer-column a:focus {
  color: var(--steeva-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.steeva-footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.86rem;
}

.steeva-footer-bottom p {
  margin: 0;
}

.steeva-bottom-nav {
  display: none;
}

.drawer-open .steeva-bottom-nav {
  display: none !important;
}

.steeva-bottom-nav-item {
  position: relative;
  min-width: 0;
  min-height: 58px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  color: var(--steeva-soft-ink);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 800;
}

.steeva-bottom-nav-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steeva-bottom-nav-item.is-active {
  color: var(--steeva-violet-deep);
}

.steeva-bottom-nav-item.is-active::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--steeva-violet-deep);
}

.steeva-bottom-nav-item em {
  position: absolute;
  top: 5px;
  right: calc(50% - 22px);
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--steeva-copper);
  color: var(--steeva-white);
  font-size: 0.66rem;
  font-style: normal;
  line-height: 1;
}

.steeva-whatsapp-float {
  position: fixed;
  z-index: 9997;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px 0 15px;
  border: 1px solid rgba(255, 253, 248, 0.6);
  border-radius: 999px;
  background: #1f8f57;
  color: var(--steeva-white);
  box-shadow: 0 14px 34px rgba(31, 143, 87, 0.28);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.steeva-whatsapp-float:hover {
  background: #167946;
  color: var(--steeva-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(31, 143, 87, 0.34);
}

.steeva-whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-open .steeva-whatsapp-float,
.mobile-toggled .steeva-whatsapp-float {
  display: none;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title,
.woocommerce-shop .woocommerce-products-header__title {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
}

.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-shop ul.products li.product,
.woocommerce-page ul.products li.product {
  border-radius: var(--steeva-radius);
  background: var(--steeva-white);
}

.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid rgba(216, 206, 194, 0.86);
  box-shadow: none;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  border-radius: var(--steeva-radius);
  background: var(--steeva-paper);
  padding: 24px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout button#place_order,
.wc-block-components-button.wc-block-cart__submit-button,
.wc-block-cart__submit-button.contained,
.checkout-button,
a.checkout-button {
  background: var(--steeva-violet-deep) !important;
  color: var(--steeva-white) !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout button#place_order:hover,
.wc-block-components-button.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button.contained:hover,
.checkout-button:hover,
a.checkout-button:hover {
  background: #473158 !important;
  color: var(--steeva-white) !important;
}

.woocommerce-checkout #payment {
  border-radius: var(--steeva-radius);
  background: var(--steeva-paper);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 46px;
  border-color: var(--steeva-stone);
  border-radius: 4px;
  color: var(--steeva-ink);
}

.woocommerce form .form-row label {
  color: var(--steeva-ink);
  font-weight: 800;
}

.steeva-shop-intro {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--steeva-stone);
  border-radius: var(--steeva-radius);
  background: var(--steeva-paper);
}

.steeva-shop-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.steeva-shop-intro p {
  max-width: 65ch;
  margin: 0;
  color: var(--steeva-soft-ink);
}

ul.products li.product {
  padding: 14px;
  border: 1px solid rgba(216, 206, 194, 0.86);
}

ul.products li.product .woocommerce-loop-product__title {
  color: var(--steeva-ink);
  font-family: var(--steeva-display);
  font-size: 1.35rem;
}

ul.products li.product .price {
  color: var(--steeva-violet-deep);
  font-weight: 900;
}

ul.products li.product .button,
.woocommerce ul.products li.product .button {
  background: var(--steeva-violet-deep) !important;
  color: var(--steeva-white) !important;
}

@media (max-width: 900px) {
  .steeva-hero,
  .steeva-editorial-split,
  .steeva-product-story,
  .steeva-conversion,
  .steeva-process-grid,
  .steeva-final-cta,
  .steeva-pdp-story,
  .steeva-pdp-details {
    grid-template-columns: 1fr;
  }

  .steeva-hero {
    min-height: 0;
    text-align: center;
    background:
      radial-gradient(circle at 68% 32%, rgba(151, 123, 183, 0.3) 0 28%, rgba(151, 123, 183, 0.12) 28% 48%, transparent 49%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(246, 240, 231, 0.92)),
      var(--steeva-porcelain);
  }

  .steeva-hero-showcase {
    display: flex;
    min-height: 430px;
  }

  .steeva-hero-media {
    min-height: 420px;
  }

  .steeva-hero-content {
    max-width: 760px;
    margin: 0 auto;
  }

  .steeva-hero h1,
  .steeva-hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .steeva-hero .steeva-actions,
  .steeva-hero-feature-line {
    justify-content: center;
  }

  .steeva-hero-feature-panel {
    position: static;
    width: min(100%, 720px);
    display: grid;
    margin: 20px auto 0;
  }

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

  .steeva-trust-row,
  .steeva-feature-grid,
  .steeva-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steeva-process-copy {
    max-width: none;
  }

  .steeva-process-visual img {
    aspect-ratio: 4 / 3;
  }

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

  .steeva-final-cta .steeva-actions {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .col-full-nav {
    width: min(88vw, 380px);
    left: -390px;
    padding: 0 20px 96px;
    border-right: 1px solid rgba(216, 206, 194, 0.9);
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 240, 231, 0.96)),
      var(--steeva-porcelain) !important;
    box-shadow: 18px 0 50px rgba(23, 19, 25, 0.16);
  }

  .mobile-toggled .col-full-nav {
    left: 0;
  }

  .mobile-menu.close-drawer {
    color: var(--steeva-ink);
  }

  .mobile-toggled .mobile-menu.close-drawer {
    width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    top: 12px;
    left: min(calc(88vw - 48px), 332px);
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .mobile-menu.close-drawer:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .mobile-menu.close-drawer svg {
    width: 26px;
    height: 26px;
    color: var(--steeva-ink);
  }

  .col-full-nav .shoptimizer-primary-navigation.col-full {
    padding: 0;
  }

  .steeva-mobile-drawer-head {
    display: block;
    padding: 26px 0 16px;
    border-bottom: 1px solid rgba(183, 110, 63, 0.28);
  }

  .steeva-mobile-drawer-logo {
    display: inline-flex;
    margin-bottom: 10px;
  }

  .steeva-mobile-drawer-logo img {
    width: auto;
    height: 34px;
  }

  .steeva-mobile-drawer-head p {
    max-width: 28ch;
    margin: 0;
    color: var(--steeva-soft-ink);
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .col-full-nav .site-search {
    padding: 18px 0 16px;
  }

  .col-full-nav .site-search form {
    margin: 0;
  }

  .col-full-nav .site-search input[type="search"] {
    height: 52px;
    padding-left: 44px;
    border: 1px solid rgba(216, 206, 194, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 24px rgba(23, 19, 25, 0.05);
    color: var(--steeva-ink);
    font-size: 1rem;
  }

  .col-full-nav .site-search form::before {
    left: 16px;
    background-color: rgba(79, 71, 83, 0.55);
  }

  .main-navigation {
    padding-top: 0;
  }

  .shoptimizer-mobile-menu ul.menu {
    margin: 0;
    padding: 0;
  }

  .shoptimizer-mobile-menu ul.menu > li {
    border-bottom: 1px solid rgba(183, 110, 63, 0.28);
  }

  .shoptimizer-mobile-menu ul.menu > li > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0;
    color: var(--steeva-ink);
    font-family: var(--steeva-body);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .shoptimizer-mobile-menu ul.menu > li > a:hover,
  .shoptimizer-mobile-menu ul.menu > li > a:focus {
    color: var(--steeva-violet-deep);
  }

  .steeva-mobile-extra {
    display: grid;
    gap: 18px;
    padding: 22px 0 18px;
  }

  .steeva-mobile-feature {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(151, 123, 183, 0.2);
    border-radius: var(--steeva-radius);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 240, 231, 0.76)),
      var(--steeva-paper);
    color: var(--steeva-ink);
    text-decoration: none;
  }

  .steeva-mobile-feature span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--steeva-radius);
    background: rgba(89, 64, 111, 0.1);
    color: var(--steeva-violet-deep);
  }

  .steeva-mobile-feature svg,
  .steeva-mobile-contact svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .steeva-mobile-feature strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .steeva-mobile-feature small {
    grid-column: 2;
    color: var(--steeva-soft-ink);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .steeva-mobile-care {
    display: grid;
    margin-top: 4px;
  }

  .steeva-mobile-care h2 {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(183, 110, 63, 0.28);
    color: var(--steeva-violet-deep);
    font-family: var(--steeva-body);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .steeva-mobile-care a,
  .steeva-mobile-contact a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(183, 110, 63, 0.24);
    color: var(--steeva-ink);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
  }

  .steeva-mobile-contact {
    display: grid;
  }

  .steeva-mobile-contact a {
    gap: 10px;
    color: var(--steeva-soft-ink);
    font-size: 0.84rem;
  }

  .steeva-mobile-contact svg {
    width: 17px;
    height: 17px;
    color: var(--steeva-copper);
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 72px;
  }

  .steeva-legal {
    width: min(100% - 28px, 520px);
    padding-top: 28px;
  }

  .steeva-legal-hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.4rem, 16vw, 4.4rem);
  }

  .steeva-legal-grid,
  .steeva-contact-cards {
    grid-template-columns: 1fr;
  }

  .steeva-contact-band {
    display: grid;
  }

  .site-header .site-branding img {
    max-height: 32px;
  }

  .steeva-hero {
    gap: 18px;
    padding: 42px 18px 54px;
  }

  .steeva-hero-copy {
    max-width: 340px;
    margin-top: 18px;
    color: rgba(23, 19, 25, 0.62);
    font-size: 1.35rem;
  }

  .steeva-hero-mobile-product {
    position: relative;
    display: block;
    overflow: hidden;
    height: 96px;
    margin: 16px 0 0;
    border: 1px solid rgba(216, 206, 194, 0.84);
    border-radius: var(--steeva-radius);
    background: var(--steeva-white);
    box-shadow: 0 14px 34px rgba(23, 19, 25, 0.08);
  }

  .steeva-hero-mobile-product::after {
    content: "Brew · Strain · Serve";
    position: absolute;
    left: 12px;
    top: 12px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(216, 206, 194, 0.9);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--steeva-ink);
    font-size: 0.76rem;
    font-weight: 900;
  }

  .steeva-hero-mobile-product img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    padding: 8px;
  }

  .steeva-hero h1 {
    max-width: 380px;
    font-size: clamp(4.1rem, 18vw, 5.35rem);
    line-height: 0.94;
  }

  .steeva-hero-rating {
    align-items: flex-start;
    border-radius: var(--steeva-radius);
    font-size: 0.72rem;
  }

  .steeva-hero-showcase {
    display: flex;
    min-height: clamp(560px, 142vw, 720px);
  }

  .steeva-hero-media {
    width: 100%;
    height: clamp(560px, 142vw, 720px);
    min-height: clamp(560px, 142vw, 720px);
  }

  .steeva-hero-media img {
    width: 120%;
    max-width: none;
    height: auto;
    margin-left: -10%;
    padding: 0;
    object-fit: contain;
    object-position: center top;
    filter: none;
    transform: translateY(-185px);
  }

  .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image,
  .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
    min-height: 340px;
  }

  .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    height: 340px !important;
  }

  .steeva-hero-media::after {
    top: 14px;
    left: 14px;
    right: auto;
    bottom: auto;
  }

  .steeva-hero-price-card {
    top: auto;
    right: 14px;
    bottom: 14px;
    min-width: 128px;
    padding: 12px;
  }

  .steeva-hero-price-card strong {
    font-size: 1.3rem;
  }

  .steeva-hero-process-card {
    display: none;
  }

  .steeva-hero-review-grid {
    display: none;
  }

  .steeva-hero .steeva-proof-note {
    display: none;
  }

  .home .steeva-whatsapp-float {
    display: none;
  }

  .home .steeva-bottom-nav {
    display: none;
  }

  .steeva-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }

  .steeva-hero .steeva-secondary {
    display: none;
  }

  .steeva-hero .steeva-primary {
    width: min(100%, 320px);
    align-self: center;
    min-height: 58px;
    font-family: var(--steeva-display);
    font-size: 1.25rem;
    font-weight: 400;
  }

  .steeva-hero-feature-line {
    display: none;
  }

  .steeva-hero-feature-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -18px;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.82);
  }

  .steeva-hero-feature {
    min-height: 96px;
    padding: 12px 6px;
  }

  .steeva-hero-feature svg {
    width: 28px;
    height: 28px;
  }

  .steeva-hero-feature strong {
    font-size: 0.84rem;
    line-height: 1.15;
  }

  .steeva-primary,
  .steeva-secondary,
  .single-product div.product form.cart .button {
    width: 100%;
  }

  .steeva-trust-row,
  .steeva-steps,
  .steeva-specs,
  .steeva-pdp-trust {
    grid-template-columns: 1fr;
  }

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

  .steeva-trust-row span {
    justify-content: flex-start;
    padding: 14px 12px;
    text-align: left;
    font-size: 0.82rem;
  }

  .steeva-feature-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .steeva-feature {
    min-height: 0;
    padding: 20px;
  }

  .steeva-feature::before {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }

  .steeva-section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .steeva-section-lede {
    font-size: 1rem;
  }

  .steeva-product-visual,
  .steeva-image-band {
    max-height: 360px;
  }

  .steeva-process-visual img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .single-product div.product .summary {
    display: flex;
    flex-direction: column;
  }

  .single-product div.product form.cart {
    order: 4;
    display: block;
    width: 100%;
  }

  .single-product div.product form.cart .quantity {
    display: none;
  }

  .single-product div.product form.cart .button {
    margin-left: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .steeva-pdp-badges {
    order: 5;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .steeva-pdp-trust {
    order: 6;
  }

  .steeva-proof-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 14px;
  }

  .single-product button[data-trigger="callBack"] {
    display: none !important;
  }

  .woocommerce-shop ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
    max-width: 344px;
  }

  .steeva-section,
  .steeva-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .steeva-process-card span {
    padding: 16px 16px 16px 50px;
  }

  .steeva-process-card span::before {
    left: 18px;
  }

  .steeva-pdp-story,
  .steeva-pdp-details {
    margin-right: 0;
    margin-left: 0;
  }

  .steeva-footer-inner {
    width: min(100% - 32px, 520px);
    padding-top: 48px;
  }

  .steeva-footer-brand {
    text-align: left;
  }

  .steeva-footer-logo {
    margin-bottom: 14px;
  }

  .steeva-footer-logo img {
    height: 38px;
  }

  .steeva-footer-rule {
    margin-right: 0;
    margin-left: 0;
  }

  .steeva-footer-brand p {
    margin-left: 0;
  }

  .steeva-footer-badges {
    justify-content: flex-start;
  }

  .steeva-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .steeva-footer-bottom {
    width: min(100% - 32px, 520px);
    flex-direction: column;
  }

  .steeva-bottom-nav {
    position: fixed;
    z-index: 9998;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(151, 123, 183, 0.18);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 14px 42px rgba(23, 19, 25, 0.18);
    backdrop-filter: blur(14px);
  }

  .steeva-whatsapp-float {
    right: 14px;
    bottom: 86px;
    min-height: 48px;
    padding: 0 13px;
    border-color: rgba(35, 58, 48, 0.16);
    box-shadow: 0 12px 30px rgba(23, 19, 25, 0.16);
  }

  .steeva-whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* Exact art-directed launch hero based on approved Steeva desktop/mobile comps. */
.home #masthead,
.home .col-full-nav,
.home .steeva-whatsapp-float,
.home .steeva-bottom-nav {
  display: none !important;
}

.home .site-content,
.home .content-area,
.home .site-main,
.home .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.home {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.home::-webkit-scrollbar {
  display: none;
}

html:has(body.home) {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html:has(body.home)::-webkit-scrollbar {
  display: none;
}

.home .steeva-hero {
  position: relative;
  display: block;
  width: 100%;
  height: min(100vh, calc(100vw * 0.5628));
  min-height: 680px;
  max-height: 941px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background:
    url("/wp-content/themes/steeva-shoptimizer/assets/img/gallery/steeva-gallery-01-clean-product-set-1254.webp") center top / cover no-repeat,
    var(--steeva-porcelain);
}

.home .steeva-hero > * {
  display: none !important;
}

.home .steeva-hero .steeva-hero-content {
  position: absolute;
  inset: 0;
  display: block !important;
  max-width: none;
  pointer-events: none;
}

.home .steeva-hero .steeva-hero-content > :not(.steeva-actions) {
  display: none !important;
}

.home .steeva-hero .steeva-actions {
  position: absolute;
  left: 5.7%;
  top: 63.2%;
  z-index: 3;
  display: flex !important;
  gap: 1.42%;
  width: 33.5%;
  min-width: 0;
  margin: 0;
  pointer-events: auto;
}

.home .steeva-hero .steeva-primary,
.home .steeva-hero .steeva-secondary {
  display: block !important;
  min-width: 0;
  min-height: 0;
  height: clamp(46px, 6.8vh, 64px);
  padding: 0;
  border: 0;
  opacity: 0;
  box-shadow: none;
}

.home .steeva-hero .steeva-primary {
  width: 48%;
}

.home .steeva-hero .steeva-secondary {
  width: 49%;
}

@media (max-width: 980px) {
  .home .steeva-hero {
    height: calc(100vw * 1.777);
    min-height: 760px;
    max-height: none;
    background-image: url("/wp-content/themes/steeva-shoptimizer/assets/img/gallery/steeva-gallery-01-clean-product-set-1254.webp");
    background-size: cover;
    background-position: center top;
  }

  .home .steeva-hero .steeva-actions {
    left: 26%;
    top: 29.5%;
    width: 48.2%;
    height: 5.6%;
    display: block !important;
  }

  .home .steeva-hero .steeva-primary {
    width: 100%;
    height: 100%;
  }

  .home .steeva-hero .steeva-secondary {
    display: none !important;
  }
}

/* Premium transparent Shoptimizer header over the hero. */
.home #masthead,
.home .col-full-nav {
  display: block !important;
}

.home #masthead,
.home .col-full-nav {
  position: absolute !important;
  z-index: 20;
  right: 0;
  left: 0;
  border: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.home #masthead {
  top: 0;
  height: 110px;
}

.home .col-full-nav {
  top: 0;
}

.home .main-header.col-full,
.home .shoptimizer-primary-navigation.col-full {
  width: min(100% - 96px, 1510px);
  min-height: 110px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  background: transparent !important;
}

.home .main-header.col-full {
  position: absolute;
  left: max(48px, calc((100vw - 1510px) / 2));
  width: auto;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.home .site-header .site-branding {
  margin: 0;
}

.home .site-header .site-branding img {
  max-height: 52px;
  width: auto;
}

.home .shoptimizer-primary-navigation.col-full {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .main-navigation {
  width: auto;
  margin: 0 auto;
}

.home .main-navigation ul.menu > li > a {
  color: rgba(23, 19, 25, 0.88);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 700;
}

.home .site-header-cart {
  position: absolute;
  right: max(48px, calc((100vw - 1510px) / 2));
  top: 0;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.home .main-header > .site-header-cart {
  display: none;
}

.home .site-header-cart .cart-contents {
  position: relative;
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.home .site-header-cart .cart-contents .amount {
  display: none;
}

.home .site-header-cart .cart-contents .count {
  position: absolute;
  top: 27px;
  right: -5px;
  min-width: 18px;
  min-height: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--steeva-violet-deep);
  color: var(--steeva-white);
  font-size: 0.72rem;
  line-height: 18px;
}

.home .site-header-cart .cart-contents::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid rgba(23, 19, 25, 0.88);
  border-radius: 2px 2px 4px 4px;
  color: rgba(23, 19, 25, 0.88);
  font-size: 0;
  box-shadow: inset 0 6px 0 -4px transparent;
}

.home .site-header-cart .cart-contents::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 12px;
  height: 8px;
  border: 2px solid rgba(23, 19, 25, 0.88);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
}

.home .steeva-hero {
  padding-top: 0;
  background-position: center top;
}

@media (max-width: 980px) {
  .home #masthead {
    height: 92px;
  }

  .home .col-full-nav {
    display: none !important;
  }

  .home .main-header.col-full {
    right: 18px;
    left: 18px;
    width: auto;
    min-height: 92px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
  }

  .home .menu-toggle {
    position: absolute !important;
    top: 24px;
    left: 0;
    grid-column: 1;
    justify-self: start;
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--steeva-violet-deep);
  }

  .home .menu-toggle .bar,
  .home .menu-toggle::before,
  .home .menu-toggle::after {
    color: currentColor;
  }

  .home .site-header .site-branding {
    grid-column: 2;
    width: auto !important;
    justify-self: center;
    overflow: visible;
  }

  .home .site-header .site-branding img {
    max-height: 38px;
    width: 136px;
    max-width: none;
  }

  .home .site-header-cart {
    grid-column: 3;
    position: static;
    min-height: 0;
    justify-self: end;
  }

  .home .main-header > .site-header-cart {
    display: flex;
  }

  .home .site-header-cart .cart-contents {
    width: 42px;
    height: 42px;
  }

  .home .site-header-cart .cart-contents .count {
    top: 8px;
    right: -8px;
  }

  .steeva-hero-nav {
    display: none !important;
  }
}

/* Live, clickable version of the approved hero direction. */
.home .steeva-hero {
  isolation: isolate;
  min-height: 720px;
  height: min(100vh, calc(100vw * 0.563));
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0 37%, rgba(255, 253, 248, 0.6) 46%, rgba(255, 253, 248, 0) 60%),
    url("/wp-content/themes/steeva-shoptimizer/assets/img/gallery/steeva-gallery-01-clean-product-set-1254.webp") center top / cover no-repeat,
    var(--steeva-porcelain);
}

.home .steeva-hero > * {
  display: initial !important;
}

.home .steeva-hero .steeva-hero-nav {
  position: absolute;
  z-index: 5;
  top: clamp(34px, 4.6vw, 48px);
  left: clamp(50px, 5.8vw, 96px);
  right: clamp(48px, 5vw, 84px);
  display: grid !important;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
}

.steeva-hero-logo {
  color: var(--steeva-violet-deep);
  font-family: var(--steeva-display);
  font-size: clamp(2.45rem, 3.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.steeva-hero-links {
  display: flex !important;
  align-items: center;
  gap: clamp(46px, 5vw, 82px);
}

.steeva-hero-links a,
.steeva-hero-icons a {
  color: rgba(23, 19, 25, 0.9);
  text-decoration: none;
}

.steeva-hero-links a {
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
  font-weight: 600;
}

.steeva-hero-icons {
  display: flex !important;
  align-items: center;
  gap: clamp(22px, 2vw, 34px);
}

.steeva-hero-icons svg {
  width: clamp(24px, 1.8vw, 31px);
  height: clamp(24px, 1.8vw, 31px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steeva-hero-menu {
  display: none !important;
}

.home .steeva-hero .steeva-hero-content {
  top: 24.3%;
  right: auto;
  bottom: auto;
  left: clamp(58px, 5.75vw, 98px);
  width: min(42vw, 690px);
  display: block !important;
  z-index: 3;
  pointer-events: auto;
}

.home .steeva-hero .steeva-hero-content > :not(.steeva-actions) {
  display: block !important;
}

.home .steeva-hero .steeva-hero-content .steeva-eyebrow {
  display: none !important;
}

.home .steeva-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--steeva-violet-deep);
  font-family: var(--steeva-display);
  font-size: clamp(5rem, 6.35vw, 6.75rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.home .steeva-hero-copy {
  max-width: 560px;
  margin: clamp(28px, 3vw, 42px) 0 0;
  color: rgba(23, 19, 25, 0.7);
  font-family: var(--steeva-body);
  font-size: clamp(1.45rem, 1.7vw, 1.95rem);
  line-height: 1.36;
}

.home .steeva-hero .steeva-actions {
  position: static;
  display: flex !important;
  width: auto;
  gap: 24px;
  margin-top: clamp(34px, 4vw, 50px);
  pointer-events: auto;
}

.home .steeva-hero .steeva-primary,
.home .steeva-hero .steeva-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: clamp(230px, 16vw, 268px);
  min-height: clamp(56px, 4.3vw, 66px);
  height: auto;
  padding: 0 34px;
  opacity: 1;
  border-radius: 999px;
  font-family: var(--steeva-body);
  font-size: clamp(1rem, 1.16vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
}

.home .steeva-hero .steeva-primary {
  color: var(--steeva-white);
  background: var(--steeva-violet-deep);
  box-shadow: 0 18px 36px rgba(89, 64, 111, 0.22);
}

.home .steeva-hero .steeva-secondary {
  color: var(--steeva-violet-deep);
  border: 1px solid rgba(89, 64, 111, 0.34);
  background: rgba(255, 253, 248, 0.66);
}

.home .steeva-hero-feature-line {
  display: flex !important;
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(34px, 4vw, 52px);
  color: rgba(23, 19, 25, 0.76);
  font-size: clamp(1rem, 1.14vw, 1.22rem);
  font-weight: 600;
}

.home .steeva-hero-feature-line span + span::before {
  content: "•";
  margin-right: clamp(18px, 2vw, 28px);
  color: rgba(23, 19, 25, 0.74);
}

.home .steeva-hero-showcase,
.home .steeva-hero-feature-panel {
  display: none !important;
}

@media (max-width: 980px) {
  .home .steeva-hero {
    min-height: 760px;
    height: calc(100vw * 1.777);
    background: var(--steeva-porcelain);
  }

  .home .steeva-hero .steeva-hero-nav {
    top: 4.8%;
    left: 4.4%;
    right: 4.4%;
    grid-template-columns: 48px 1fr 48px;
    gap: 0;
  }

  .steeva-hero-menu {
    display: inline-flex !important;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: var(--steeva-violet-deep);
  }

  .steeva-hero-menu span {
    width: 34px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .steeva-hero-logo {
    justify-self: center;
    font-size: clamp(2.3rem, 8vw, 3.35rem);
  }

  .steeva-hero-links,
  .steeva-hero-icons a:not(:last-child) {
    display: none !important;
  }

  .steeva-hero-icons {
    justify-self: end;
    gap: 0;
  }

  .steeva-hero-icons svg {
    width: 34px;
    height: 34px;
    stroke: var(--steeva-violet-deep);
  }

  .home .steeva-hero .steeva-hero-content {
    top: 11%;
    left: 4.4%;
    width: 91.2%;
    text-align: center;
  }

  .home .steeva-hero h1 {
    max-width: none;
    font-size: clamp(3.35rem, 12vw, 7.25rem);
    line-height: 0.96;
  }

  .home .steeva-hero-copy {
    max-width: none;
    margin-top: clamp(10px, 2.2vw, 24px);
    font-family: var(--steeva-display);
    font-size: clamp(1.2rem, 3.7vw, 2.38rem);
    line-height: 1.2;
  }

  .home .steeva-hero .steeva-actions {
    justify-content: center;
    align-items: center;
    width: auto;
    margin-top: clamp(18px, 4vw, 42px);
  }

  .home .steeva-hero .steeva-primary {
    width: auto;
    min-width: min(48vw, 454px);
    min-height: clamp(58px, 9.8vw, 94px);
    padding: 0 clamp(28px, 5vw, 56px);
    font-family: var(--steeva-display);
    font-size: clamp(1.42rem, 4.1vw, 2.45rem);
    font-weight: 400;
  }

  .home .steeva-hero .steeva-secondary,
  .home .steeva-hero .steeva-hero-content .steeva-hero-feature-line {
    display: none !important;
  }

  .home .steeva-hero-showcase {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 13.7%;
    z-index: 1;
    height: 49%;
    display: block !important;
    min-height: 0;
    pointer-events: none;
  }

  .home .steeva-hero-media {
    width: 100%;
    height: 100%;
    display: block !important;
  }

  .home .steeva-hero-media img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center bottom;
    background: transparent;
    filter: none;
    transform: none;
  }

  .home .steeva-hero-feature-panel {
    position: absolute;
    z-index: 4;
    right: 4.4%;
    bottom: 4.2%;
    left: 4.4%;
    width: auto;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 0;
    border-radius: clamp(24px, 5vw, 38px);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: 0 18px 54px rgba(89, 64, 111, 0.08);
    backdrop-filter: blur(10px);
  }

  .home .steeva-hero-feature {
    min-height: clamp(96px, 16vw, 150px);
    gap: clamp(8px, 1.8vw, 14px);
    padding: clamp(12px, 2.5vw, 22px) 8px;
  }

  .home .steeva-hero-feature svg {
    width: clamp(34px, 6vw, 54px);
    height: clamp(34px, 6vw, 54px);
    stroke: var(--steeva-violet-deep);
  }

  .home .steeva-hero-feature strong {
    color: rgba(23, 19, 25, 0.82);
    font-family: var(--steeva-display);
    font-size: clamp(1rem, 3vw, 1.9rem);
    font-weight: 400;
  }
}

/* Standard premium header recovery: keep Shoptimizer native behavior intact. */
.home #masthead {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  height: auto;
  border-bottom: 1px solid rgba(216, 206, 194, 0.62);
  background: rgba(255, 253, 248, 0.96) !important;
  box-shadow: 0 10px 34px rgba(23, 19, 25, 0.04) !important;
  backdrop-filter: blur(14px);
}

.home .col-full-nav {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001 !important;
  height: 74px;
  border: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.home .main-header.col-full,
.home .shoptimizer-primary-navigation.col-full {
  position: relative !important;
  z-index: 1002;
  left: auto;
  right: auto;
  width: min(100% - 48px, 1240px);
  min-height: 74px;
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.home .main-header.col-full {
  justify-content: flex-start;
}

.home .shoptimizer-primary-navigation.col-full {
  min-height: 74px;
  justify-content: center;
}

.home .site-header .site-branding {
  width: auto !important;
  margin: 0;
  overflow: visible;
}

.home .site-header .site-branding img {
  width: auto;
  max-width: none;
  max-height: 42px;
}

.home .site-header-cart {
  position: absolute;
  top: 50%;
  right: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}

.home .main-header > .site-header-cart {
  display: flex;
}

.home .col-full-nav .site-header-cart {
  display: none;
}

.home .site-header-cart .cart-contents {
  position: relative;
  min-width: 42px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(89, 64, 111, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 8px 24px rgba(23, 19, 25, 0.06);
}

.home .site-header-cart .cart-contents .amount {
  display: none;
}

.home .site-header-cart .cart-contents .count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  min-height: 20px;
  border: 2px solid var(--steeva-porcelain);
  border-radius: 999px;
  background: var(--steeva-violet-deep);
  color: var(--steeva-white);
  font-size: 0.72rem;
  line-height: 16px;
  text-align: center;
}

.home .site-header-cart .cart-contents::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  border: 2px solid rgba(23, 19, 25, 0.8);
  border-radius: 2px 2px 5px 5px;
}

.home .site-header-cart .cart-contents::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 11px;
  height: 7px;
  border: 2px solid rgba(23, 19, 25, 0.8);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
}

.home .steeva-hero {
  padding-top: 0;
}

@media (max-width: 992px) {
  .home #masthead {
    position: sticky !important;
    height: auto;
    background: rgba(255, 253, 248, 0.98) !important;
    backdrop-filter: blur(12px);
  }

  .home .main-header.col-full {
    width: min(100% - 32px, 520px);
    min-height: 72px;
    display: flex !important;
    justify-content: center;
  }

  .home .site-header .site-branding {
    position: static;
    display: flex;
    justify-content: center;
  }

  .home .site-branding button.menu-toggle {
    position: absolute !important;
    top: 50%;
    left: 0;
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(89, 64, 111, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--steeva-violet-deep);
    transform: translateY(-50%);
  }

  .home .site-header .site-branding img {
    width: auto !important;
    max-height: 34px;
  }

  .home .site-header-cart {
    right: 0;
  }

  .home .site-header-cart .cart-contents {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
  }

  .home .col-full-nav {
    position: fixed !important;
    z-index: 1002;
    top: 0;
    bottom: 0;
    left: -390px;
    width: min(88vw, 380px);
    height: 100%;
    min-height: 100vh;
    display: block !important;
    overflow-y: auto;
    padding: 0 20px 96px;
    border-right: 1px solid rgba(216, 206, 194, 0.9);
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 1), rgba(246, 240, 231, 0.99)),
      var(--steeva-porcelain) !important;
    box-shadow: 18px 0 50px rgba(23, 19, 25, 0.18) !important;
    transition: left 0.25s ease;
  }

  .home.mobile-toggled .col-full-nav,
  .mobile-toggled.home .col-full-nav {
    left: 0 !important;
  }

  .home .col-full-nav .shoptimizer-primary-navigation.col-full {
    width: 100%;
    min-height: 0;
    display: block;
  }

  .home .mobile-menu.close-drawer {
    z-index: 1003;
    color: var(--steeva-ink);
  }
}

/* Gallery refresh: use the optimized snapshot set, not raw reference renders. */
.home .steeva-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 4.4vw, 76px);
  width: min(100% - 48px, 1240px);
  min-height: min(760px, calc(100vh - 74px));
  height: auto;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0 clamp(54px, 7vw, 92px);
  overflow: visible;
  background:
    radial-gradient(circle at 84% 12%, rgba(151, 123, 183, 0.18), transparent 31%),
    linear-gradient(135deg, rgba(255, 253, 248, 1), rgba(246, 240, 231, 0.62));
}

.home .steeva-hero > * {
  display: initial !important;
}

.home .steeva-hero .steeva-hero-content {
  position: relative !important;
  inset: auto !important;
  z-index: 2;
  width: auto !important;
  max-width: 590px;
  display: block !important;
  text-align: left;
  pointer-events: auto;
}

.home .steeva-hero .steeva-hero-content > :not(.steeva-actions) {
  display: block !important;
}

.home .steeva-hero .steeva-hero-content .steeva-eyebrow {
  display: block !important;
  margin-bottom: 18px;
}

.home .steeva-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--steeva-violet-deep);
  font-size: clamp(4.7rem, 7vw, 7.4rem);
  line-height: 0.9;
}

.home .steeva-hero-copy {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(23, 19, 25, 0.72);
  font-family: var(--steeva-body);
  font-size: clamp(1.24rem, 1.6vw, 1.72rem);
  line-height: 1.38;
}

.home .steeva-hero .steeva-actions {
  position: static !important;
  width: auto !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.home .steeva-hero .steeva-primary,
.home .steeva-hero .steeva-secondary {
  min-width: 0;
  min-height: 56px;
  height: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  opacity: 1;
  border-radius: 999px;
  font-family: var(--steeva-body);
  font-size: 1.03rem;
  font-weight: 800;
  text-decoration: none;
}

.home .steeva-hero .steeva-primary {
  color: var(--steeva-white);
  background: var(--steeva-violet-deep);
  box-shadow: 0 18px 36px rgba(89, 64, 111, 0.22);
}

.home .steeva-hero .steeva-secondary {
  color: var(--steeva-violet-deep);
  border: 1px solid rgba(89, 64, 111, 0.26);
  background: rgba(255, 253, 248, 0.78);
}

.home .steeva-hero-feature-line {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home .steeva-hero-feature-line span {
  padding: 9px 14px;
  border: 1px solid rgba(89, 64, 111, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--steeva-soft-ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.home .steeva-hero-feature-line span + span::before {
  content: none;
}

.home .steeva-hero-showcase {
  position: relative !important;
  inset: auto !important;
  z-index: 1;
  min-height: 0;
  height: auto;
  display: block !important;
  pointer-events: none;
}

.home .steeva-hero-media {
  position: relative;
  width: min(100%, 620px);
  margin: 0 0 0 auto;
  display: block !important;
  border-radius: 8px;
}

.home .steeva-hero-media::before {
  content: "";
  position: absolute;
  inset: 12% -6% -4% 12%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(151, 123, 183, 0.12);
  filter: blur(3px);
}

.home .steeva-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.6);
  box-shadow: 0 22px 70px rgba(23, 19, 25, 0.1);
}

.home .steeva-hero-feature-panel {
  grid-column: 1 / -1;
  position: relative !important;
  inset: auto !important;
  width: min(100%, 920px);
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -20px auto 0;
  border: 1px solid rgba(216, 206, 194, 0.6);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 54px rgba(23, 19, 25, 0.06);
}

.home .steeva-hero-feature {
  min-height: 116px;
  display: grid !important;
  place-items: center;
  gap: 10px;
  padding: 20px 16px;
  text-align: center;
}

.home .steeva-hero-feature + .steeva-hero-feature {
  border-left: 1px solid rgba(216, 206, 194, 0.82);
}

.home .steeva-hero-feature svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--steeva-violet-deep);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home .steeva-hero-feature strong {
  color: rgba(23, 19, 25, 0.82);
  font-family: var(--steeva-display);
  font-size: 1.22rem;
  font-weight: 400;
}

.steeva-product-visual img,
.steeva-image-band img,
.steeva-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(23, 19, 25, 0.08);
}

.steeva-editorial-split .steeva-product-visual {
  align-self: center;
  max-height: min(560px, 48vw);
}

.steeva-editorial-split .steeva-product-visual img,
.steeva-conversion .steeva-product-visual img,
.steeva-image-band img {
  padding: 0;
}

@media (max-width: 980px) {
  .steeva-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .steeva-editorial-split,
  .steeva-conversion,
  .steeva-product-story {
    gap: 24px;
  }

  .steeva-editorial-split .steeva-product-visual {
    max-height: 340px;
  }
}

.single-product div.product .woocommerce-product-gallery img {
  border-radius: 8px;
  background: var(--steeva-porcelain);
}

.single-product div.product .flex-control-thumbs li img {
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 980px) {
  .home .steeva-hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
    min-height: 0;
    height: auto;
    gap: 28px;
    padding: 42px 0 34px;
  }

  .home .steeva-hero .steeva-hero-content {
    max-width: none;
    text-align: center;
  }

  .home .steeva-hero .steeva-hero-content .steeva-eyebrow {
    margin-bottom: 12px;
  }

  .home .steeva-hero h1 {
    font-size: clamp(3.65rem, 15vw, 5.8rem);
    line-height: 0.96;
  }

  .home .steeva-hero-copy {
    max-width: 330px;
    margin: 14px auto 0;
    font-family: var(--steeva-display);
    font-size: clamp(1.18rem, 6vw, 1.62rem);
    line-height: 1.22;
  }

  .home .steeva-hero .steeva-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .home .steeva-hero .steeva-primary {
    min-height: 58px;
    padding: 0 34px;
    font-family: var(--steeva-display);
    font-size: 1.38rem;
    font-weight: 400;
  }

  .home .steeva-hero .steeva-secondary,
  .home .steeva-hero .steeva-hero-feature-line {
    display: none !important;
  }

  .home .steeva-hero-media {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .home .steeva-hero-media img {
    box-shadow: none;
  }

  .home .steeva-hero-feature-panel {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -8px;
  }

  .home .steeva-hero-feature {
    min-height: 104px;
    padding: 16px 8px;
  }

  .home .steeva-hero-feature svg {
    width: 32px;
    height: 32px;
  }

  .home .steeva-hero-feature strong {
    font-size: clamp(1rem, 4vw, 1.18rem);
  }
}

/* Desktop hero reset: native Shoptimizer header/menu + live text over the raw product image. */
@media (min-width: 981px) {
  html:has(body.home),
  body.home {
    -ms-overflow-style: auto;
    scrollbar-width: auto;
  }

  html:has(body.home)::-webkit-scrollbar,
  body.home::-webkit-scrollbar {
    display: initial;
  }

  .home #masthead {
    position: sticky !important;
    top: 0 !important;
    z-index: 1200 !important;
    display: block !important;
    height: auto !important;
    min-height: 76px;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    border-bottom: 1px solid rgba(216, 206, 194, 0.58);
    background: rgba(255, 253, 248, 0.93) !important;
    box-shadow: 0 10px 30px rgba(23, 19, 25, 0.035) !important;
    backdrop-filter: blur(16px);
  }

  .home .main-header.col-full {
    width: min(100% - 88px, 1510px);
    min-height: 76px;
    justify-content: space-between;
  }

  .home .site-header .site-branding img {
    max-height: 46px;
  }

  .home .col-full-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    z-index: 1201 !important;
    display: block !important;
    height: 76px;
    pointer-events: none;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home .shoptimizer-primary-navigation.col-full {
    width: min(100% - 88px, 1510px);
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .home .main-navigation {
    pointer-events: auto;
  }

  .home .site-search,
  .home .steeva-mobile-drawer-head,
  .home .steeva-mobile-extra {
    display: none !important;
  }

  .home .main-navigation ul.menu {
    display: flex;
    align-items: center;
    gap: clamp(32px, 4.2vw, 72px);
  }

  .home .main-navigation ul.menu > li > a {
    padding: 0;
    color: rgba(23, 19, 25, 0.88);
    font-size: clamp(1rem, 1.08vw, 1.18rem);
    font-weight: 600;
    line-height: 76px;
  }

  .home .main-header > .site-header-cart {
    display: flex !important;
  }

  .home .site-header-cart {
    position: static;
    min-height: 0;
    transform: none;
  }

  .home .site-header-cart .cart-contents {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.78);
  }

  .home .steeva-hero {
    position: relative;
    display: block !important;
    width: min(100%, 1720px);
    height: clamp(650px, calc(100vh - 76px), 820px);
    min-height: 650px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 1) 0%, rgba(255, 253, 248, 0.98) 29%, rgba(255, 253, 248, 0.68) 43%, rgba(255, 253, 248, 0) 57%),
      var(--steeva-porcelain);
  }

  .home .steeva-hero::after {
    content: "";
    position: absolute;
    inset: auto 3.8% 0 23%;
    z-index: 0;
    height: 31%;
    border-radius: 999px 999px 0 0;
    background: rgba(246, 240, 231, 0.78);
    filter: blur(1px);
  }

  .home .steeva-hero .steeva-hero-showcase {
    position: absolute !important;
    inset: 0 0 0 auto !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 1;
    display: block !important;
    width: min(68%, 1120px);
    height: 100% !important;
    min-height: 100% !important;
    pointer-events: none;
  }

  .home .steeva-hero-media {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0;
    border-radius: 0;
    background-image: url("/wp-content/themes/steeva-shoptimizer/assets/img/products/steeva-hero-raw-desktop.webp");
    background-position: 46% top;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .home .steeva-hero-media::before {
    content: none;
  }

  .home .steeva-hero-media img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    box-shadow: none !important;
  }

  .home .steeva-hero .steeva-hero-content {
    position: absolute !important;
    top: clamp(116px, 14.4vh, 146px) !important;
    left: clamp(56px, 5.7vw, 96px) !important;
    right: auto !important;
    z-index: 3;
    display: block !important;
    width: min(39vw, 660px) !important;
    max-width: 660px;
    text-align: left;
  }

  .home .steeva-hero .steeva-hero-content .steeva-eyebrow {
    display: none !important;
  }

  .home .steeva-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--steeva-violet-deep);
    font-family: var(--steeva-display);
    font-size: clamp(5rem, 6.35vw, 7.25rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
  }

  .home .steeva-hero-copy {
    max-width: 540px;
    margin: clamp(22px, 3.1vh, 34px) 0 0;
    color: rgba(23, 19, 25, 0.7);
    font-family: var(--steeva-body);
    font-size: clamp(1.28rem, 1.55vw, 1.72rem);
    line-height: 1.42;
  }

  .home .steeva-hero .steeva-actions {
    position: static !important;
    display: flex !important;
    flex-wrap: nowrap;
    gap: clamp(18px, 1.8vw, 28px);
    width: auto !important;
    margin-top: clamp(30px, 4.2vh, 46px);
  }

  .home .steeva-hero .steeva-primary,
  .home .steeva-hero .steeva-secondary {
    min-width: clamp(190px, 16vw, 272px);
    min-height: clamp(56px, 6.8vh, 70px);
    padding: 0 clamp(26px, 2.6vw, 38px);
    border-radius: 999px;
    font-family: var(--steeva-body);
    font-size: clamp(1rem, 1.12vw, 1.18rem);
    font-weight: 800;
  }

  .home .steeva-hero-feature-line {
    display: none !important;
  }

  .home .steeva-hero-feature-line span {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: clamp(1rem, 1.08vw, 1.18rem);
    font-weight: 600;
  }

  .home .steeva-hero-feature-line span + span::before {
    content: "-";
    margin-right: clamp(16px, 1.7vw, 26px);
    color: rgba(23, 19, 25, 0.72);
  }

  .home .steeva-hero-feature-panel {
    position: absolute !important;
    top: auto !important;
    right: clamp(48px, 8.2vw, 150px) !important;
    bottom: clamp(24px, 4vh, 42px) !important;
    left: clamp(48px, 17.2vw, 320px) !important;
    z-index: 4;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(216, 206, 194, 0.76);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.76);
    box-shadow: 0 22px 70px rgba(23, 19, 25, 0.08);
    backdrop-filter: blur(8px);
  }

  .home .steeva-hero-feature {
    min-height: clamp(104px, 13.4vh, 142px);
    padding: 18px 14px;
  }

  .home .steeva-hero-feature strong {
    font-size: clamp(1.14rem, 1.35vw, 1.55rem);
  }
}

@media (min-width: 981px) {
  body.home .steeva-home .steeva-hero .steeva-hero-feature-line {
    display: none !important;
    visibility: hidden !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature-panel {
    position: absolute !important;
    top: clamp(500px, 63vh, 590px) !important;
    right: auto !important;
    bottom: auto !important;
    left: clamp(56px, 5.7vw, 96px) !important;
    z-index: 5;
    width: min(28vw, 350px) !important;
    max-width: 350px;
    display: grid !important;
    grid-template-columns: 1fr;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(216, 206, 194, 0.68);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 18px 44px rgba(23, 19, 25, 0.055);
    backdrop-filter: blur(10px);
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature {
    min-height: 54px;
    display: grid !important;
    grid-template-columns: 30px 1fr;
    align-items: center;
    justify-items: start;
    gap: 12px;
    padding: 11px 16px;
    text-align: left;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature + .steeva-hero-feature {
    border-top: 1px solid rgba(216, 206, 194, 0.72);
    border-left: 0;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature svg {
    width: 24px;
    height: 24px;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature strong {
    color: rgba(23, 19, 25, 0.78);
    font-family: var(--steeva-body);
    font-size: clamp(0.94rem, 1vw, 1.05rem);
    font-weight: 800;
    line-height: 1.15;
  }
}

/* Mobile hero mockup build: native Shoptimizer header + live text over optimized raw product image. */
@media (max-width: 980px) {
  body.home .site-content,
  body.home .content-area,
  body.home .site-main,
  body.home .entry-content,
  body.home .steeva-home {
    overflow-x: hidden;
    background: var(--steeva-porcelain);
  }

  body.home .steeva-home .steeva-hero {
    width: 100%;
    max-width: none;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
    margin: 0;
    padding: clamp(28px, 7vw, 42px) 0 clamp(30px, 7vw, 42px);
    overflow: hidden;
    background:
      radial-gradient(circle at 52% 58%, rgba(183, 110, 63, 0.13), transparent 31%),
      linear-gradient(180deg, #fffdfb 0%, #fffdf8 54%, #fbf5ec 100%);
  }

  body.home .steeva-home .steeva-hero .steeva-hero-content {
    position: relative !important;
    inset: auto !important;
    z-index: 3;
    width: min(100% - 32px, 520px) !important;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-content .steeva-eyebrow {
    display: none !important;
  }

  body.home .steeva-home .steeva-hero h1 {
    max-width: 420px;
    margin: 0 auto;
    color: var(--steeva-violet-deep);
    font-family: var(--steeva-display);
    font-size: clamp(4.05rem, 15.8vw, 6.05rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: 0;
  }

  body.home .steeva-home .steeva-hero-copy {
    max-width: 380px;
    margin: clamp(14px, 3.4vw, 20px) auto 0;
    color: rgba(23, 19, 25, 0.58);
    font-family: var(--steeva-display);
    font-size: clamp(1.45rem, 5.4vw, 2.05rem);
    line-height: 1.14;
  }

  body.home .steeva-home .steeva-hero .steeva-actions {
    justify-content: center;
    margin-top: clamp(24px, 5.5vw, 34px);
  }

  body.home .steeva-home .steeva-hero .steeva-primary {
    min-width: min(74vw, 360px);
    min-height: clamp(60px, 13vw, 74px);
    padding: 0 34px;
    border-radius: 999px;
    background: var(--steeva-violet-deep);
    color: var(--steeva-white);
    font-family: var(--steeva-display);
    font-size: clamp(1.42rem, 5.4vw, 2rem);
    font-weight: 400;
    box-shadow: 0 18px 40px rgba(89, 64, 111, 0.2);
  }

  body.home .steeva-home .steeva-hero .steeva-secondary,
  body.home .steeva-home .steeva-hero .steeva-hero-feature-line {
    display: none !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-showcase {
    position: relative !important;
    inset: auto !important;
    z-index: 1;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    margin-top: clamp(18px, 4.4vw, 28px);
    pointer-events: none;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-media {
    position: relative !important;
    inset: auto !important;
    width: min(100vw, 520px) !important;
    height: clamp(560px, 138vw, 760px) !important;
    min-height: 0 !important;
    display: block !important;
    margin: 0 auto;
    border-radius: 0;
    background: transparent !important;
    overflow: hidden;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-media::before {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 5%;
    left: 8%;
    z-index: -1;
    height: 22%;
    border-radius: 50%;
    background: rgba(183, 110, 63, 0.1);
    filter: blur(18px);
  }

  body.home .steeva-home .steeva-hero .steeva-hero-media img,
  body.home .steeva-home .steeva-hero .steeva-hero-media .steeva-mobile-hero-product {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    display: block;
    margin: 0 !important;
    opacity: 1 !important;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 0;
    background: transparent;
    box-shadow: none !important;
    transform: none;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature-panel {
    position: relative !important;
    inset: auto !important;
    z-index: 4;
    width: min(100% - 34px, 520px) !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(-12px, -2vw, -6px) auto 0 !important;
    border: 0;
    border-radius: 26px;
    background: rgba(255, 250, 242, 0.86);
    box-shadow: 0 18px 50px rgba(89, 64, 111, 0.09);
    backdrop-filter: blur(10px);
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature {
    min-height: clamp(106px, 25vw, 132px);
    gap: 9px;
    padding: 18px 8px 16px;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature + .steeva-hero-feature {
    border-left: 1px solid rgba(216, 206, 194, 0.9);
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature svg {
    width: clamp(34px, 8vw, 46px);
    height: clamp(34px, 8vw, 46px);
    stroke: var(--steeva-violet-deep);
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature strong {
    color: rgba(23, 19, 25, 0.78);
    font-family: var(--steeva-display);
    font-size: clamp(1.05rem, 4.2vw, 1.42rem);
    font-weight: 400;
    line-height: 1.08;
  }
}

/* Desktop final composition: keep the raw product visual intact across the full hero canvas. */
@media (min-width: 981px) {
  body.home .site-header .secondary-navigation {
    display: none !important;
  }

  body.home .steeva-home .steeva-hero {
    width: 100%;
    max-width: none;
    height: min(calc(100vh - 76px), calc(100vw * 0.563));
    min-height: 760px;
    max-height: 920px;
    margin: 0;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.88) 0%, rgba(255, 253, 248, 0.5) 34%, rgba(255, 253, 248, 0) 52%),
        url("/wp-content/themes/steeva-shoptimizer/assets/img/products/steeva-hero-raw-desktop.webp") right top / cover no-repeat,
      var(--steeva-porcelain);
  }

  body.home .steeva-home .steeva-hero::after,
  body.home .steeva-home .steeva-hero .steeva-hero-showcase {
    display: none !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-content {
    top: clamp(132px, 16.2vh, 170px) !important;
    left: clamp(72px, 5.7vw, 110px) !important;
    width: min(42vw, 670px) !important;
    max-width: 670px;
  }

  body.home .steeva-home .steeva-hero h1 {
    max-width: 660px;
    font-size: clamp(5rem, 6.2vw, 7.15rem);
    line-height: 0.9;
  }

  body.home .steeva-home .steeva-hero-copy {
    max-width: 540px;
    margin-top: clamp(24px, 3vh, 34px);
  }

  body.home .steeva-home .steeva-hero .steeva-actions {
    margin-top: clamp(30px, 4vh, 44px);
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature-panel {
    top: clamp(560px, 64vh, 610px) !important;
    left: clamp(72px, 5.7vw, 110px) !important;
    width: min(31vw, 350px) !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature {
    min-height: 52px !important;
    padding: 10px 16px !important;
    gap: 12px !important;
    align-items: center !important;
    text-align: left !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature + .steeva-hero-feature {
    border-top: 1px solid rgba(216, 206, 194, 0.72) !important;
    border-left: 0 !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-feature strong {
    white-space: nowrap;
    font-family: var(--steeva-body);
    font-size: 1rem;
    font-weight: 800;
  }
}

.steeva-hero-feature svg {
  display: none !important;
}

.steeva-hero-feature::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-block;
  background: var(--steeva-violet-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9h12v8a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4Z M8 6h8 M9 13h6 M9 3.5c-1 1-1 2 0 3 M15 3.5c-1 1-1 2 0 3'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9h12v8a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4Z M8 6h8 M9 13h6 M9 3.5c-1 1-1 2 0 3 M15 3.5c-1 1-1 2 0 3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.steeva-hero-feature:nth-child(2)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M8 9h8M7.5 12h9M8 15h8'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M8 9h8M7.5 12h9M8 15h8'/%3E%3C/g%3E%3C/svg%3E");
}

.steeva-hero-feature:nth-child(3)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 18.5 6v5.2c0 4.3-2.6 7.2-6.5 9.3-3.9-2.1-6.5-5-6.5-9.3V6L12 3.5Z'/%3E%3Cpath d='m9.3 12.1 1.8 1.8 3.8-4.1'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 18.5 6v5.2c0 4.3-2.6 7.2-6.5 9.3-3.9-2.1-6.5-5-6.5-9.3V6L12 3.5Z'/%3E%3Cpath d='m9.3 12.1 1.8 1.8 3.8-4.1'/%3E%3C/g%3E%3C/svg%3E");
}

/* Premium cart drawer: sit above sticky header and avoid hero/header overlap. */
.drawer-open::before {
  position: fixed !important;
  z-index: 7990 !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  background: rgba(23, 19, 25, 0.54) !important;
  backdrop-filter: blur(3px);
}

.shoptimizer-mini-cart-wrap {
  z-index: 8000 !important;
  top: 0 !important;
  right: min(-100%, -440px);
  width: min(440px, 100vw) !important;
  height: 100dvh !important;
  border-left: 1px solid rgba(216, 206, 194, 0.72);
  background:
    linear-gradient(180deg, var(--steeva-porcelain) 0%, #ffffff 44%, #fbf7f0 100%) !important;
  box-shadow: -28px 0 80px rgba(23, 19, 25, 0.2);
  transition: right 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease !important;
}

.drawer-open .shoptimizer-mini-cart-wrap {
  right: 0 !important;
}

.cart-drawer-heading {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 74px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 68px 0 24px;
  border-bottom: 1px solid rgba(216, 206, 194, 0.7);
  background: rgba(255, 253, 248, 0.96);
  color: var(--steeva-violet-deep);
  font-family: var(--steeva-display);
  font-size: 1.7rem !important;
  font-weight: 400 !important;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.shoptimizer-mini-cart-wrap .close-drawer {
  top: 18px !important;
  right: 22px !important;
  z-index: 4;
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(89, 64, 111, 0.16) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: var(--steeva-violet-deep) !important;
  box-shadow: none !important;
  transform: none !important;
}

.shoptimizer-mini-cart-wrap .close-drawer:hover {
  background: var(--steeva-violet-deep) !important;
  color: var(--steeva-white) !important;
}

.shoptimizer-mini-cart-wrap .widget_shopping_cart {
  height: calc(100dvh - 74px) !important;
  margin-top: 0 !important;
  padding: 0 24px 18px !important;
  background: transparent !important;
}

.shoptimizer-mini-cart-wrap .widget_shopping_cart .product_list_widget {
  padding: 10px 0 0 !important;
  scrollbar-color: rgba(89, 64, 111, 0.28) transparent;
}

.shoptimizer-mini-cart-wrap .woocommerce-mini-cart.cart_list::before {
  content: none !important;
}

.shoptimizer-mini-cart-wrap .widget_shopping_cart li.mini_cart_item {
  min-height: 92px;
  margin: 0;
  padding: 16px 82px 16px 34px !important;
  border-bottom: 1px solid rgba(216, 206, 194, 0.58);
  color: var(--steeva-soft-ink);
  font-size: 0.95rem;
}

.shoptimizer-mini-cart-wrap .widget_shopping_cart li.mini_cart_item a:not(.remove) {
  color: var(--steeva-ink);
  font-weight: 800;
}

.shoptimizer-mini-cart-wrap .product_list_widget img {
  position: absolute;
  top: 16px;
  right: 0;
  width: 68px !important;
  max-width: 68px !important;
  height: 68px !important;
  margin: 0 !important;
  float: none !important;
  border-radius: 8px;
  object-fit: cover;
  background: var(--steeva-paper);
}

.widget_shopping_cart .product_list_widget li a.remove {
  top: 20px !important;
  left: 0 !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px;
  background: rgba(89, 64, 111, 0.08);
}

.widget_shopping_cart .product_list_widget li a.remove::before {
  width: 22px;
  height: 22px;
  background-color: var(--steeva-violet-deep);
}

.widget_shopping_cart p.total {
  padding-top: 22px !important;
  border-top: 1px solid rgba(216, 206, 194, 0.85) !important;
  color: var(--steeva-ink);
  font-size: 1.02rem !important;
}

.shoptimizer-mini-cart-wrap .woocommerce-mini-cart__buttons a {
  height: 58px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.widget_shopping_cart a.button:not(.checkout) {
  border: 1px solid rgba(89, 64, 111, 0.22) !important;
  background: var(--steeva-violet-deep) !important;
  color: var(--steeva-white) !important;
}

.widget_shopping_cart a.button.checkout {
  border: 1px solid #2caf50 !important;
  background: #2fb653 !important;
  color: var(--steeva-white) !important;
}

.site-header-cart .cart-contents,
.shoptimizer-cart .cart-contents {
  position: relative;
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: inline-grid !important;
  place-items: center;
  padding: 0 !important;
  border: 1px solid rgba(89, 64, 111, 0.18);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--steeva-violet-deep) !important;
  box-shadow: 0 12px 36px rgba(23, 19, 25, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.site-header-cart .cart-contents:hover,
.shoptimizer-cart .cart-contents:hover {
  border-color: rgba(89, 64, 111, 0.34);
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(23, 19, 25, 0.1);
}

.site-header-cart .cart-contents .amount,
.shoptimizer-cart .cart-contents .amount {
  display: none !important;
}

.site-header-cart .cart-contents::before,
.shoptimizer-cart .cart-contents::before {
  content: "";
  width: 19px;
  height: 18px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 3px 3px 6px 6px;
}

.site-header-cart .cart-contents::after,
.shoptimizer-cart .cart-contents::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 12px;
  height: 8px;
  margin: 0;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.site-header-cart .cart-contents .count,
.shoptimizer-cart a.cart-contents .count,
.shoptimizer-cart a.cart-contents .shoptimizer-cart-icon .mini-count {
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  left: auto !important;
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid var(--steeva-porcelain) !important;
  border-radius: 999px !important;
  background: var(--steeva-violet-deep) !important;
  color: var(--steeva-white) !important;
  font-size: 0.72rem !important;
  font-weight: 900;
  line-height: 20px !important;
  text-align: center;
  box-shadow: 0 8px 18px rgba(89, 64, 111, 0.26);
}

.shoptimizer-cart a.cart-contents .count::after {
  content: none !important;
}

.shoptimizer-cart-icon {
  display: none !important;
}

body.home .site-header-cart .cart-contents,
body.home .shoptimizer-cart .cart-contents,
body:not(.home) .site-header-cart .cart-contents,
body:not(.home) .shoptimizer-cart .cart-contents {
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  border-radius: 16px !important;
  background: rgba(255, 253, 248, 0.9) !important;
}

body.home .site-header-cart .cart-contents .count,
body.home .shoptimizer-cart a.cart-contents .count {
  top: -8px !important;
  right: -8px !important;
  line-height: 20px !important;
}

@media (max-width: 480px) {
  .shoptimizer-mini-cart-wrap {
    width: 100vw !important;
    right: -100vw;
  }
}

@media (max-width: 980px) {
  body.home .site-header,
  body.home .main-header,
  body.home .main-header.col-full {
    overflow: visible !important;
  }

  body.home .main-header > .site-header-cart {
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    left: auto !important;
    z-index: 30 !important;
    display: flex !important;
    align-items: center;
    transform: translateY(-50%) !important;
  }

  body.home .site-header-cart .cart-contents,
  body.home .shoptimizer-cart .cart-contents {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
  }

  body.home .site-header-cart .cart-contents::before,
  body.home .shoptimizer-cart .cart-contents::before {
    width: 17px;
    height: 16px;
  }

  body.home .site-header-cart .cart-contents::after,
  body.home .shoptimizer-cart .cart-contents::after {
    top: 12px;
    width: 11px;
    height: 7px;
  }

  body.home .site-header-cart .cart-contents .count,
  body.home .shoptimizer-cart a.cart-contents .count {
    top: -7px !important;
    right: -7px !important;
    width: 21px !important;
    min-width: 21px !important;
    height: 21px !important;
    border-width: 2px !important;
    font-size: 0.66rem !important;
    line-height: 17px !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-media {
    width: min(100vw, 520px) !important;
    height: min(134vw, 650px) !important;
    margin-top: clamp(10px, 2.8vw, 18px) !important;
  }

  body.home .steeva-home .steeva-hero .steeva-hero-media img.steeva-mobile-hero-product {
    height: calc(100% + clamp(168px, 44vw, 210px)) !important;
    object-fit: cover !important;
    object-position: center top !important;
    transform: translateY(clamp(-210px, -44vw, -168px)) !important;
  }
}

/* Premium footer redesign: support hub, conversion CTA, and policy navigation. */
.steeva-site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(216, 206, 194, 0.82);
  background:
    radial-gradient(circle at 88% 4%, rgba(151, 123, 183, 0.2), transparent 30rem),
    linear-gradient(135deg, #1d3029 0%, #14241f 46%, #171319 100%) !important;
  color: rgba(255, 253, 248, 0.82);
}

.steeva-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
}

.steeva-footer-inner {
  width: min(1200px, calc(100% - 48px)) !important;
  gap: 28px !important;
  padding: clamp(48px, 7vw, 84px) 0 34px !important;
}

.steeva-footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.steeva-footer-brand {
  max-width: none !important;
  margin: 0 !important;
  text-align: left !important;
}

.steeva-footer-logo {
  display: inline-flex !important;
  margin: 0 0 22px !important;
}

.steeva-footer-logo img {
  width: auto;
  height: 46px !important;
  max-width: 228px !important;
  filter: brightness(0) invert(1) opacity(0.92) !important;
}

.steeva-footer-kicker {
  margin: 0 0 12px !important;
  color: rgba(255, 253, 248, 0.72) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.steeva-footer-brand h2 {
  max-width: 11ch;
  margin: 0 0 18px;
  color: var(--steeva-white);
  font-family: var(--steeva-display);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
}

.steeva-footer-brand > p:not(.steeva-footer-kicker) {
  max-width: 58ch !important;
  margin: 0 !important;
  color: rgba(255, 253, 248, 0.74) !important;
  font-size: clamp(1rem, 1.35vw, 1.12rem) !important;
  line-height: 1.65 !important;
}

.steeva-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.steeva-footer-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.steeva-footer-primary {
  border: 1px solid rgba(255, 253, 248, 0.1);
  background: var(--steeva-violet-deep);
  color: var(--steeva-white) !important;
  box-shadow: 0 18px 48px rgba(11, 8, 14, 0.28);
}

.steeva-footer-secondary {
  border: 1px solid rgba(255, 253, 248, 0.26);
  background: rgba(255, 253, 248, 0.07);
  color: rgba(255, 253, 248, 0.9) !important;
}

.steeva-footer-actions a:hover,
.steeva-footer-actions a:focus {
  transform: translateY(-1px);
}

.steeva-footer-care-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.11), rgba(255, 253, 248, 0.045)),
    rgba(255, 253, 248, 0.04);
  box-shadow: 0 24px 70px rgba(11, 8, 14, 0.22);
}

.steeva-footer-card-label {
  display: block;
  margin-bottom: 6px;
  color: var(--steeva-white);
  font-family: var(--steeva-display);
  font-size: 1.8rem;
  line-height: 1.1;
}

.steeva-footer-care-card a {
  min-height: 54px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 253, 248, 0.11);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.84);
  text-decoration: none;
}

.steeva-footer-care-card a:hover,
.steeva-footer-care-card a:focus {
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.08);
  color: var(--steeva-white);
}

.steeva-footer-care-card svg,
.steeva-footer-assurance svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steeva-footer-care-card a svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 999px;
  color: var(--steeva-white);
  background: rgba(151, 123, 183, 0.16);
}

.steeva-footer-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.055);
}

.steeva-footer-assurance span {
  min-height: 112px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 14px;
  align-content: center;
  padding: 20px 22px;
}

.steeva-footer-assurance span + span {
  border-left: 1px solid rgba(255, 253, 248, 0.12);
}

.steeva-footer-assurance svg {
  grid-row: span 2;
  color: rgba(255, 253, 248, 0.92);
}

.steeva-footer-assurance strong {
  color: var(--steeva-white);
  font-size: 0.96rem;
  line-height: 1.2;
}

.steeva-footer-assurance em {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.35;
}

.steeva-footer-links {
  max-width: none !important;
  grid-template-columns: 0.82fr 1fr 1fr !important;
  gap: clamp(20px, 4vw, 56px) !important;
  margin: 0 !important;
  padding: 30px 0 0 !important;
  border-top: 1px solid rgba(255, 253, 248, 0.13);
}

.steeva-footer-column h2 {
  margin-bottom: 16px !important;
  color: var(--steeva-white) !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.13em !important;
}

.steeva-footer-column h2::after {
  width: 48px !important;
  background: rgba(151, 123, 183, 0.9) !important;
}

.steeva-footer-column ul {
  gap: 8px !important;
}

.steeva-footer-column a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 253, 248, 0.72) !important;
  font-size: 0.96rem !important;
  line-height: 1.35;
}

.steeva-footer-column a:hover,
.steeva-footer-column a:focus {
  color: var(--steeva-white) !important;
}

.steeva-footer-bottom {
  width: min(1200px, calc(100% - 48px)) !important;
  padding: 20px 0 28px !important;
  border-top-color: rgba(255, 253, 248, 0.13) !important;
  color: rgba(255, 253, 248, 0.54) !important;
}

@media (max-width: 900px) {
  .steeva-footer-inner {
    width: min(100% - 32px, 640px) !important;
  }

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

  .steeva-footer-brand h2 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

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

  .steeva-footer-assurance span + span {
    border-top: 1px solid rgba(255, 253, 248, 0.12);
    border-left: 0;
  }

  .steeva-footer-links {
    grid-template-columns: 1fr 1fr !important;
  }

  .steeva-footer-links .steeva-footer-column:first-child {
    grid-column: 1 / -1;
  }

  .steeva-footer-bottom {
    width: min(100% - 32px, 640px) !important;
  }
}

@media (max-width: 520px) {
  .steeva-site-footer {
    padding-bottom: 76px;
  }

  .steeva-footer-inner {
    padding-top: 72px !important;
  }

  .steeva-footer-logo img {
    height: 38px !important;
  }

  .steeva-footer-actions {
    display: grid;
  }

  .steeva-footer-actions a {
    width: 100%;
  }

  .steeva-footer-care-card {
    padding: 18px;
  }

  .steeva-footer-assurance span {
    min-height: 92px;
    padding: 18px;
  }

  .steeva-footer-links {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .steeva-footer-column a {
    min-height: 44px;
  }

  .steeva-footer-links .steeva-footer-column:first-child {
    grid-column: auto;
  }

  .steeva-footer-bottom {
    padding-bottom: 22px !important;
  }
}
