:root {
  --cv-ink: #17211b;
  --cv-green: #173f35;
  --cv-leaf: #2d5d4c;
  --cv-lime: #d7e36d;
  --cv-paper: #fff;
  --cv-mist: #f3f5f1;
  --cv-line: #dfe4dc;
  --cv-muted: #68736b;
  --cv-rust: #a4442c;
  --cv-gold: #f2b84b;
  --cv-display: Lora, Georgia, serif;
  --cv-sans: "DM Sans", Arial, sans-serif;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--cv-ink);
  font: 15px/1.55 var(--cv-sans);
}
body.cv-menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cv-announcement {
  height: 34px;
  background: var(--cv-green);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 0 24px;
  font-size: 12px;
}
.cv-announcement a {
  position: absolute;
  right: 26px;
}
.cv-header {
  height: 82px;
  max-width: 1440px;
  width: min(100%, 1440px);
  margin: auto;
  display: grid;
  grid-template-columns: 220px minmax(280px, 620px) 184px;
  gap: 24px;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
}
.cv-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  line-height: 1;
}
.cv-brand__mark {
  width: 35px;
  height: 35px;
  position: relative;
  display: inline-block;
}
.cv-brand__mark i {
  position: absolute;
  background: var(--cv-green);
  display: block;
}
.cv-brand__mark i:first-child {
  width: 11px;
  height: 35px;
  left: 2px;
  top: 0;
}
.cv-brand__mark i:last-child {
  width: 28px;
  height: 11px;
  left: 2px;
  bottom: 0;
}
.cv-brand b {
  display: block;
  font-size: 18px;
  letter-spacing: 1.4px;
}
.cv-brand small {
  display: block;
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 2.1px;
  color: var(--cv-muted);
}
.custom-logo {
  max-height: 55px;
  width: auto;
}
.cv-header-search form,
.cv-header-search .woocommerce-product-search {
  height: 42px;
  border: 1px solid var(--cv-line);
  border-radius: 4px;
  background: var(--cv-mist);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cv-header-search input[type="search"] {
  border: 0;
  background: transparent;
  height: 100%;
  padding: 0 14px;
  flex: 1;
  min-width: 0;
  outline: 0;
}
.cv-header-search button {
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 15px;
  cursor: pointer;
  color: var(--cv-ink);
  font-size: 11px;
  font-weight: 700;
}
.cv-header-search button:after {
  content: "⌕";
  display: none;
}
.cv-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 184px;
}
.cv-icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cv-icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--cv-ink);
  position: relative;
  font-size: 22px;
}
.cv-cart-count {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--cv-lime);
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.cv-search-toggle,
.cv-menu-toggle {
  display: none;
}
.cv-primary-nav {
  height: 46px;
  border-top: 1px solid var(--cv-line);
  border-bottom: 1px solid var(--cv-line);
}
.cv-primary-nav > ul {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.cv-primary-nav li {
  height: 100%;
  position: relative;
}
.cv-primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 700;
}
.cv-primary-nav li:hover > a {
  color: var(--cv-leaf);
}
.cv-primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  width: 230px;
  background: white;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  z-index: 30;
  box-shadow: 0 12px 35px rgba(17, 31, 23, 0.13);
  border-top: 2px solid var(--cv-green);
}
.cv-primary-nav li:hover > .sub-menu {
  display: block;
}
.cv-primary-nav .sub-menu li {
  height: auto;
}
.cv-primary-nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
}
.cv-mobile-menu,
.cv-drawer-overlay {
  display: none;
}
.cv-site {
  min-height: 60vh;
}
.cv-fallback-hero {
  min-height: 650px;
  height: calc(100vh - 162px);
  max-height: 780px;
  background-size: cover;
  background-position: 62% center;
  display: flex;
  align-items: center;
  position: relative;
}
.cv-fallback-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  background: rgba(247, 246, 242, 0.94);
}
.cv-fallback-hero > div {
  width: min(1280px, calc(100% - 64px));
  margin: auto;
  position: relative;
  z-index: 1;
}
.cv-fallback-hero p,
.cv-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--cv-leaf);
  margin: 0;
}
.cv-fallback-hero h1,
.cv-page-header h1,
.cv-content--single h1 {
  font: 500 72px/1.06 var(--cv-display);
  letter-spacing: 0;
  max-width: 680px;
  margin: 14px 0 20px;
}
.cv-fallback-hero span {
  display: block;
  font-size: 19px;
  max-width: 520px;
  color: #465149;
}
.button,
.wp-element-button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 3px;
  background: var(--cv-green);
  color: white;
  padding: 0 20px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.cv-fallback-hero .button {
  margin-top: 30px;
}
.cv-trust-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: auto;
  border-bottom: 1px solid var(--cv-line);
}
.cv-trust-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--cv-line);
}
.cv-trust-row > div:last-child {
  border: 0;
}
.cv-trust-row b,
.cv-trust-row small {
  display: block;
}
.cv-trust-row b {
  font-size: 13px;
}
.cv-trust-row small {
  color: var(--cv-muted);
  font-size: 11px;
}
.cv-home-products {
  max-width: 1280px;
  margin: auto;
  padding: 95px 0;
}
.cv-home-products > h2 {
  font: 500 38px/1.15 var(--cv-display);
  letter-spacing: 0;
  margin: 10px 0 35px;
}
.cv-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 30px;
}
.cv-content--page {
  max-width: 900px;
}
.cv-page-header {
  margin-bottom: 45px;
}
.cv-page-header h1,
.cv-content--single h1 {
  font-size: 52px;
  max-width: 900px;
}
.cv-entry-content {
  font-size: 16px;
}
.cv-entry-content h2,
.cv-entry-content h3 {
  font-family: var(--cv-display);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2em;
}
.cv-entry-content a {
  text-decoration: underline;
}
.cv-entry-content table {
  width: 100%;
  border-collapse: collapse;
}
.cv-entry-content th,
.cv-entry-content td {
  border-bottom: 1px solid var(--cv-line);
  padding: 12px;
  text-align: left;
}
.cv-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 20px;
}
.cv-post-card {
  background: var(--cv-mist);
}
.cv-post-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.cv-post-card > div {
  padding: 20px;
}
.cv-post-card p {
  color: var(--cv-muted);
  font-size: 11px;
}
.cv-post-card h2 {
  font: 500 24px/1.2 var(--cv-display);
}
.cv-text-link {
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid;
}
.cv-newsletter {
  background: var(--cv-lime);
  padding: 60px max(32px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cv-newsletter > div {
  max-width: 580px;
}
.cv-newsletter p {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  margin: 0;
}
.cv-newsletter h2 {
  font: 500 34px/1.15 var(--cv-display);
  letter-spacing: 0;
  margin: 10px 0 0;
}
.cv-newsletter form {
  display: flex;
  width: min(500px, 100%);
  height: 50px;
}
.cv-newsletter input {
  flex: 1;
  border: 1px solid var(--cv-ink);
  background: transparent;
  padding: 0 16px;
  min-width: 0;
}
.cv-newsletter button {
  border: 1px solid var(--cv-ink);
  background: var(--cv-ink);
  color: white;
  padding: 0 18px;
  font-weight: 800;
}
.cv-footer {
  background: #13231d;
  color: #e9eee9;
}
.cv-footer__main {
  max-width: 1280px;
  margin: auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 45px;
}
.cv-footer .cv-brand__mark i {
  background: var(--cv-lime);
}
.cv-footer .cv-brand small {
  color: #aab8af;
}
.cv-footer__brand > p {
  color: #aebcb3;
  max-width: 280px;
  font-size: 13px;
}
.cv-footer h3 {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 4px 0 18px;
}
.cv-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cv-footer__main > div:not(.cv-footer__brand) a {
  display: block;
  color: #b9c5bd;
  font-size: 12px;
  margin: 0 0 10px;
}
.cv-footer__main > div > p {
  color: #aebcb3;
  font-size: 12px;
}
.cv-footer__bottom {
  max-width: 1280px;
  margin: auto;
  border-top: 1px solid #30423a;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: #8fa097;
  font-size: 11px;
}
.cv-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.cv-modal[hidden] {
  display: none;
}
.cv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, 0.7);
}
.cv-modal__content {
  position: relative;
  background: white;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}
.cv-quick-view-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.cv-quick-view-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cv-quick-view-copy {
  padding: 50px;
}
.cv-quick-view-copy h2 {
  font: 500 34px/1.15 var(--cv-display);
}
.cv-quick-view-copy .price {
  font-size: 20px;
}
.cv-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  background: white;
  font-size: 0;
  cursor: pointer;
}
.cv-modal-close:after {
  content: "\00d7";
  font-size: 26px;
}
.cv-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--cv-ink);
  color: white;
  padding: 12px 18px;
  z-index: 120;
  font-size: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1100px) {
  .cv-header {
    grid-template-columns: 210px 1fr 170px;
    padding: 0 20px;
  }
  .cv-primary-nav > ul {
    gap: 20px;
  }
  .cv-home-products,
  .cv-footer__main,
  .cv-footer__bottom {
    max-width: calc(100% - 40px);
  }
  .cv-footer__main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .cv-announcement {
    height: 31px;
    justify-content: center;
    padding: 0 10px;
  }
  .cv-announcement__detail,
  .cv-announcement a {
    display: none;
  }
  .cv-header {
    height: 64px;
    padding: 0 12px;
    display: flex;
  }
  .cv-menu-toggle,
  .cv-search-toggle {
    display: grid;
  }
  .cv-header-search,
  .cv-primary-nav,
  .cv-header-actions > a:not(.cv-cart-button) {
    display: none;
  }
  .cv-header > .cv-brand {
    margin-right: auto;
  }
  .cv-brand__mark {
    width: 29px;
    height: 29px;
  }
  .cv-brand__mark i:first-child {
    width: 9px;
    height: 29px;
  }
  .cv-brand__mark i:last-child {
    width: 23px;
    height: 9px;
  }
  .cv-brand b {
    font-size: 14px;
  }
  .cv-brand small {
    font-size: 6px;
    margin-top: 4px;
  }
  .cv-mobile-menu {
    display: flex;
    position: fixed;
    z-index: 82;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(360px, 90vw);
    background: white;
    padding: 22px;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
  }
  .cv-mobile-menu.is-open {
    transform: none;
  }
  .cv-mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--cv-line);
  }
  .cv-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .cv-mobile-menu li a {
    display: flex;
    justify-content: space-between;
    padding: 15px 2px;
    border-bottom: 1px solid var(--cv-line);
    font-weight: 700;
  }
  .cv-mobile-menu .sub-menu {
    display: none;
  }
  .cv-mobile-contact {
    margin-top: auto;
    background: var(--cv-green);
    color: white;
    padding: 14px;
    text-align: center;
    font-weight: 800;
  }
  .cv-drawer-overlay {
    position: fixed;
    display: block;
    inset: 0;
    background: rgba(6, 15, 10, 0.45);
    z-index: 80;
  }
  .cv-drawer-overlay[hidden] {
    display: none;
  }
  .cv-fallback-hero {
    height: 650px;
    min-height: 0;
    max-height: none;
    align-items: end;
    background-position: center 15%;
    background-size: 100% 62%;
    background-repeat: no-repeat;
  }
  .cv-fallback-hero:after {
    width: 100%;
    height: 43%;
    inset: auto 0 0;
    background: #f7f6f2;
  }
  .cv-fallback-hero > div {
    width: 100%;
    color: var(--cv-ink);
    padding: 0 20px 42px;
  }
  .cv-fallback-hero p {
    color: var(--cv-leaf);
  }
  .cv-fallback-hero h1 {
    font-size: 44px;
    margin: 10px 0 12px;
  }
  .cv-fallback-hero span {
    color: var(--cv-muted);
    font-size: 15px;
    max-width: 350px;
  }
  .cv-fallback-hero .button {
    background: var(--cv-green);
    color: white;
    margin-top: 22px;
  }
  .cv-trust-row {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    padding: 10px 8px;
  }
  .cv-trust-row > div {
    align-items: flex-start;
    padding: 10px;
    border: 0;
  }
  .cv-home-products {
    max-width: none;
    padding: 65px 14px;
  }
  .cv-home-products > h2 {
    font-size: 30px;
  }
  .cv-content {
    padding: 50px 18px;
  }
  .cv-page-header h1,
  .cv-content--single h1 {
    font-size: 40px;
  }
  .cv-post-grid {
    grid-template-columns: 1fr;
  }
  .cv-newsletter {
    display: block;
    padding: 45px 18px;
  }
  .cv-newsletter h2 {
    font-size: 30px;
  }
  .cv-newsletter form {
    margin-top: 25px;
  }
  .cv-newsletter button {
    font-size: 11px;
  }
  .cv-footer__main {
    max-width: none;
    grid-template-columns: 1fr 1fr;
    padding: 50px 20px;
    gap: 34px 20px;
  }
  .cv-footer__brand {
    grid-column: 1/3;
  }
  .cv-footer__main > div:last-child {
    grid-column: 1/3;
  }
  .cv-footer__bottom {
    max-width: none;
    margin: 0 20px;
    display: block;
  }
  .cv-footer__bottom > span {
    display: block;
    margin: 4px 0;
  }
  .cv-quick-view-panel {
    display: block;
  }
  .cv-quick-view-image {
    height: 310px;
  }
  .cv-quick-view-copy {
    padding: 25px;
  }
  .cv-quick-view-copy h2 {
    font-size: 28px;
  }
}

/* --------------------------------------------------------------------------
   1.0.1 layout hardening
   Keep every normal page readable on desktop, tablet and mobile while full-
   bleed hero/media sections remain allowed to reach the viewport edges.
   -------------------------------------------------------------------------- */
:root {
  --cv-gutter: clamp(16px, 3vw, 32px);
}
html,
body {
  max-width: 100%;
}
body {
  overflow-x: hidden;
}
.cv-site {
  width: 100%;
  min-width: 0;
  overflow-x: clip;
}

/* Reliable keyboard focus. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cv-green);
  outline-offset: 2px;
}

/* Consistent desktop gutters for sections that previously touched the edge. */
.cv-home-products {
  width: min(100%, 1280px);
  padding-left: var(--cv-gutter);
  padding-right: var(--cv-gutter);
}
.cv-footer__main {
  width: min(100%, 1280px);
  padding-left: var(--cv-gutter);
  padding-right: var(--cv-gutter);
}
.cv-footer__bottom {
  width: min(100%, 1280px);
  padding-left: var(--cv-gutter);
  padding-right: var(--cv-gutter);
}

/* Shopping-benefit icons. Inline SVG avoids dependency on an icon font. */
.cv-trust-row > div {
  flex-direction: row;
  gap: 13px;
}
.cv-trust-row svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--cv-leaf);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cv-trust-row > div > span {
  min-width: 0;
}

/* Elementor demo safety net. These IDs are part of the supplied demo import. */
.cv-elementor-page {
  width: 100%;
  overflow-x: clip;
}
.elementor-element-hero0001 {
  padding-left: var(--cv-gutter) !important;
  padding-right: var(--cv-gutter) !important;
}
.elementor-element-hero0002 {
  max-width: 650px;
}
.elementor-element-cats0001,
.elementor-element-prod0001 {
  padding-left: var(--cv-gutter) !important;
  padding-right: var(--cv-gutter) !important;
}

/* Long tables/content should never force the whole page wider than the screen. */
.cv-entry-content,
.cv-content,
.cv-elementor-page {
  min-width: 0;
}
.cv-entry-content table {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .cv-home-products,
  .cv-footer__main,
  .cv-footer__bottom {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  :root {
    --cv-gutter: 16px;
  }
  .cv-header {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cv-trust-row > div {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .cv-trust-row svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .cv-content {
    width: 100%;
    padding-left: var(--cv-gutter);
    padding-right: var(--cv-gutter);
  }
  .cv-page-header h1,
  .cv-content--single h1 {
    overflow-wrap: anywhere;
  }

  /* Imported Elementor homepage: stack narrow desktop columns on phones. */
  .elementor-element-hero0001 {
    min-height: 590px !important;
    justify-content: flex-end !important;
    padding: 40px var(--cv-gutter) !important;
  }
  .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 20px 30px !important;
  }
  .elementor-element-hero0004 .elementor-heading-title {
    font-size: clamp(38px, 11vw, 48px) !important;
    line-height: 1.06 !important;
  }
  .elementor-element-promo001 {
    min-height: 0 !important;
    flex-direction: column !important;
  }
  .elementor-element-promo002,
  .elementor-element-promo004 {
    width: 100% !important;
  }
  .elementor-element-promo003 img {
    width: 100% !important;
    height: min(105vw, 460px) !important;
    object-fit: cover !important;
  }
  .elementor-element-promo004 {
    padding: 44px var(--cv-gutter) 50px !important;
  }
  .elementor-element-cats0001,
  .elementor-element-prod0001 {
    padding-left: var(--cv-gutter) !important;
    padding-right: var(--cv-gutter) !important;
  }
}

@media (max-width: 520px) {
  .cv-announcement {
    font-size: 11px;
  }
  .cv-brand {
    max-width: calc(100vw - 150px);
  }
  .cv-brand > span:last-child {
    min-width: 0;
  }
  .cv-brand b,
  .cv-brand small {
    white-space: nowrap;
  }
  .cv-newsletter form {
    height: auto;
    gap: 8px;
    flex-direction: column;
  }
  .cv-newsletter input,
  .cv-newsletter button {
    min-height: 48px;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .cv-header {
    position: relative;
  }
  .cv-header-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 70;
    padding: 10px var(--cv-gutter, 16px) 12px;
    background: #fff;
    border-top: 1px solid var(--cv-line);
    box-shadow: 0 10px 24px rgba(17, 31, 23, 0.1);
  }
  .cv-header-search form,
  .cv-header-search .woocommerce-product-search {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   1.0.2 mobile-first hardening
   -------------------------------------------------------------------------- */

/* Prevent third-party blocks/widgets from creating horizontal scroll. */
.cv-site,
.cv-elementor-page,
.elementor,
.elementor-element,
.elementor-widget-container,
.wp-site-blocks,
.wp-block-group,
.wp-block-columns {
  min-width: 0;
}

.cv-site iframe,
.cv-site video,
.cv-site canvas,
.cv-site svg:not(.cv-brand__mark svg) {
  max-width: 100%;
}

/* Imported Elementor demo: explicit, predictable responsive behaviour even if
   an older version of the demo was imported before responsive values existed. */
.elementor-element-hero0001,
.elementor-element-cats0001,
.elementor-element-prod0001,
.elementor-element-promo004 {
  box-sizing: border-box;
}

.elementor-element-cats0003 .elementor-heading-title,
.elementor-element-prod0003 .elementor-heading-title {
  font-size: clamp(30px, 4vw, 38px) !important;
  line-height: 1.08 !important;
}

.elementor-element-promo006 .elementor-heading-title {
  font-size: clamp(34px, 4.2vw, 46px) !important;
  line-height: 1.08 !important;
}

/* Elementor shortcodes should never be wider than their container. */
.elementor-widget-shortcode,
.elementor-widget-shortcode .elementor-shortcode {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 820px) {
  .cv-header {
    gap: 4px;
    min-width: 0;
  }

  .cv-header > .cv-brand {
    min-width: 0;
    max-width: calc(100vw - 162px);
    margin-right: auto;
  }

  .cv-header-actions {
    flex: 0 0 auto;
    min-width: 0;
    gap: 2px;
  }

  .cv-icon-button {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .cv-cart-count {
    right: -1px;
    top: -1px;
  }

  .custom-logo {
    max-width: min(180px, 44vw);
    max-height: 42px;
  }

  /* Keep all levels of the mobile navigation usable. The previous theme hid
     every submenu, making some destinations impossible to reach on phones. */
  .cv-mobile-menu {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .cv-mobile-menu > ul {
    padding-bottom: 24px;
  }

  .cv-mobile-menu .sub-menu {
    display: block;
    margin: 0 0 0 14px;
    border-left: 1px solid var(--cv-line);
  }

  .cv-mobile-menu .sub-menu a {
    padding: 11px 10px 11px 14px;
    color: var(--cv-muted);
    font-size: 12px;
    font-weight: 600;
  }

  .cv-mobile-contact {
    position: sticky;
    bottom: 0;
    margin-top: 20px;
  }

  /* Homepage hero imported via Elementor. */
  .elementor-element-hero0001 {
    min-height: 620px !important;
    background-position: center top !important;
    background-size: auto 62% !important;
    background-repeat: no-repeat !important;
    justify-content: flex-end !important;
    padding: 38px var(--cv-gutter) !important;
  }

  .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(247, 246, 242, 0.96) !important;
    padding: 26px 20px 28px !important;
  }

  .elementor-element-hero0004 .elementor-heading-title {
    font-size: clamp(36px, 10.8vw, 48px) !important;
    line-height: 1.04 !important;
  }

  .elementor-element-hero0005,
  .elementor-element-hero0005 p {
    font-size: 15px !important;
  }

  .elementor-element-cats0001 {
    padding: 58px var(--cv-gutter) 60px !important;
  }

  .elementor-element-prod0001 {
    padding: 18px var(--cv-gutter) 68px !important;
  }

  .elementor-element-promo001 {
    min-height: 0 !important;
    flex-direction: column !important;
  }

  .elementor-element-promo002,
  .elementor-element-promo004 {
    width: 100% !important;
  }

  .elementor-element-promo003 img {
    width: 100% !important;
    height: min(105vw, 470px) !important;
    object-fit: cover !important;
  }

  .elementor-element-promo004 {
    padding: 42px var(--cv-gutter) 48px !important;
  }

  .elementor-element-promo006 .elementor-heading-title {
    font-size: clamp(32px, 9vw, 40px) !important;
  }

  .cv-newsletter {
    width: 100%;
  }

  .cv-footer__main,
  .cv-footer__bottom {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .cv-announcement {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cv-brand {
    max-width: calc(100vw - 150px);
    gap: 8px;
  }

  .cv-brand b {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cv-brand small {
    display: none;
  }

  .cv-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cv-footer__brand,
  .cv-footer__main > div:last-child {
    grid-column: auto;
  }

  .cv-footer__bottom {
    margin: 0;
  }

  .cv-quick-view-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .cv-quick-view-copy {
    padding: 22px 18px 26px;
  }
}

/* --------------------------------------------------------------------------
   1.0.3 brand polish + mobile hardening
   -------------------------------------------------------------------------- */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-size: 15.5px;
}

#page,
.cv-site,
.site,
.site-main {
  overflow-x: clip;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.cv-brand {
  min-width: 0;
}

.cv-brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
}

.cv-brand__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cv-brand__wordmark {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.cv-brand b {
  font-size: 19px;
  letter-spacing: 1.1px;
}

.cv-brand small {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 2.2px;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .cv-brand__mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .cv-brand b {
    font-size: 15px;
    letter-spacing: 0.9px;
  }

  .cv-header {
    min-width: 0;
    overflow-x: clip;
  }

  .cv-header > .cv-brand {
    max-width: calc(100vw - 148px);
  }
}

@media (max-width: 520px) {
  .cv-header > .cv-brand {
    max-width: calc(100vw - 122px);
  }

  .cv-brand b {
    font-size: 14px;
  }
}

/* 1.0.4 final viewport hardening */
html,
body,
#page,
.cv-site {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.cv-site > *,
.cv-site main,
.cv-site section,
.cv-site article,
.cv-site form,
.cv-site table,
.cv-site figure {
  min-width: 0;
  max-width: 100%;
}

.cv-newsletter {
  position: relative;
  z-index: 1;
  clear: both;
}

@media (max-width: 820px) {
  .cv-announcement,
  .cv-header,
  .cv-site,
  .cv-newsletter,
  .cv-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .cv-newsletter {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ========================================================================== 
   1.1.0 HOMEPAGE DEPTH + EDITORIAL SECTIONS
   ========================================================================== */
.cv-home-editorial,
.cv-home-value-story,
.cv-home-sale-edit {
  width: min(100%, 1380px);
  margin-inline: auto;
  padding-inline: var(--cv-gutter, 30px);
}

.cv-home-editorial {
  padding-top: 86px;
  padding-bottom: 84px;
}

.cv-home-editorial__head,
.cv-home-sale-edit__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.cv-home-editorial__head > div,
.cv-home-sale-edit__head > div {
  max-width: 680px;
}

.cv-home-editorial__head h2,
.cv-home-sale-edit__head h2,
.cv-home-value-story h2 {
  margin: 7px 0 0;
  font: 500 clamp(36px, 4.2vw, 56px) / 1.05 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-home-editorial__head > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--cv-muted);
  font-size: 15px;
  line-height: 1.65;
}

.cv-home-room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cv-room-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #dfe5dd, #f3f5f1);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.cv-room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.cv-room-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 18, 13, 0.04) 30%, rgba(10, 18, 13, 0.76) 100%);
}

.cv-room-card__copy {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 24px;
  flex-direction: column;
}

.cv-room-card__copy small {
  margin-bottom: 5px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cv-room-card__copy strong {
  font: 500 30px/1.08 var(--cv-display);
}

.cv-room-card__copy em {
  margin-top: 13px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

@media (hover: hover) {
  .cv-room-card:hover::before {
    transform: scale(1.035);
  }
}

.cv-home-value-story {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.7fr);
  gap: clamp(40px, 7vw, 110px);
  width: 100%;
  max-width: none;
  background: var(--cv-green);
  color: #fff;
  padding: 82px max(var(--cv-gutter, 30px), calc((100vw - 1320px) / 2));
}

.cv-home-value-story__intro {
  max-width: 480px;
}

.cv-home-value-story__intro .cv-kicker {
  color: var(--cv-lime);
}

.cv-home-value-story__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cv-home-value-story article {
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  padding: 24px;
}

.cv-home-value-story article > span {
  display: block;
  margin-bottom: 52px;
  color: var(--cv-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.cv-home-value-story h3 {
  margin: 0 0 10px;
  font: 500 24px/1.15 var(--cv-display);
}

.cv-home-value-story article p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.65;
}

.cv-home-sale-edit {
  padding-top: 86px;
  padding-bottom: 96px;
}

.cv-home-sale-edit__head > a {
  margin-bottom: 7px;
  color: var(--cv-green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cv-home-sale-edit .woocommerce ul.products {
  margin-top: 0;
}

/* More intentional space before the universal newsletter. */
.home .cv-newsletter {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .cv-home-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cv-room-card {
    min-height: 390px;
  }

  .cv-home-value-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .cv-home-editorial,
  .cv-home-sale-edit {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .cv-home-editorial__head,
  .cv-home-sale-edit__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .cv-home-editorial__head h2,
  .cv-home-sale-edit__head h2,
  .cv-home-value-story h2 {
    font-size: clamp(34px, 9.5vw, 46px);
  }

  .cv-home-value-story {
    gap: 34px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cv-home-value-story__grid {
    grid-template-columns: 1fr;
  }

  .cv-home-value-story article {
    min-height: 0;
  }

  .cv-home-value-story article > span {
    margin-bottom: 26px;
  }

  .cv-home-sale-edit .woocommerce ul.products,
  .cv-home-sale-edit .woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }
}

@media (max-width: 560px) {
  .cv-home-room-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cv-room-card {
    min-height: 260px;
    border-radius: 6px;
  }

  .cv-room-card__copy {
    padding: 15px;
  }

  .cv-room-card__copy strong {
    font-size: 22px;
  }

  .cv-room-card__copy em {
    font-size: 10px;
  }
}

/* Final flow isolation: WooCommerce grids may never collide with newsletter. */
.cv-newsletter {
  position: relative;
  z-index: 1;
  clear: both;
}

.single-product + .cv-newsletter,
.woocommerce + .cv-newsletter {
  margin-top: 36px;
}

/* --------------------------------------------------------------------------
   1.2.0 — storefront feature styles
   -------------------------------------------------------------------------- */

/* Skip to content (keyboard users) */
.cv-skip-link {
  top: 8px;
  left: 8px;
  z-index: 200;
  background: var(--cv-green);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
}
.cv-skip-link:focus {
  position: fixed !important;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  white-space: normal;
  overflow: visible;
}

/* Sticky, shrinking header */
.cv-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  transition: height 0.2s ease, box-shadow 0.2s ease;
}
.cv-header.is-stuck {
  height: 64px;
  box-shadow: 0 10px 30px rgba(17, 31, 23, 0.09);
}

/* Live search */
.cv-header-search {
  position: relative;
}
.cv-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 45;
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(17, 31, 23, 0.16);
  overflow: hidden;
}
.cv-search-results__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--cv-mist);
}
.cv-search-results__item:hover {
  background: var(--cv-mist);
}
.cv-search-results__item img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 4px;
  flex: 0 0 46px;
}
.cv-search-results__item b {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}
.cv-search-results__item em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--cv-leaf);
  font-weight: 700;
  margin-top: 2px;
}
.cv-search-results__item em del {
  color: var(--cv-muted);
  font-weight: 400;
  margin-right: 4px;
}
.cv-search-results__empty {
  margin: 0;
  padding: 16px 14px;
  font-size: 13px;
  color: var(--cv-muted);
}
.cv-search-results__all {
  display: block;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cv-green);
  background: var(--cv-mist);
}
@media (max-width: 820px) {
  .cv-search-results {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 116px;
  }
}

/* Newsletter feedback + honeypot */
.cv-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cv-newsletter-form {
  position: relative;
  flex-wrap: wrap;
}
.cv-newsletter-msg {
  display: none;
  flex-basis: 100%;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
}
.cv-newsletter-msg.is-visible {
  display: block;
}
.cv-newsletter-msg.is-error {
  color: var(--cv-rust);
}

/* Delivery postcode result */
.cv-postcode-result {
  margin: 10px 0 0;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--cv-mist);
  border-left: 3px solid var(--cv-green);
  font-size: 13px;
  line-height: 1.5;
}
.cv-postcode-result.is-error {
  border-left-color: var(--cv-rust);
  color: var(--cv-rust);
}
.cv-postcode-free {
  color: var(--cv-leaf);
  font-weight: 600;
}

/* Cookie consent */
.cv-consent {
  position: fixed;
  z-index: 130;
  left: 18px;
  bottom: 18px;
  width: min(430px, calc(100vw - 36px));
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(17, 31, 23, 0.22);
  padding: 20px;
}
.cv-consent__copy strong {
  display: block;
  font-family: var(--cv-display);
  font-size: 17px;
  margin-bottom: 6px;
}
.cv-consent__copy p {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--cv-muted);
}
.cv-consent__copy a {
  color: var(--cv-green);
  font-weight: 700;
  text-decoration: underline;
}
.cv-consent__choices {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
}
.cv-consent__choices label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.cv-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cv-consent__actions button {
  border: 1px solid var(--cv-line);
  background: #fff;
  border-radius: 4px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.cv-consent__actions .cv-consent__accept,
.cv-consent__actions .cv-consent__save {
  background: var(--cv-green);
  border-color: var(--cv-green);
  color: #fff;
}
.cv-cookie-settings {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Back to top */
.cv-to-top {
  position: fixed;
  z-index: 110;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--cv-green);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(17, 31, 23, 0.28);
}
.cv-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* The hidden attribute must always win over component display values. */
.cv-to-top[hidden],
.cv-consent[hidden],
.cv-consent__choices[hidden],
.cv-consent__save[hidden],
.cv-search-results[hidden],
.cv-postcode-result[hidden],
.cv-recently-viewed[hidden] {
  display: none;
}

.cv-consent:not([hidden]) ~ .cv-to-top,
body:has(.cv-consent:not([hidden])) .cv-to-top {
  bottom: 18px;
}
@media (max-width: 820px) {
  /* Keep clear of the mobile sticky add-to-cart bar. */
  .single-product .cv-to-top,
  .cv-to-top {
    bottom: 84px;
  }
}

/* Recently viewed */
.cv-recently-viewed {
  width: min(100%, 1280px);
  margin: 44px auto 0;
  padding: 0 20px;
  clear: both;
}
.cv-recently-viewed h2 {
  font-family: var(--cv-display);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 18px;
}
.cv-recently-viewed__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.cv-recent-card {
  background: var(--cv-mist);
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.cv-recent-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.cv-recent-card span {
  display: block;
  padding: 12px 14px;
}
.cv-recent-card b {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.cv-recent-card em {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--cv-leaf);
}
@media (max-width: 760px) {
  .cv-recently-viewed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* Free delivery progress (basket) */
.cv-ship-progress {
  max-width: 640px;
  margin: 0 0 22px;
  padding: 14px 18px;
  background: var(--cv-mist);
  border-radius: 6px;
}
.cv-ship-progress p {
  margin: 0 0 10px;
  font-size: 13.5px;
}
.cv-ship-progress__track {
  height: 8px;
  background: #dde3da;
  border-radius: 99px;
  overflow: hidden;
}
.cv-ship-progress__track i {
  display: block;
  height: 100%;
  background: var(--cv-green);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Comments */
.cv-comments {
  margin-top: 44px;
}
.cv-comments h2 {
  font-family: var(--cv-display);
  font-weight: 500;
  font-size: 24px;
}
.cv-comments .comment-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.cv-comments .comment-list .comment {
  border-bottom: 1px solid var(--cv-line);
  padding: 18px 0;
}
.cv-comments .comment-list .children {
  list-style: none;
  margin-left: 26px;
}
.cv-comments .comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}
.cv-comments .comment-author .avatar {
  border-radius: 50%;
}
.cv-comments .comment-metadata {
  font-size: 12px;
  color: var(--cv-muted);
}
.cv-comments .comment-content p {
  margin: 10px 0 0;
}
.cv-comments .comment-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 14px 0 6px;
}
.cv-comments .comment-form input:not([type="checkbox"]):not([type="submit"]),
.cv-comments .comment-form textarea {
  width: 100%;
  max-width: 560px;
  border: 1px solid var(--cv-line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
}
.cv-comments .comment-form .submit {
  width: auto;
  background: var(--cv-green);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 11px 22px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 14px;
}

/* 404 */
.cv-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
}
.cv-empty h1 {
  font-family: var(--cv-display);
  font-weight: 500;
}
.cv-empty form {
  max-width: 420px;
  margin: 20px auto 0;
  display: flex;
}
.cv-empty input[type="search"] {
  flex: 1;
  border: 1px solid var(--cv-line);
  border-radius: 4px 0 0 4px;
  padding: 11px 14px;
}
.cv-empty button[type="submit"],
.cv-empty .search-submit {
  border: 0;
  background: var(--cv-green);
  color: #fff;
  border-radius: 0 4px 4px 0;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}
.cv-content--404 .cv-404 {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 20px 90px;
  text-align: center;
}
.cv-404 h1 {
  font-family: var(--cv-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  margin: 6px 0 14px;
}
.cv-404 form {
  max-width: 420px;
  margin: 22px auto;
  display: flex;
}
.cv-404 input[type="search"] {
  flex: 1;
  border: 1px solid var(--cv-line);
  border-radius: 4px 0 0 4px;
  padding: 11px 14px;
}
.cv-404 button[type="submit"],
.cv-404 .search-submit {
  border: 0;
  background: var(--cv-green);
  color: #fff;
  border-radius: 0 4px 4px 0;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}
.cv-404__chips {
  justify-content: center;
  margin: 8px 0 26px;
}
.cv-404 .button {
  display: inline-block;
  background: var(--cv-green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
}

/* Reduced motion: honour the OS-level preference everywhere. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================================
   1.3.0 PREMIUM PASS
   Depth, motion and spacing upgrades. This layer intentionally sits last: it
   refines the stable 1.x foundation without moving a single piece of markup,
   so imported Elementor demos and existing content keep working unchanged.
   ========================================================================== */

:root {
  --cv-ink-deep: #0f1712;
  --cv-green-bright: #1d5445;
  --cv-sand: #f7f4ec;
  --cv-radius-s: 8px;
  --cv-radius-m: 12px;
  --cv-radius-l: 20px;
  --cv-shadow-1: 0 1px 2px rgba(16, 26, 20, 0.05), 0 8px 22px rgba(16, 26, 20, 0.06);
  --cv-shadow-2: 0 14px 38px rgba(16, 26, 20, 0.12), 0 3px 8px rgba(16, 26, 20, 0.05);
  --cv-shadow-3: 0 30px 70px rgba(16, 26, 20, 0.18), 0 8px 22px rgba(16, 26, 20, 0.08);
  --cv-section: clamp(74px, 8vw, 112px);
  --cv-section-tight: clamp(58px, 6.5vw, 88px);
  --cv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

::selection {
  background: var(--cv-lime);
  color: var(--cv-ink);
}

/* ---- Global softness -------------------------------------------------- */
a {
  transition: color 0.18s ease;
}

main#primary,
.cv-content,
.cv-woocommerce-main {
  scroll-margin-top: 112px;
}

/* Softer, consistent focus rings on every interactive field. */
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):focus,
textarea:focus,
select:focus {
  border-color: var(--cv-green) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 63, 53, 0.12);
}

/* ---- Buttons ---------------------------------------------------------- */
.button,
.wp-element-button,
input[type="submit"] {
  min-height: 50px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--cv-green-bright), var(--cv-green) 72%);
  box-shadow: 0 12px 26px rgba(23, 63, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  letter-spacing: 0.01em;
  transition: transform 0.18s var(--cv-ease), box-shadow 0.22s var(--cv-ease), filter 0.18s ease;
}

@media (hover: hover) {
  .button:hover,
  .wp-element-button:hover,
  input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(23, 63, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    filter: brightness(1.04);
  }
}

.button:active,
.wp-element-button:active,
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(23, 63, 53, 0.2);
}

/* ---- Kicker labels gain a small rule ---------------------------------- */
.cv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 2.6px;
}

.cv-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

/* ---- Announcement bar -------------------------------------------------- */
.cv-announcement {
  height: 36px;
  background: linear-gradient(90deg, #12332b 0%, var(--cv-green) 32%, var(--cv-green-bright) 68%, #12332b 100%);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cv-announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cv-announcement__detail {
  color: rgba(255, 255, 255, 0.72);
}

/* ---- Sticky header: frosted glass ------------------------------------- */
.cv-header.is-stuck {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 228, 220, 0.85);
  box-shadow: 0 14px 34px rgba(16, 26, 20, 0.07);
}

.cv-icon-button {
  border-radius: 50%;
  transition: background 0.18s ease, transform 0.18s var(--cv-ease);
}

@media (hover: hover) {
  .cv-icon-button:hover {
    background: var(--cv-mist);
  }
}

.cv-cart-count {
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(16, 26, 20, 0.22);
  font-variant-numeric: tabular-nums;
}

.cv-cart-button.is-bumping .cv-cart-count {
  animation: cv-cart-pop 0.5s var(--cv-ease);
}

@keyframes cv-cart-pop {
  0% { transform: scale(0.5); }
  55% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ---- Header search pill ------------------------------------------------ */
.cv-header-search form,
.cv-header-search .woocommerce-product-search {
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cv-header-search form:focus-within {
  background: #fff;
  border-color: rgba(23, 63, 53, 0.4);
  box-shadow: 0 0 0 4px rgba(23, 63, 53, 0.1);
}

/* ---- Primary navigation: animated underline + premium dropdown --------- */
.cv-primary-nav > ul > li > a {
  position: relative;
}

.cv-primary-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  width: 100%;
  height: 2px;
  background: var(--cv-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--cv-ease);
}

.cv-primary-nav > ul > li:hover > a::after,
.cv-primary-nav > ul > li:focus-within > a::after,
.cv-primary-nav > ul > li.current-menu-item > a::after {
  transform: scaleX(1);
}

.cv-primary-nav li:hover > .sub-menu,
.cv-primary-nav li:focus-within > .sub-menu {
  animation: cv-nav-drop 0.2s var(--cv-ease);
}

@keyframes cv-nav-drop {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cv-primary-nav .sub-menu {
  border-top: 3px solid var(--cv-lime);
  border-radius: 0 0 var(--cv-radius-m) var(--cv-radius-m);
  box-shadow: var(--cv-shadow-2);
  padding: 8px;
}

.cv-primary-nav .sub-menu a {
  border-radius: 6px;
  padding: 10px 14px;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.22s var(--cv-ease);
}

.cv-primary-nav .sub-menu a:hover {
  background: var(--cv-mist);
  color: var(--cv-green);
  padding-left: 18px;
}

/* ---- Fallback hero: cinematic gradient instead of a flat slab ---------- */
.cv-fallback-hero::after {
  width: 55%;
  background: linear-gradient(90deg, rgba(247, 246, 242, 0.97) 0%, rgba(247, 246, 242, 0.88) 58%, rgba(247, 246, 242, 0) 100%);
}

.cv-fallback-hero h1 {
  letter-spacing: -0.02em;
}

/* ---- Trust strip becomes four floating cards --------------------------- */
.cv-trust-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px var(--cv-gutter);
  border-bottom: 0;
}

.cv-trust-row > div,
.cv-trust-row > div:last-child {
  border: 1px solid var(--cv-line);
  border-radius: var(--cv-radius-m);
  background: #fff;
  padding: 18px 16px;
  box-shadow: var(--cv-shadow-1);
}

.cv-trust-row svg {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  padding: 8px;
  border-radius: 50%;
  background: var(--cv-mist);
}

/* ---- Home section rhythm ------------------------------------------------ */
.cv-home-products {
  padding-top: var(--cv-section-tight);
  padding-bottom: var(--cv-section-tight);
}

.cv-home-products > h2 {
  font-size: clamp(34px, 3.6vw, 46px);
  letter-spacing: -0.02em;
}

.cv-home-editorial {
  padding-top: var(--cv-section-tight);
  padding-bottom: var(--cv-section-tight);
}

.cv-home-sale-edit {
  padding-top: var(--cv-section-tight);
  padding-bottom: var(--cv-section);
}

.cv-home-editorial__head h2,
.cv-home-sale-edit__head h2,
.cv-home-value-story h2 {
  letter-spacing: -0.02em;
}

/* Outlet link becomes a real pill CTA. */
.cv-home-sale-edit__head > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--cv-green);
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .cv-home-sale-edit__head > a:hover {
    background: var(--cv-green);
    color: #fff;
    box-shadow: 0 10px 22px rgba(23, 63, 53, 0.22);
  }
}

/* ---- Room cards: deeper, rounder, more premium -------------------------- */
.cv-room-card {
  border-radius: 14px;
  box-shadow: var(--cv-shadow-1);
  transition: box-shadow 0.28s ease;
}

@media (hover: hover) {
  .cv-room-card:hover {
    box-shadow: var(--cv-shadow-2);
  }
}

/* ---- Value story: rich radial depth instead of flat green --------------- */
.cv-home-value-story {
  background: radial-gradient(130% 150% at 5% 0%, #1d5445 0%, var(--cv-green) 48%, #113028 100%);
}

.cv-home-value-story article {
  transition: transform 0.25s var(--cv-ease), background 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
  .cv-home-value-story article:hover {
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-3px);
  }
}

/* ---- Newsletter: from flat lime band to a floating premium panel -------- */
.cv-newsletter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(calc(100% - (2 * var(--cv-gutter))), 1280px);
  margin: 0 auto;
  border-radius: var(--cv-radius-l);
  background: linear-gradient(118deg, #1b4c3e 0%, var(--cv-green) 46%, #10302a 100%);
  color: #fff;
  padding: clamp(46px, 6vw, 74px) clamp(26px, 5vw, 68px);
  box-shadow: var(--cv-shadow-2);
}

.cv-newsletter::before,
.cv-newsletter::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.cv-newsletter::before {
  width: 340px;
  height: 340px;
  right: -110px;
  top: -130px;
  background: rgba(215, 227, 109, 0.14);
}

.cv-newsletter::after {
  width: 220px;
  height: 220px;
  left: 34%;
  bottom: -150px;
  background: rgba(255, 255, 255, 0.05);
}

.cv-newsletter p {
  color: var(--cv-lime);
}

.cv-newsletter h2 {
  color: #fff;
  letter-spacing: -0.015em;
}

.cv-newsletter form {
  height: 54px;
}

.cv-newsletter input {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  padding: 0 18px;
}

.cv-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.cv-newsletter input:focus {
  border-color: var(--cv-lime);
  background: #fff;
  color: var(--cv-ink);
}

.cv-newsletter button {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--cv-lime);
  color: var(--cv-ink);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, transform 0.18s var(--cv-ease);
}

@media (hover: hover) {
  .cv-newsletter button:hover {
    background: #fff;
  }
}

.cv-newsletter .cv-newsletter-msg {
  color: #fff;
}

/* ---- Footer: deeper gradient, social row, payment marks ----------------- */
.cv-footer {
  background: linear-gradient(180deg, #15271f 0%, #101d16 100%);
}

.cv-footer__main {
  padding: 82px 0 66px;
}

.cv-footer__main > div:not(.cv-footer__brand) a:hover {
  color: #fff;
}

.cv-footer__bottom {
  padding: 24px 0;
}

.cv-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.cv-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #c9d4cc;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--cv-ease);
}

@media (hover: hover) {
  .cv-socials a:hover {
    background: var(--cv-lime);
    border-color: var(--cv-lime);
    color: var(--cv-ink);
    transform: translateY(-2px);
  }
}

.cv-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.cv-payments,
.cv-footer__payments {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.cv-payments span,
.cv-footer__payments span,
.cv-footer__pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  line-height: 1;
  margin: 0;
  padding: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
  vertical-align: middle;
  flex-shrink: 0;
}

.cv-payments span:hover,
.cv-footer__payments span:hover,
.cv-footer__pay-badge:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.cv-payments img,
.cv-footer__payments img,
.cv-footer__pay-badge img,
.cv-footer__pay-badge svg {
  width: 34px;
  height: 22px;
  max-width: 34px;
  max-height: 22px;
  display: block;
  object-fit: contain;
}

/* ---- Static pages, posts and editor content ----------------------------- */
.cv-content {
  padding-top: var(--cv-section-tight);
  padding-bottom: var(--cv-section-tight);
}

.cv-page-header h1,
.cv-content--single h1 {
  letter-spacing: -0.02em;
}

.cv-entry-content {
  font-size: 16.5px;
  line-height: 1.75;
}

.cv-entry-content > p:first-of-type {
  font-size: 18px;
}

.cv-entry-content img,
.single .cv-content--single article > img {
  border-radius: var(--cv-radius-m);
}

.single .cv-content--single article > img {
  margin: 26px 0;
}

.cv-entry-content blockquote {
  margin: 1.8em 0;
  border-left: 3px solid var(--cv-lime);
  border-radius: 0 var(--cv-radius-m) var(--cv-radius-m) 0;
  background: var(--cv-mist);
  padding: 20px 26px;
}

.cv-entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.cv-entry-content hr {
  border: 0;
  height: 1px;
  background: var(--cv-line);
  margin: 2.5em 0;
}

.cv-entry-content ul,
.cv-entry-content ol {
  padding-left: 22px;
}

.cv-entry-content li {
  margin: 7px 0;
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
}

.alignfull img {
  border-radius: 0;
}

.cv-archive-description {
  max-width: 640px;
  margin: -14px 0 42px;
  color: var(--cv-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- Blog cards ---------------------------------------------------------- */
.cv-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cv-line);
  border-radius: var(--cv-radius-m);
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  transition: transform 0.22s var(--cv-ease), box-shadow 0.25s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .cv-post-card:hover {
    transform: translateY(-4px);
    border-color: #ccd6cf;
    box-shadow: var(--cv-shadow-2);
  }
}

.cv-post-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.cv-post-card h2 {
  letter-spacing: -0.01em;
}

.cv-post-card .cv-text-link {
  margin-top: auto;
}

@media (hover: hover) {
  .cv-post-card a:hover h2 {
    color: var(--cv-leaf);
  }
}

/* ---- Blog / archive pagination ------------------------------------------- */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 52px;
}

.nav-links .page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--cv-line);
  border-radius: var(--cv-radius-s);
  background: #fff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.18s ease;
}

.nav-links .page-numbers.current {
  border-color: var(--cv-green);
  background: var(--cv-green);
  color: #fff;
}

@media (hover: hover) {
  .nav-links a.page-numbers:hover {
    border-color: var(--cv-green);
    color: var(--cv-green);
  }
}

/* ---- Generic search forms -------------------------------------------------- */
.search-form,
.cv-content .search-form {
  display: flex;
  gap: 0;
}

.search-form .search-field,
.cv-content .search-form .search-field {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--cv-line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #fff;
  padding: 0 16px;
}

.search-form .search-submit,
.cv-content .search-form .search-submit {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--cv-green);
  color: #fff;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease;
}

@media (hover: hover) {
  .search-form .search-submit:hover {
    background: var(--cv-leaf);
  }
}

.cv-empty form,
.cv-404 form {
  margin-top: 26px;
}

.cv-404 p {
  max-width: 520px;
  margin-inline: auto;
  color: var(--cv-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- Quick-view modal ----------------------------------------------------- */
.cv-modal__content {
  border-radius: var(--cv-radius-l);
  box-shadow: var(--cv-shadow-3);
  overflow: hidden;
}

.cv-quick-view-copy {
  padding: clamp(30px, 4vw, 52px);
}

.cv-quick-view-copy h2 {
  letter-spacing: -0.01em;
}

.cv-quick-view-copy .summary {
  margin-top: 14px;
  color: var(--cv-muted);
  font-size: 15px;
  line-height: 1.7;
}

.cv-quick-view-copy .button {
  margin-top: 24px;
}

.cv-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--cv-shadow-1);
  transition: transform 0.22s var(--cv-ease);
}

@media (hover: hover) {
  .cv-modal-close:hover {
    transform: rotate(90deg);
  }
}

/* ---- Consent, toast, back-to-top ------------------------------------------ */
.cv-consent {
  border-radius: 14px;
  box-shadow: var(--cv-shadow-3);
}

.cv-consent__actions button {
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.cv-toast {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: var(--cv-green);
  padding: 13px 18px;
  box-shadow: var(--cv-shadow-2);
}

.cv-toast a {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 14px;
  color: var(--cv-lime);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.cv-to-top {
  transition: transform 0.2s var(--cv-ease), box-shadow 0.2s ease;
}

@media (hover: hover) {
  .cv-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--cv-shadow-2);
  }
}

/* ---- Recently viewed + delivery progress ----------------------------------- */
.cv-recently-viewed {
  margin-top: 56px;
  padding: 0 var(--cv-gutter);
}

.cv-recently-viewed h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.01em;
}

.cv-recent-card {
  border: 1px solid var(--cv-line);
  border-radius: var(--cv-radius-m);
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  transition: transform 0.2s var(--cv-ease), box-shadow 0.25s ease;
}

@media (hover: hover) {
  .cv-recent-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cv-shadow-2);
  }
}

.cv-recent-card span {
  padding: 14px 16px 16px;
}

.cv-ship-progress {
  border: 1px solid #e2e8e0;
  border-radius: var(--cv-radius-m);
  box-shadow: var(--cv-shadow-1);
}

.cv-ship-progress__track i {
  background: linear-gradient(90deg, var(--cv-leaf), var(--cv-green-bright));
}

/* ---- Comments ---------------------------------------------------------------- */
.cv-comments .comment-form input:not([type="checkbox"]):not([type="submit"]),
.cv-comments .comment-form textarea {
  border-radius: 8px;
}

.cv-comments .comment-form .submit {
  min-height: 48px;
  border-radius: 8px;
  transition: background 0.18s ease;
}

@media (hover: hover) {
  .cv-comments .comment-form .submit:hover {
    background: var(--cv-leaf);
  }
}

/* ---- 1.3.0 responsive corrections ------------------------------------------- */
@media (max-width: 820px) {
  .cv-fallback-hero::after {
    width: 100%;
    height: 43%;
    inset: auto 0 0;
    background: linear-gradient(0deg, rgba(247, 246, 242, 0.98) 0%, rgba(247, 246, 242, 0.94) 78%, rgba(247, 246, 242, 0) 100%);
  }

  .cv-trust-row {
    gap: 8px;
    padding: 12px var(--cv-gutter);
  }

  .cv-trust-row > div,
  .cv-trust-row > div:last-child {
    padding: 14px;
  }

  .cv-trust-row svg {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .cv-newsletter {
    padding: 44px 22px;
  }

  .cv-mobile-menu {
    padding: 24px;
    box-shadow: var(--cv-shadow-3);
  }

  .cv-mobile-contact {
    border-radius: 10px;
  }

  .cv-footer__bottom .cv-payments,
  .cv-footer__bottom .cv-footer__payments {
    margin: 14px 0;
  }

  /* Keep payment badges horizontal on mobile */
  .cv-footer__bottom .cv-payments span,
  .cv-footer__bottom .cv-footer__payments span,
  .cv-footer__bottom .cv-footer__pay-badge {
    display: inline-flex !important;
    margin: 0 !important;
  }

  .cv-content {
    padding-top: 52px;
    padding-bottom: 60px;
  }
}

@media (max-width: 520px) {
  .cv-newsletter input,
  .cv-newsletter button {
    border-radius: 8px;
  }

  .cv-newsletter input {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }
}

/* ==========================================================================
   1.3.1 REVIEW FIXES
   Full-bleed premium newsletter, pre-footer service strip, rebuilt recently
   viewed cards, header quick links and mobile footer margins.
   ========================================================================== */

/* ---- Announcement bar quick links -------------------------------------- */
.cv-announcement {
  position: relative;
}

.cv-announcement__links {
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cv-announcement__links a {
  position: static;
  color: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 20px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cv-announcement__links a:first-child {
  border-left: 0;
  padding-left: 0;
}

.cv-announcement__links a:hover {
  color: #fff;
  text-decoration: none;
}

.cv-announcement__links a:last-child {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .cv-announcement__detail {
    display: none;
  }
}

@media (max-width: 900px) {
  .cv-announcement {
    gap: 16px;
  }
}

/* ---- Wishlist header badge ---------------------------------------------- */
.cv-wishlist-count {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--cv-lime);
  box-shadow: 0 3px 8px rgba(16, 26, 20, 0.22);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cv-wishlist-count[hidden] {
  display: none;
}

/* ---- Newsletter: stretched full-bleed premium band ---------------------- */
.cv-newsletter {
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: clamp(56px, 7vw, 86px) max(var(--cv-gutter), calc((100vw - 1280px) / 2));
}

@media (max-width: 820px) {
  .cv-newsletter {
    padding: 54px var(--cv-gutter);
    text-align: left;
  }

  .cv-newsletter form {
    margin-top: 26px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .cv-newsletter h2 {
    font-size: 29px;
  }

  .cv-newsletter form {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .cv-newsletter input,
  .cv-newsletter button {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
  }

  .cv-newsletter button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ---- Service strip between newsletter and footer ------------------------- */
.cv-service-strip {
  border-top: 1px solid var(--cv-line);
  border-bottom: 1px solid var(--cv-line);
  background: var(--cv-mist);
  padding: 26px max(var(--cv-gutter), calc((100vw - 1280px) / 2));
}

.cv-service-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.cv-service-strip__inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.cv-service-strip__inner svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  padding: 8px;
  fill: none;
  stroke: var(--cv-leaf);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cv-service-strip__inner b,
.cv-service-strip__inner small {
  display: block;
  min-width: 0;
}

.cv-service-strip__inner b {
  font-size: 13px;
  line-height: 1.3;
}

.cv-service-strip__inner small {
  margin-top: 1px;
  color: var(--cv-muted);
  font-size: 11px;
}

@media (max-width: 900px) {
  .cv-service-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .cv-service-strip__inner > div {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .cv-service-strip__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- Recently viewed: proper mini retail cards -------------------------- */
.cv-recently-viewed {
  margin-top: 52px;
  padding-bottom: 8px;
}

.cv-recent-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.cv-recent-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f6f7f4;
  object-fit: cover;
}

.cv-recent-card span {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 16px 16px;
}

.cv-recent-card b {
  display: -webkit-box;
  min-height: 2.7em;
  max-height: 2.7em;
  margin-bottom: 6px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: normal;
}

.cv-recent-card em {
  margin-top: auto;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

/* ---- Homepage polish ----------------------------------------------------- */
.cv-home-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.cv-home-products__head h2 {
  margin-bottom: 0;
}

.cv-home-products__more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--cv-lime);
  padding-bottom: 4px;
  color: var(--cv-green);
  font-size: 13px;
  font-weight: 800;
  transition: border-color 0.18s ease, color 0.18s ease;
}

@media (max-width: 640px) {
  .cv-home-products__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
  }
}

@media (hover: hover) {
  .cv-home-products__more:hover {
    color: var(--cv-leaf);
    border-color: var(--cv-green);
  }
}

.cv-room-card {
  min-height: 460px;
}

/* ---- Footer mobile margins ---------------------------------------------- */
@media (max-width: 820px) {
  .cv-footer__main {
    padding: 56px 20px 42px;
    gap: 38px 24px;
  }

  .cv-footer__bottom {
    margin: 0;
    padding: 20px 20px 28px;
  }
}

/* Mobile menu quick links (hidden on desktop). */
.cv-mobile-quicklinks {
  display: none;
}

@media (max-width: 820px) {
  .cv-mobile-quicklinks {
    display: flex;
    gap: 8px;
    margin-top: 20px;
  }

  .cv-mobile-quicklinks a {
    flex: 1;
    border: 1.5px solid var(--cv-green);
    border-radius: 8px;
    padding: 12px 8px;
    color: var(--cv-green);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
  }
}

/* ==========================================================================
   1.3.2 ROUND-THREE FIXES
   Recently-viewed cards now match the store grids exactly; legal pages get
   a designed card frame; footer accent; home editorial upgrades.
   ========================================================================== */

/* ---- Recently viewed: identical chrome to the main product grid --------- */
.cv-recently-viewed__grid {
  gap: 28px 20px;
}

.cv-recent-card {
  overflow: hidden;
  border: 1px solid #e6eae4;
  border-radius: var(--cv-radius-m, 12px);
  background: #fff;
  padding: 0 12px 14px;
  box-shadow: var(--cv-shadow-1, 0 8px 22px rgba(16, 26, 20, 0.06));
  transition: border-color 0.22s ease, box-shadow 0.25s ease, transform 0.22s ease;
}

@media (hover: hover) {
  .cv-recent-card:hover {
    transform: translateY(-3px);
    border-color: #ccd6cf;
    box-shadow: var(--cv-shadow-2, 0 16px 38px rgba(16, 26, 20, 0.12));
  }
}

.cv-recent-card img {
  width: calc(100% + 24px);
  max-width: none;
  margin: 0 -12px;
  aspect-ratio: 1 / 1;
  background: var(--cv-mist);
  object-fit: contain;
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .cv-recent-card:hover img {
    transform: scale(1.045);
  }
}

.cv-recent-card span {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 2px 4px;
}

.cv-recent-card b {
  display: -webkit-box;
  min-height: 2.8em;
  max-height: 2.8em;
  margin: 0 0 6px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: normal;
}

.cv-recent-card em {
  margin-top: auto;
  color: var(--cv-ink);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

.cv-recent-card em del {
  color: var(--cv-muted);
  font-size: 12px;
  font-weight: 400;
  margin-right: 6px;
}

.cv-recent-card em ins {
  color: var(--cv-rust);
  text-decoration: none;
}

@media (max-width: 760px) {
  .cv-recently-viewed__grid {
    gap: 22px 10px;
  }

  .cv-recent-card {
    padding: 0 9px 11px;
  }

  .cv-recent-card img {
    width: calc(100% + 18px);
    margin: 0 -9px;
  }

  .cv-recent-card b {
    font-size: 12.5px;
  }

  .cv-recent-card em {
    font-size: 13px;
  }
}

/* ---- Legal / service pages: designed card frame -------------------------- */
.cv-content--page {
  max-width: 960px;
}

.cv-page-card {
  overflow: hidden;
  border: 1px solid #e6eae4;
  border-radius: var(--cv-radius-l, 18px);
  background: #fff;
  box-shadow: var(--cv-shadow-1, 0 8px 22px rgba(16, 26, 20, 0.06));
  padding: clamp(26px, 4.5vw, 52px);
}

.cv-page-card .cv-page-header {
  margin: 0 0 26px;
  border-bottom: 1px solid var(--cv-line);
  padding-bottom: 22px;
}

.cv-page-card .cv-page-header .cv-kicker {
  color: var(--cv-muted);
}

.cv-page-card .cv-page-header h1 {
  margin: 10px 0 0;
}

.cv-page-card .cv-entry-content h2 {
  margin-top: 2.1em;
  border-bottom: 1px solid #eef1ec;
  padding-bottom: 10px;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
}

.cv-page-card .cv-entry-content h2:first-of-type {
  margin-top: 0;
}

.cv-page-card .cv-entry-content h3 {
  font-size: 19px;
}

.cv-page-card .cv-entry-content table {
  display: block;
  overflow-x: auto;
  border: 1px solid var(--cv-line);
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--cv-shadow-1, 0 8px 22px rgba(16, 26, 20, 0.06));
}

.cv-page-card .cv-entry-content thead th,
.cv-page-card .cv-entry-content tbody tr:first-child th {
  background: var(--cv-mist);
}

.cv-page-card .cv-entry-content th,
.cv-page-card .cv-entry-content td {
  padding: 13px 16px;
}

.cv-page-card .cv-entry-content blockquote {
  background: #fbf6f1;
  border-left-color: var(--cv-rust);
}

@media (max-width: 640px) {
  .cv-page-card {
    border-radius: 14px;
    padding: 24px 18px 30px;
  }
}

/* ---- Footer accents ------------------------------------------------------- */
.cv-footer {
  border-top: 4px solid var(--cv-lime);
}

.cv-footer h3 {
  color: #fff;
  letter-spacing: 1.6px;
}

/* ---- Home editorial: even four-card rows (span experiment removed) -------- */

/* ---- Home feature split: brand story with media panel -------------------- */
.cv-home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, 1380px);
  margin: 0 auto var(--cv-section);
  padding: 0 var(--cv-gutter);
  align-items: stretch;
}

.cv-home-feature__media {
  min-height: 460px;
  border-radius: 18px 0 0 18px;
  background-color: #dfe5dd;
  background-position: center;
  background-size: cover;
}

.cv-home-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, #1b4c3e 0%, var(--cv-green) 55%, #113028 100%);
  color: #fff;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4.5vw, 68px);
}

.cv-home-feature__copy .cv-kicker {
  color: var(--cv-lime);
}

.cv-home-feature__copy h2 {
  margin: 12px 0 18px;
  color: #fff;
  font: 500 clamp(30px, 3.2vw, 44px) / 1.08 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-home-feature__copy > p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.cv-home-feature__copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cv-home-feature__copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.cv-home-feature__copy li svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(215, 227, 109, 0.16);
  padding: 4px;
  fill: none;
  stroke: var(--cv-lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cv-home-feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 12px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

@media (hover: hover) {
  .cv-home-feature__cta:hover {
    border-color: var(--cv-lime);
    background: var(--cv-lime);
    color: var(--cv-ink);
    transform: translateY(-1px);
  }
}

@media (max-width: 960px) {
  .cv-home-feature {
    grid-template-columns: 1fr;
  }

  .cv-home-feature__media {
    min-height: 280px;
    border-radius: 18px 18px 0 0;
  }

  .cv-home-feature__copy {
    border-radius: 0 0 18px 18px;
  }
}

/* ==========================================================================
   1.3.3 MOBILE ALIGNMENT FIX
   Service-strip items stack icon-on-text, centered, on small screens.
   ========================================================================== */
@media (max-width: 900px) {
  .cv-service-strip__inner > div {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    text-align: center;
  }

  .cv-service-strip__inner b,
  .cv-service-strip__inner small {
    text-align: center;
  }
}

/* ==========================================================================
   1.3.4 ROUND FIVE — root-cause fixes
   ========================================================================== */

/* ---- Recently viewed: the real bug ---------------------------------------
   Older rules targeted `.cv-recent-card span`, which ALSO matched every
   nested <span> inside WooCommerce's price HTML (each "amount" fragment was
   given card-copy padding + flex column). The cards below could never look
   right. Copy now lives in a dedicated class and selectors are scoped. */
/* Neutralise every older descendant-`span` card rule so WooCommerce's own
   price fragments (span.woocommerce-Price-amount etc.) stay untouched. */
.cv-recent-card span,
.cv-recent-card__copy span {
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.cv-recent-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 2px 4px;
}

.cv-recent-card__copy > b {
  display: -webkit-box;
  min-height: 2.8em;
  max-height: 2.8em;
  margin: 0 0 6px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: normal;
}

.cv-recent-card__copy > em {
  margin-top: auto;
  color: var(--cv-ink);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

.cv-recent-card__copy > em del {
  color: var(--cv-muted);
  font-size: 12px;
  font-weight: 400;
  margin-right: 6px;
}

.cv-recent-card__copy > em ins {
  color: var(--cv-rust);
  text-decoration: none;
}

@media (max-width: 760px) {
  .cv-recent-card__copy > b {
    font-size: 12.5px;
  }

  .cv-recent-card__copy > em {
    font-size: 13px;
  }
}

/* ---- Premium "added to cart" notice -------------------------------------- */
.woocommerce .woocommerce-message,
.woocommerce-message {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  border: 1px solid #d8e4d2;
  border-top: 1px solid #d8e4d2;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfef9, #f4f9f2);
  box-shadow: var(--cv-shadow-1, 0 8px 22px rgba(16, 26, 20, 0.07));
  padding: 15px 18px 15px 60px;
  color: var(--cv-ink);
  font-size: 14px;
  animation: cv-notice-in 0.35s ease;
}

.woocommerce .woocommerce-message::before,
.woocommerce-message::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  padding: 0;
  border-radius: 50%;
  background: var(--cv-lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317211b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E") center / 16px no-repeat;
  color: transparent;
}

.woocommerce .woocommerce-message a.button,
.woocommerce-message a.button,
.woocommerce .woocommerce-message a.wc-forward,
.woocommerce-message a.wc-forward {
  order: 2;
  margin-left: auto;
  min-height: 40px;
  border-radius: 999px;
  background: var(--cv-ink) !important;
  color: #fff !important;
  padding: 9px 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: none;
}

@media (hover: hover) {
  .woocommerce .woocommerce-message a.button:hover,
  .woocommerce-message a.wc-forward:hover {
    background: var(--cv-green) !important;
  }
}

.woocommerce .woocommerce-info,
.woocommerce-info {
  border-radius: 12px;
  padding: 15px 18px 15px 18px;
}

.woocommerce .woocommerce-error,
.woocommerce-error {
  border-radius: 12px;
}

@keyframes cv-notice-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Legal pages: calmer reading column on desktop ------------------------ */
.cv-content--page {
  max-width: 880px;
}

.cv-content.cv-content--page {
  padding-top: var(--cv-section);
  padding-bottom: var(--cv-section);
}

.cv-page-card {
  margin: 0 auto;
}

/* ---- Homepage: normalise ALL existing + new blocks ------------------------ */
/* Hero copy card becomes a floating rounded panel. */
.home .elementor-element-hero0002 {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px !important;
  box-shadow: var(--cv-shadow-2, 0 16px 40px rgba(16, 26, 20, 0.14)) !important;
}

@media (max-width: 820px) {
  .home .elementor-element-hero0002 {
    box-shadow: 0 10px 26px rgba(16, 26, 20, 0.12) !important;
  }
}

/* Any Elementor button on the homepage becomes the premium pill. */
.home .elementor-widget-button .elementor-button {
  border-radius: 999px !important;
  padding: 15px 28px !important;
  box-shadow: 0 12px 26px rgba(23, 63, 53, 0.22);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.18s ease;
}

@media (hover: hover) {
  .home .elementor-widget-button .elementor-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 16px 32px rgba(23, 63, 53, 0.28);
  }
}

/* Consistent vertical rhythm across demo containers. */
.home .elementor-element-prod0001 {
  padding-top: 34px !important;
}

.home .elementor-element-promo001 {
  min-height: 0 !important;
}

.home .elementor-element-promo004 {
  padding-top: clamp(48px, 6vw, 72px) !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

@media (min-width: 821px) {
  .home .elementor-element-promo003 img {
    min-height: 560px;
  }
}

/* The feature split panel: charcoal tone separates it from green blocks. */
.cv-home-feature {
  margin-top: var(--cv-section-tight);
}

.cv-home-feature__copy {
  background: linear-gradient(135deg, #1b2721 0%, #101a15 100%);
}

/* Guarantee white-air between every theme-owned home section. */
.home .cv-home-editorial,
.home .cv-home-sale-edit {
  padding-top: var(--cv-section);
}

.home .cv-home-value-story + .cv-home-feature {
  margin-top: var(--cv-section);
}

/* Kicker consistency for Elementor headings. */
.home .elementor-widget-heading p.elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800 !important;
}

.home .elementor-widget-heading p.elementor-heading-title::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

/* ==========================================================================
   1.3.5 ROUND SIX — homepage harmony + full recently-viewed cards
   ========================================================================== */

/* ---- Tighter vertical rhythm on small screens ---------------------------- */
@media (max-width: 820px) {
  :root {
    --cv-section: 56px;
    --cv-section-tight: 48px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 56px !important;
    padding-bottom: 52px !important;
  }

  .home .elementor-element-prod0001 {
    padding-bottom: 56px !important;
  }
}

/* ---- Hero: image behaves like a proper mobile hero ------------------------- */
@media (max-width: 820px) {
  .home .elementor-element-hero0001 {
    min-height: 620px !important;
    background-position: center 24% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    justify-content: flex-end !important;
    padding: 34px var(--cv-gutter) !important;
  }

  .home .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 26px 22px 28px !important;
  }
}

@media (min-width: 821px) {
  /* Air between the hero and the trust cards below it. */
  .home .elementor-element-trust001 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}

@media (max-width: 820px) {
  .home .elementor-element-trust001 {
    padding: 14px var(--cv-gutter) 0 !important;
  }
}

/* ---- Promo band becomes a contained rounded card --------------------------- */
.home .elementor-element-promo001 {
  width: calc(100% - (2 * var(--cv-gutter))) !important;
  max-width: 1380px;
  margin: 0 auto !important;
  overflow: hidden;
  border-radius: 20px !important;
  box-shadow: var(--cv-shadow-1);
}

.home .elementor-element-promo004 {
  padding-left: clamp(28px, 4.5vw, 64px) !important;
  padding-right: clamp(28px, 4.5vw, 64px) !important;
}

/* Promo list becomes tick chips. */
.home .elementor-element-promo007 ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 4px;
  padding: 0;
  list-style: none;
}

.home .elementor-element-promo007 ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.home .elementor-element-promo007 ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--cv-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ---- Recently viewed: full retail cards --------------------------------------
   Sized like the related grid, with tools, badges and ratings. */
.cv-recently-viewed {
  width: min(100%, 1360px);
  margin-top: 56px;
}

.cv-recent-card {
  position: relative;
}

.cv-recent-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  color: inherit;
}

.cv-recent-card .star-rating {
  height: 13px;
  margin: 0 0 7px;
  font-size: 11px;
}

.cv-recent-card .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 7;
}

@media (hover: hover) and (min-width: 821px) {
  .cv-recent-card .cv-product-tools {
    opacity: 0;
    transform: translate(6px, -6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .cv-recent-card:hover .cv-product-tools,
  .cv-recent-card:focus-within .cv-product-tools {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .cv-recent-card .cv-product-tools {
    top: 7px;
    right: 7px;
    gap: 5px;
  }

  .cv-recent-card .cv-product-tools button {
    width: 32px;
    height: 32px;
  }

  .cv-recent-card .onsale {
    top: 7px;
    left: 7px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .cv-recent-card .star-rating {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .cv-recent-card .cv-product-tools .cv-compare {
    display: none;
  }
}

/* ==========================================================================
   1.3.6 ROUND SEVEN — spacing diet + final mobile passes
   ========================================================================== */

/* ---- Section rhythm: less dead air everywhere ------------------------------ */
:root {
  --cv-section: clamp(64px, 7vw, 88px);
  --cv-section-tight: clamp(48px, 5.5vw, 70px);
}

/* Elementor demo containers: tighter, consistent paddings. */
.home .elementor-element-cats0001 {
  padding-top: 64px !important;
  padding-bottom: 60px !important;
}

.home .elementor-element-prod0001 {
  padding-top: 18px !important;
  padding-bottom: 64px !important;
}

.home .elementor-element-promo001 {
  margin: 8px auto var(--cv-section) !important;
}

@media (max-width: 820px) {
  :root {
    --cv-section: 52px;
    --cv-section-tight: 44px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 50px !important;
    padding-bottom: 46px !important;
  }

  .home .elementor-element-prod0001 {
    padding-bottom: 48px !important;
  }
}

/* ---- Mobile hero: split layout, image fully visible above the card --------- */
@media (max-width: 820px) {
  .home .elementor-element-hero0001 {
    min-height: 0 !important;
    background-color: #e9eee7 !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
    justify-content: flex-start !important;
    padding: clamp(230px, 60vw, 380px) var(--cv-gutter) 26px !important;
  }

  .home .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
    background: #f7f6f2 !important;
    box-shadow: 0 8px 22px rgba(16, 26, 20, 0.08) !important;
    border-radius: 14px !important;
    padding: 24px 20px 28px !important;
  }
}

/* ---- Categories: reliable full-bleed swipe scroller ------------------------ */
@media (max-width: 820px) {
  .home .elementor-element-cats0001,
  .home .elementor-element-cats0001 .elementor-widget-shortcode,
  .home .elementor-element-cats0001 .elementor-widget-container {
    overflow: visible !important;
  }
}

/* ==========================================================================
   1.3.7 ROUND EIGHT — final spacing diet + true mobile hero
   ========================================================================== */

/* ---- Section rhythm: final tape measure ----------------------------------- */
:root {
  --cv-section: clamp(56px, 6vw, 72px);
  --cv-section-tight: clamp(40px, 5vw, 56px);
}

@media (max-width: 820px) {
  :root {
    --cv-section: 46px;
    --cv-section-tight: 38px;
  }
}

/* Kill stacked gaps: each seam is owned by ONE layer only. */
.home .elementor-element-promo001 {
  margin-bottom: 0 !important;
}

.cv-home-feature {
  margin-top: var(--cv-section-tight);
  margin-bottom: 0;
}

.cv-home-value-story {
  padding-top: 64px;
  padding-bottom: 64px;
}

.home .elementor-element-cats0001 {
  padding-top: 56px !important;
  padding-bottom: 50px !important;
}

.home .elementor-element-prod0001 {
  padding-top: 14px !important;
  padding-bottom: 56px !important;
}

@media (max-width: 820px) {
  .cv-home-value-story {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 44px !important;
    padding-bottom: 40px !important;
  }

  .home .elementor-element-prod0001 {
    padding-top: 10px !important;
    padding-bottom: 44px !important;
  }
}

/* ==========================================================================
   1.3.8 ROUND NINE — the definitive spacing audit endpoint
   Every seam on the homepage is owned by exactly one rule below. Previous
   rounds fought stacked paddings + margins; these numbers replace them all.
   ========================================================================== */
:root {
  --cv-section: clamp(50px, 5.5vw, 64px);
  --cv-section-tight: clamp(38px, 4.5vw, 50px);
}

/* Hero internal breathing (desktop; mobile is handled by the true split). */
.home .elementor-element-hero0001 {
  padding-top: 60px !important;
  padding-bottom: 64px !important;
}

/* Trust cards: minimal gap under the hero. */
.home .elementor-element-trust001 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Category + product sections. */
.home .elementor-element-cats0001 {
  padding-top: 48px !important;
  padding-bottom: 42px !important;
}

.home .elementor-element-prod0001 {
  padding-top: 8px !important;
  padding-bottom: 44px !important;
}

/* Promo band: no own bottom margin — the next section owns the seam. */
.home .elementor-element-promo001 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Theme-owned home sections keep symmetric ends. */
.home .cv-home-editorial,
.home .cv-home-sale-edit {
  padding-top: var(--cv-section);
  padding-bottom: var(--cv-section);
}

.cv-home-value-story {
  padding-top: 48px;
  padding-bottom: 48px;
}

.cv-home-feature {
  margin-top: var(--cv-section-tight);
  margin-bottom: 0;
}

@media (max-width: 820px) {
  :root {
    --cv-section: 42px;
    --cv-section-tight: 34px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 36px !important;
    padding-bottom: 30px !important;
  }

  .home .elementor-element-prod0001 {
    padding-top: 4px !important;
    padding-bottom: 36px !important;
  }

  .home .elementor-element-trust001 {
    padding-top: 10px !important;
  }

  .cv-home-value-story {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home .elementor-element-promo001 {
    margin-bottom: 0 !important;
  }
}

/* ==========================================================================
   1.3.9 ROUND TEN — the actual mobile-gap root cause
   Elementor's kit adds `--kit-widget-spacing` (~20px) as margin below EVERY
   widget (heading, shortcode, button, image). On mobile a block stacks
   3-4 widgets, creating 60-80px of fake "section gap": kicker→heading→
   content each got 20px. Neutralised here and replaced with a precise
   per-widget rhythm — so blocks read as single composed units.
   ========================================================================== */

.home .elementor-element .elementor-widget:not(:last-child) {
  margin-block-end: 0 !important;
}

/* Kicker → headline: small. Headline → content: balanced. */
.home .elementor-element .elementor-widget-heading {
  margin-bottom: 8px !important;
}

.home .elementor-element .elementor-widget-text-editor {
  margin-bottom: 10px !important;
}

/* The big headings lead their sections. */
.home .elementor-element-cats0003,
.home .elementor-element-prod0003,
.home .elementor-element-promo006 {
  margin-bottom: 24px !important;
}

/* Grids don't need extra air after the heading margin above. */
.home .woocommerce ul.products {
  margin-top: 0;
}

.cv-home-editorial__head,
.cv-home-sale-edit__head {
  margin-bottom: 24px;
}

/* Tighter product-grid rows on phones. */
@media (max-width: 820px) {
  .woocommerce ul.products,
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-2 {
    gap: 20px 10px;
  }
}

/* ---- Hero image on mobile: a framed, polished first impression ------------- */
.cv-hero-mobile-image {
  display: none;
}

@media (max-width: 820px) {
  .cv-hero-mobile-image {
    display: block;
    width: calc(100% - (2 * var(--cv-gutter))) !important;
    max-width: 560px;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 14px auto 0;
    border: 1px solid rgba(23, 33, 27, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(16, 26, 20, 0.14), 0 4px 10px rgba(16, 26, 20, 0.06);
    object-fit: cover;
  }

  .home .elementor-element-hero0002 {
    margin-top: 16px !important;
    border: 1px solid rgba(23, 33, 27, 0.06) !important;
  }
}

@media (max-width: 820px) {
  /* Structural split: image element on top (styled by the 1.3.9 frame rules
     above), solid card below. */
  .home .elementor-element-hero0001 {
    display: block !important;
    min-height: 0 !important;
    background: none !important;
    background-color: transparent !important;
    justify-content: normal !important;
    padding: 0 0 22px !important;
  }

  .home .elementor-element-hero0002 {
    width: auto !important;
    max-width: none !important;
    margin: 16px var(--cv-gutter) 0 !important;
    padding: 24px 20px 28px !important;
  }
}

/* ==========================================================================
   1.4.0 THEME-BUILT HOMEPAGE
   The front page is now composed entirely of theme-owned native sections
   (front-page.php). One spacing scale owns every seam; desktop and mobile
   rhythms are defined once, here. Older Elementor-demo rules above become
   dormant but harmless.
   ========================================================================== */

:root {
  --cv-section: clamp(48px, 6vw, 68px);
  --cv-hero-pad: clamp(30px, 4.6vw, 58px);
}

@media (max-width: 820px) {
  :root {
    --cv-section: 38px;
    --cv-hero-pad: 26px;
  }
}

.cv-h-wrap {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--cv-gutter);
}

.cv-h-sec {
  padding-top: var(--cv-section);
  padding-bottom: var(--cv-section);
}

.cv-h-sec--tinted {
  background: var(--cv-mist);
}

.cv-h-kicker-tight {
  margin-bottom: 6px;
}

/* Shared section head: kicker + display title + optional right element. */
.cv-h-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 26px;
}

.cv-h-head > div {
  max-width: 660px;
}

.cv-h-head h2 {
  margin: 9px 0 0;
  font: 500 clamp(30px, 3.4vw, 46px) / 1.06 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-head > p {
  max-width: 400px;
  margin: 0 0 4px;
  color: var(--cv-muted);
  font-size: 15px;
  line-height: 1.65;
}

.cv-h-more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--cv-green);
  border-radius: 999px;
  padding: 11px 22px;
  color: var(--cv-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .cv-h-more:hover {
    background: var(--cv-green);
    color: #fff;
    box-shadow: 0 10px 22px rgba(23, 63, 53, 0.2);
  }
}

@media (max-width: 720px) {
  .cv-h-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .cv-h-head h2 {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .cv-h-head > p {
    font-size: 14px;
  }
}

/* Shared CTAs. */
.cv-h-btn,
.cv-h-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.cv-h-btn {
  border: 1.5px solid var(--cv-green);
  background: var(--cv-green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(23, 63, 53, 0.22);
}

.cv-h-btn--lime {
  border-color: var(--cv-lime);
  background: var(--cv-lime);
  color: var(--cv-ink);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.cv-h-ghost {
  border: 1.5px solid rgba(23, 33, 27, 0.3);
  background: transparent;
  color: var(--cv-ink);
}

.cv-h-ghost--light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}

@media (hover: hover) {
  .cv-h-btn:hover {
    background: var(--cv-ink);
    border-color: var(--cv-ink);
    color: #fff;
    transform: translateY(-1px);
  }

  .cv-h-btn--lime:hover {
    background: #fff;
    border-color: #fff;
    color: var(--cv-ink);
  }

  .cv-h-ghost:hover {
    border-color: var(--cv-ink);
    background: var(--cv-ink);
    color: #fff;
  }

  .cv-h-ghost--light:hover {
    border-color: var(--cv-lime);
    background: var(--cv-lime);
    color: var(--cv-ink);
  }
}

/* ---- 1 · HERO ------------------------------------------------------------- */
.cv-h-hero {
  padding: clamp(16px, 2.5vw, 30px) var(--cv-gutter) var(--cv-hero-pad);
}

.cv-h-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  border: 1px solid #dfe6dc;
  border-radius: 22px;
  background: linear-gradient(115deg, #eef1ea 0%, #e6ece3 55%, #dfe7db 100%);
  padding: clamp(24px, 4vw, 52px);
}

.cv-h-hero__copy h1 {
  margin: 14px 0 16px;
  font: 500 clamp(36px, 4.6vw, 62px) / 1.04 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-hero__sub {
  max-width: 46ch;
  margin: 0;
  color: #465149;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}

.cv-h-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 20px;
}

.cv-h-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv-h-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cv-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.cv-h-hero__proof li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cv-leaf);
}

.cv-h-hero__media {
  position: relative;
  min-width: 0;
}

.cv-h-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(23, 33, 27, 0.08);
  border-radius: 16px;
  box-shadow: var(--cv-shadow-2);
  object-fit: cover;
}

.cv-h-hero__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--cv-shadow-1);
  padding: 10px 16px;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.cv-h-hero__tag small {
  color: var(--cv-leaf);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cv-h-hero__tag strong {
  color: var(--cv-ink);
  font-size: 13px;
}

@media (hover: hover) {
  .cv-h-hero__tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--cv-shadow-2);
  }
}

@media (max-width: 900px) {
  .cv-h-hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cv-h-hero__copy h1 {
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .cv-h-hero__ctas {
    gap: 8px;
  }

  .cv-h-btn,
  .cv-h-ghost {
    min-height: 46px;
    padding: 0 20px;
    font-size: 12.5px;
  }
}

/* ---- 2 · BENEFITS ----------------------------------------------------------- */
.cv-h-benefits {
  border-bottom: 1px solid var(--cv-line);
  padding: 22px 0;
}

.cv-h-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--cv-gutter);
}

.cv-h-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cv-h-benefit svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--cv-mist);
  padding: 8px;
  fill: none;
  stroke: var(--cv-leaf);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cv-h-benefit b,
.cv-h-benefit small {
  display: block;
}

.cv-h-benefit b {
  font-size: 13px;
  line-height: 1.3;
}

.cv-h-benefit small {
  margin-top: 1px;
  color: var(--cv-muted);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .cv-h-benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }
}

/* ---- 3 · SHOP BY SPACE ------------------------------------------------------ */
.cv-h-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cv-h-cat {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 400px;
  overflow: hidden;
  border-radius: 16px;
  background: #dfe5dd;
  color: #fff;
  box-shadow: var(--cv-shadow-1);
}

.cv-h-cat--lead {
  grid-column: span 2;
}

.cv-h-cat img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cv-h-cat__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 18, 13, 0.02) 34%, rgba(10, 18, 13, 0.78) 100%);
}

.cv-h-cat__copy {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 24px;
  flex-direction: column;
}

.cv-h-cat__copy small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cv-h-cat__copy strong {
  font: 500 28px/1.1 var(--cv-display);
}

.cv-h-cat__copy em {
  margin-top: 12px;
  color: var(--cv-lime);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

@media (hover: hover) {
  .cv-h-cat:hover img {
    transform: scale(1.045);
  }
}

@media (max-width: 860px) {
  .cv-h-cats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cv-h-cat {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    border-radius: 12px;
  }

  .cv-h-cat--lead {
    grid-column: span 2;
    aspect-ratio: auto;
    min-height: 210px;
  }

  .cv-h-cat__copy {
    padding: 16px;
  }

  .cv-h-cat__copy strong {
    font-size: 20px;
  }
}

/* ---- 4 · NEW ARRIVALS -------------------------------------------------------- */
.cv-h-sec--tinted .woocommerce ul.products,
.cv-h-sec .woocommerce ul.products {
  margin-top: 0;
}

/* ---- 5 · DEAL SPOTLIGHT ------------------------------------------------------- */
.cv-h-deal {
  background: linear-gradient(120deg, #101d17 0%, #173328 100%);
  color: #fff;
  padding-top: var(--cv-section);
  padding-bottom: var(--cv-section);
}

.cv-h-deal__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.cv-h-deal__copy .cv-kicker {
  color: var(--cv-lime);
}

.cv-h-deal__copy h2 {
  margin: 10px 0 16px;
  color: #fff;
  font: 500 clamp(28px, 3.2vw, 46px) / 1.08 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-deal__copy > p:not(.cv-kicker):not(.cv-h-deal__price) {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15.5px;
  line-height: 1.7;
}

.cv-h-deal__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
}

.cv-h-deal__now {
  color: var(--cv-lime);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
}

.cv-h-deal__price del {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
}

.cv-h-deal__chip {
  border-radius: 999px;
  background: var(--cv-lime);
  color: var(--cv-ink);
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cv-h-deal__media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8f9f5, #ecefe8);
  box-shadow: var(--cv-shadow-3);
  padding: clamp(14px, 2.4vw, 30px);
}

.cv-h-deal__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.02;
  object-fit: contain;
}

@media (max-width: 960px) {
  .cv-h-deal__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* ---- 6 · WHY THIS STORE ------------------------------------------------------- */
.cv-h-story {
  background: var(--cv-mist);
  padding-top: var(--cv-section);
  padding-bottom: var(--cv-section);
}

.cv-h-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.cv-h-story__media {
  min-height: 420px;
  border: 1px solid rgba(23, 33, 27, 0.08);
  border-radius: 18px;
  background-color: #e2e7df;
  background-position: center;
  background-size: cover;
  box-shadow: var(--cv-shadow-2);
}

.cv-h-story__copy h2 {
  margin: 10px 0 16px;
  font: 500 clamp(28px, 3vw, 42px) / 1.08 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-story__copy > p:not(.cv-kicker) {
  margin: 0;
  color: var(--cv-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.cv-h-story__copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.cv-h-story__copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.cv-h-story__copy li svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--cv-green);
  padding: 5px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .cv-h-story__inner {
    grid-template-columns: 1fr;
  }

  .cv-h-story__media {
    min-height: 240px;
  }
}

/* ---- Homepage spacing reset for the demo-era rules ---------------------------- */
/* The theme-built page owns its entire rhythm; nothing above this section
   may inject extra space on .home anymore. */
.home main#primary section:last-of-type {
  margin-bottom: 0;
}

/* ---- Footer: tighter, cleaner on phones -------------------------------------- */
@media (max-width: 640px) {
  .cv-footer__main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 20px 36px;
  }

  .cv-footer h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 9px;
    margin-bottom: 13px;
  }

  .cv-footer__bottom {
    padding: 18px 20px 26px;
    text-align: center;
  }

  .cv-socials {
    margin-top: 20px;
  }
}

/* ==========================================================================
   1.4.3 BALANCED HERO + REAL LOGO + FAVICON
   The stretched hero's left column fought the right one. Back to a framed,
   balanced panel: equal-weight halves, contained width, consistent gutters.
   ========================================================================== */

/* ---- Brand logo lockup --------------------------------------------------- */
.cv-brand--logo {
  gap: 0;
}

.cv-brand__logo {
  display: inline-flex;
  align-items: center;
  color: var(--cv-green);
}

.cv-brand__logo svg,
.cv-brand__svg {
  display: block;
  width: auto;
  max-width: 280px;
  height: 46px;
}

.cv-footer .cv-brand__logo {
  color: #f7f8f3;
}

.cv-brand__text {
  font-size: 19px;
  letter-spacing: 1.1px;
}

@media (max-width: 820px) {
  .cv-brand__logo svg,
  .cv-brand__svg {
    max-width: 220px;
    height: 36px;
  }
}

@media (max-width: 520px) {
  .cv-brand__logo svg,
  .cv-brand__svg {
    max-width: 140px;
    height: 23px;
  }

  .cv-header > .cv-brand {
    max-width: calc(100vw - 130px);
  }
}

/* ---- Hero: contained, balanced, polished ---------------------------------- */
.cv-h-hero {
  padding: clamp(16px, 2.4vw, 30px) var(--cv-gutter) var(--cv-hero-pad);
}

.cv-h-hero__panel {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  width: min(100%, 1280px);
  margin: 0 auto;
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(150deg, #f8f6ef 0%, #eef1e7 100%);
  box-shadow: var(--cv-shadow-2);
}

.cv-h-hero__copy {
  background: radial-gradient(115% 90% at 0% 0%, rgba(215, 227, 109, 0.16), rgba(215, 227, 109, 0) 55%);
  padding: clamp(30px, 4.2vw, 60px);
}

.cv-h-hero__media {
  min-height: clamp(400px, 38vw, 520px);
}

@media (max-width: 900px) {
  .cv-h-hero__panel {
    border-radius: 18px;
    box-shadow: var(--cv-shadow-1);
  }

  .cv-h-hero__media {
    min-height: 0;
  }

  .cv-h-hero__media > img {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .cv-h-hero__copy {
    padding: 26px 20px 30px;
  }
}

/* ==========================================================================
   1.4.4 THE REAL HERO REBUILD
   Centered editorial stage (kicker → serif headline with italic accent →
   subcopy → dual CTAs → tick chips), then a large framed image banner with
   a frosted delivery tag and a floating "Shop the look" card. No split
   columns, no left/right imbalance — one intentional composition that works
   identically on mobile and desktop.
   ========================================================================== */

.cv-h-hero {
  padding: clamp(24px, 3.4vw, 52px) var(--cv-gutter) var(--cv-hero-pad);
}

.cv-h-hero__stage {
  width: min(100%, 800px);
  margin: 0 auto;
  text-align: center;
}

.cv-h-hero__stage .cv-kicker {
  color: var(--cv-leaf);
  justify-content: center;
}

.cv-h-hero__stage h1 {
  margin: 14px 0 18px;
  font: 500 clamp(34px, 4.6vw, 62px) / 1.06 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-hero__stage h1 em {
  color: var(--cv-leaf);
  font-style: italic;
}

.cv-h-hero__sub {
  max-width: 62ch;
  margin: 0 auto;
  color: #4c554d;
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  line-height: 1.65;
}

.cv-h-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
}

.cv-h-hero__ticks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.cv-h-hero__ticks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cv-muted);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.cv-h-hero__ticks li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--cv-green);
  padding: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cv-h-hero__media {
  position: relative;
  width: min(100%, 1280px);
  margin: clamp(28px, 4vw, 44px) auto 0;
  border-radius: 22px;
}

.cv-h-hero__media > img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: 22px;
  box-shadow: var(--cv-shadow-2);
  object-fit: cover;
}

@media (max-width: 900px) {
  .cv-h-hero__media {
    margin-top: 30px;
    border-radius: 16px;
  }

  .cv-h-hero__media > img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .cv-h-hero__sub {
    font-size: 14.5px;
  }

  .cv-h-hero__ticks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* Logo: crisper vector rendering at header size. */
.cv-brand__logo svg,
.cv-brand__svg {
  height: 46px;
  shape-rendering: geometricPrecision;
}

@media (max-width: 820px) {
  .cv-brand__logo svg,
  .cv-brand__svg {
    height: 28px;
  }
}

@media (max-width: 520px) {
  .cv-brand__logo svg,
  .cv-brand__svg {
    height: 24px;
  }
}

/* Footer: four columns — brand + shop + help + legal. */
.cv-footer__main {
  grid-template-columns: 1.6fr repeat(3, 1fr);
}

.cv-footer__contact {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.cv-footer__contact a {
  color: #b9c5bd;
  font-size: 12px;
}

.cv-footer__contact a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .cv-footer__main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .cv-footer__brand {
    grid-row: span 2;
  }
}

@media (max-width: 820px) {
  .cv-footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   1.4.5 HERO COLLAGE
   No flat frame: editorial copy left, a layered composition right — lime
   decor blob, tall main image card, and a smaller white product card
   overlapping its bottom-left corner. On mobile the collage leads, the text
   is deliberately trimmed.
   ========================================================================== */

.cv-h-hero {
  background: linear-gradient(180deg, #f4f2ea 0%, #ffffff 92%);
  padding: clamp(26px, 4vw, 58px) var(--cv-gutter) var(--cv-hero-pad);
}

.cv-h-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.cv-h-hero__copy {
  min-width: 0;
  background: none;
  padding: 0;
}

.cv-h-hero__copy .cv-kicker {
  color: var(--cv-leaf);
}

.cv-h-hero__copy h1 {
  margin: 14px 0 18px;
  color: var(--cv-ink);
  font: 500 clamp(33px, 3.8vw, 56px) / 1.05 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-hero__copy h1 em {
  color: var(--cv-leaf);
  font-style: italic;
}

.cv-h-hero__sub {
  max-width: 46ch;
  margin: 0;
  color: #4c554d;
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.65;
}

.cv-h-hero__ctas {
  justify-content: flex-start;
  margin: 26px 0 0;
}

.cv-h-hero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cv-h-hero__ticks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cv-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.cv-h-hero__ticks li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--cv-green);
  padding: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The layered image composition. */
.cv-h-hero__stage {
  position: relative;
  min-width: 0;
  width: auto;
  margin: 0;
  text-align: left;
  min-height: clamp(430px, 46vw, 590px);
}

.cv-h-hero__blob {
  position: absolute;
  top: 2%;
  right: 6%;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #e6eccd;
}

.cv-h-hero__main {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  margin: 0;
}

.cv-h-hero__main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.6;
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: 18px;
  box-shadow: var(--cv-shadow-2);
  object-fit: cover;
}

.cv-h-hero__ship {
  position: absolute;
  top: 14px;
  right: auto;
  left: -10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--cv-shadow-1);
  color: var(--cv-green);
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cv-h-hero__mini {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 46%;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--cv-shadow-3);
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .cv-h-hero__mini:hover {
    transform: translateY(-4px);
  }
}

.cv-h-hero__mini img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cv-mist);
  object-fit: contain;
}

.cv-h-hero__mini > span {
  display: grid;
  gap: 2px;
  padding: 12px 14px 14px;
}

.cv-h-hero__mini small {
  color: var(--cv-leaf);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cv-h-hero__mini strong {
  color: var(--cv-ink);
  font-size: 13px;
}

/* Mobile: collage leads, text trimmed. */
@media (max-width: 900px) {
  .cv-h-hero {
    padding-top: 20px;
  }

  .cv-h-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cv-h-hero__stage {
    order: -1;
    min-height: 0;
    padding-bottom: 30px;
  }

  .cv-h-hero__main {
    position: relative;
    width: 100%;
  }

  .cv-h-hero__main img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .cv-h-hero__mini {
    left: auto;
    right: 10px;
    bottom: 0;
    width: min(52%, 220px);
    border-radius: 14px;
  }

  .cv-h-hero__ship {
    left: 10px;
    top: 10px;
    font-size: 9.5px;
  }

  .cv-h-hero__blob {
    top: -14px;
    right: -18px;
    width: 48%;
  }
}

/* Phones: much less text. */
@media (max-width: 640px) {
  .cv-h-hero__copy h1 {
    font-size: clamp(30px, 8.6vw, 38px);
  }

  .cv-h-hero__sub {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .cv-h-hero__ticks {
    display: none;
  }

  .cv-h-hero__ctas {
    margin-top: 20px;
  }
}

/* ==========================================================================
   1.4.6 FINAL HERO — the boringly-reliable premium pattern
   Plain block flow, no overlapping absolute composition: fixed-height media
   box with a guaranteed cover image + clean copy column. It cannot break.
   ========================================================================== */

.cv-hero {
  background: linear-gradient(180deg, #f5f4ee 0%, #ffffff 88%);
  padding: clamp(34px, 4.6vw, 64px) var(--cv-gutter) var(--cv-hero-pad);
}

.cv-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.cv-hero__copy {
  min-width: 0;
}

.cv-hero__copy .cv-kicker {
  color: var(--cv-leaf);
}

.cv-hero__copy h1 {
  margin: 14px 0 18px;
  font: 500 clamp(33px, 3.8vw, 56px) / 1.05 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-hero__copy h1 em {
  color: var(--cv-leaf);
  font-style: italic;
}

.cv-hero__sub {
  max-width: 46ch;
  margin: 0;
  color: #4c554d;
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.65;
}

.cv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.cv-hero__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cv-green-bright), var(--cv-green) 72%);
  box-shadow: 0 14px 30px rgba(23, 63, 53, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}

@media (hover: hover) {
  .cv-hero__primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(23, 63, 53, 0.3);
  }
}

.cv-hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 8px;
  color: var(--cv-ink);
  font-size: 13.5px;
  font-weight: 800;
  border-bottom: 2px solid var(--cv-lime);
  transition: color 0.15s ease;
}

@media (hover: hover) {
  .cv-hero__link:hover {
    color: var(--cv-leaf);
  }
}

.cv-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cv-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cv-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.cv-hero__proof li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--cv-green);
  padding: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Media: exact-height box; the image fills it perfectly every time. */
.cv-hero__media {
  position: relative;
  min-width: 0;
  height: clamp(420px, 42vw, 540px);
  overflow: hidden;
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: 20px;
  background: #e2e7df;
  box-shadow: 0 24px 60px rgba(16, 26, 20, 0.14), 0 6px 18px rgba(16, 26, 20, 0.06);
}

.cv-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-hero__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--cv-shadow-1);
  color: var(--cv-green);
  padding: 9px 15px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Mobile: compact copy, image after the CTAs, exact-ratio media box. */
@media (max-width: 860px) {
  .cv-hero {
    padding-top: 26px;
  }

  .cv-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cv-hero__sub,
  .cv-hero__proof {
    display: none;
  }

  .cv-hero__actions {
    margin-top: 22px;
  }

  .cv-hero__actions > * {
    flex: 1 1 100%;
  }

  .cv-hero__link {
    justify-content: center;
    min-height: 44px;
  }

  .cv-hero__media {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}

/* ==========================================================================
   1.4.7 CUSTOMER REVIEWS
   ========================================================================== */

.cv-h-reviews {
  background: #f6f4ee;
  padding-top: var(--cv-section);
  padding-bottom: var(--cv-section);
}

.cv-h-reviews__head {
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
}

.cv-h-reviews__head .cv-kicker {
  justify-content: center;
}

.cv-h-reviews__head h2 {
  margin: 9px 0 0;
  font: 500 clamp(30px, 3.4vw, 46px) / 1.06 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cv-h-review {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid rgba(23, 33, 27, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  padding: 24px 22px 22px;
}

.cv-h-review__quote {
  position: absolute;
  top: 10px;
  right: 18px;
  color: var(--cv-lime);
  font: 700 64px/1 Georgia, serif;
  opacity: 0.85;
}

.cv-h-review__stars {
  display: block;
  color: var(--cv-gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.cv-h-review blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #3d4640;
  font-size: 14.5px;
  line-height: 1.7;
}

.cv-h-review figcaption {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 18px;
}

.cv-h-review figcaption strong {
  font-size: 14px;
}

.cv-h-review figcaption span {
  color: var(--cv-muted);
  font-size: 11.5px;
}

@media (max-width: 900px) {
  .cv-h-reviews__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   1.4.8 CONTACT BLOCK (homepage + Contact Us page)
   ========================================================================== */

.cv-h-contact {
  padding-top: var(--cv-section);
  padding-bottom: var(--cv-section);
}

.cv-h-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.cv-h-contact__panel {
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  padding: clamp(20px, 3vw, 32px);
}

.cv-contact-note {
  margin: 0 0 16px;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

.cv-contact-note--ok {
  background: #eef5ee;
  border: 1px solid #d5e3d4;
  color: #2a6b3a;
}

.cv-contact-note--err {
  background: #fbf0ed;
  border: 1px solid #f0d9d3;
  color: var(--cv-rust);
}

.cv-contact-form {
  display: grid;
  gap: 14px;
}

.cv-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cv-contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.cv-contact-form label > span {
  color: var(--cv-muted);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cv-contact-form input,
.cv-contact-form select,
.cv-contact-form textarea {
  width: 100%;
  border: 1px solid var(--cv-line);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.cv-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.cv-contact-form button {
  justify-self: start;
}

.cv-h-contact__map {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cv-h-contact__map iframe {
  flex: 1;
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(23, 33, 27, 0.09);
  border-radius: 18px;
  box-shadow: var(--cv-shadow-1);
}

.cv-h-contact__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cv-h-contact__meta span {
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--cv-line);
  border-radius: 12px;
  background: #fff;
  padding: 13px 16px;
}

.cv-h-contact__meta b {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cv-muted);
}

.cv-h-contact__meta a {
  font-weight: 800;
}

/* Contact form inside the Contact Us page card. */
.cv-contact-inline {
  margin-top: 30px;
  border-top: 1px solid var(--cv-line);
  padding-top: 26px;
}

.cv-contact-inline .cv-h-contact__panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cv-contact-inline .cv-h-contact__map iframe {
  min-height: 340px;
  border-radius: 14px;
}

@media (max-width: 760px) {
  .cv-contact-inline {
    gap: 18px;
  }

  .cv-contact-inline .cv-h-contact__map iframe {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .cv-h-contact__inner {
    grid-template-columns: 1fr;
  }

  .cv-h-contact__map iframe {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .cv-contact-form__row {
    grid-template-columns: 1fr;
  }

  .cv-h-contact__meta span {
    min-width: 0;
  }
}

/* ==========================================================================
   1.4.9 PREMIUM DOCUMENT PAGES + CONTACT PAGE GRID
   ========================================================================== */

/* Legal/service pages: white canvas, balanced premium document card. */
.cv-content.cv-content--page {
  width: min(100%, 1180px);
  max-width: 1180px;
  background: #fff;
  padding: var(--cv-section) var(--cv-gutter);
}

.cv-page-card {
  width: min(100%, 1060px);
  margin: 0 auto;
  border: 1px solid rgba(23, 33, 27, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  padding: clamp(26px, 4vw, 48px);
}

@media (max-width: 640px) {
  .cv-content.cv-content--page {
    padding: 30px var(--cv-gutter) 44px;
  }

  .cv-page-card {
    border-radius: 14px;
    padding: 22px 16px 28px;
  }
}

/* ==========================================================================
   1.4.1 HERO REDESIGN + REFINED BENEFIT CARDS
   Hero becomes one framed premium panel: dark editorial copy zone (left,
   desktop) + full-bleed image (right). On mobile the image leads above the
   copy inside the same card. Benefits restore the bordered, shadowed card
   treatment with icon chips and hover lift.
   ========================================================================== */

.cv-h-hero {
  padding: clamp(14px, 2vw, 26px) var(--cv-gutter) var(--cv-hero-pad);
}

.cv-h-hero__panel {
  display: grid;
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  width: min(100%, 1280px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 27, 0.08);
  border-radius: 24px;
  background: #101d16;
  box-shadow: var(--cv-shadow-2);
}

.cv-h-hero__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  background: linear-gradient(145deg, #16352a 0%, #102019 100%);
  padding: clamp(30px, 4.2vw, 62px);
}

.cv-h-hero__copy .cv-kicker {
  color: var(--cv-lime);
}

.cv-h-hero__copy h1 {
  margin: 13px 0 17px;
  color: #fff;
  font: 500 clamp(32px, 3.8vw, 54px) / 1.06 var(--cv-display);
  letter-spacing: -0.02em;
}

.cv-h-hero__copy h1 em {
  color: var(--cv-lime);
  font-style: italic;
}

.cv-h-hero__sub {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.65;
}

.cv-h-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.cv-h-hero__ticks {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cv-h-hero__ticks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.cv-h-hero__ticks li svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(215, 227, 109, 0.15);
  padding: 5px;
  fill: none;
  stroke: var(--cv-lime);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cv-h-hero__media {
  position: relative;
  grid-area: media;
  min-width: 0;
  min-height: clamp(340px, 42vw, 560px);
}

.cv-h-hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.cv-h-hero__freetag {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--cv-shadow-1);
  padding: 10px 16px;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.cv-h-hero__freetag small {
  color: var(--cv-leaf);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cv-h-hero__freetag strong {
  color: var(--cv-ink);
  font-size: 13px;
}

@media (hover: hover) {
  .cv-h-hero__freetag:hover {
    transform: translateY(-2px);
    box-shadow: var(--cv-shadow-2);
  }
}

.cv-h-hero__ship {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(16, 26, 20, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Mobile: image leads above the copy inside the same framed panel. */
@media (max-width: 900px) {
  .cv-h-hero__panel {
    grid-template-areas:
      "media"
      "copy";
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .cv-h-hero__media {
    min-height: 0;
  }

  .cv-h-hero__media > img {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .cv-h-hero__copy {
    padding: 26px 20px 30px;
  }
}

@media (max-width: 720px) {
  .cv-h-hero__ctas {
    gap: 8px;
  }
}

/* ---- Benefits: refined cards ------------------------------------------------ */
.cv-h-benefits {
  border-bottom: 0;
  padding: 0 0 var(--cv-section-tight);
}

.cv-h-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--cv-gutter);
}

.cv-h-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--cv-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  padding: 16px 15px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.18s ease;
}

@media (hover: hover) {
  .cv-h-benefit:hover {
    transform: translateY(-2px);
    border-color: #ccd6cf;
    box-shadow: var(--cv-shadow-2);
  }
}

.cv-h-benefit svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--cv-mist);
  padding: 9px;
  fill: none;
  stroke: var(--cv-leaf);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cv-h-benefit b,
.cv-h-benefit small {
  display: block;
}

.cv-h-benefit b {
  font-size: 13px;
  line-height: 1.3;
}

.cv-h-benefit small {
  margin-top: 2px;
  color: var(--cv-muted);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .cv-h-benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .cv-h-benefits__inner {
    gap: 8px;
  }

  .cv-h-benefit {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    text-align: center;
  }
}

/* ==========================================================================
   1.4.2 LIGHT STRETCHED HERO + COLLECTION UPGRADES
   ========================================================================== */

/* ---- Hero: full-width, light premium editorial ---------------------------- */
.cv-h-hero {
  padding: 0 0 var(--cv-hero-pad);
}

.cv-h-hero__panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  width: 100%;
  border: 0;
  border-top: 1px solid #e3e7df;
  border-bottom: 1px solid #e3e7df;
  border-radius: 0;
  background: #f6f5ee;
  box-shadow: none;
}

.cv-h-hero__copy {
  background:
    radial-gradient(110% 85% at 0% 0%, rgba(215, 227, 109, 0.18), rgba(215, 227, 109, 0) 58%),
    linear-gradient(150deg, #f8f6ef 0%, #eff1e7 100%);
  padding: clamp(34px, 5vw, 72px);
  padding-left: max(var(--cv-gutter), calc((100vw - 1280px) / 2 + var(--cv-gutter)));
}

.cv-h-hero__copy .cv-kicker {
  color: var(--cv-leaf);
}

.cv-h-hero__copy h1 {
  color: var(--cv-ink);
}

.cv-h-hero__copy h1 em {
  color: var(--cv-leaf);
}

.cv-h-hero__sub {
  color: #4c554d;
}

.cv-h-hero__ticks li {
  color: var(--cv-ink);
}

.cv-h-hero__ticks li svg {
  background: var(--cv-green);
  stroke: #fff;
}

.cv-h-hero__media {
  min-height: clamp(420px, 44vw, 600px);
}

.cv-h-hero__ship {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.9);
  color: var(--cv-green);
}

@media (max-width: 900px) {
  .cv-h-hero {
    padding-bottom: var(--cv-hero-pad);
  }

  .cv-h-hero__copy {
    padding: 28px 20px 34px;
  }
}

/* ---- Shop by space: lead spans two rows for a full editorial block -------- */
.cv-h-cat--lead {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 860px) {
  .cv-h-cat--lead {
    grid-row: auto;
  }
}

/* ---- Shop + collection pages: premium upgrades . --------------------------- */
.cv-chip-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  border-radius: 999px;
  background: var(--cv-mist);
  color: var(--cv-muted);
  padding: 0 7px;
  font-size: 10.5px;
  font-weight: 800;
  vertical-align: 1px;
}

.cv-category-chips a.is-active .cv-chip-count,
.cv-category-chips a:hover .cv-chip-count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Sort bar becomes an elevated toolbar card. */
.cv-catalogue-sortbar {
  border: 1px solid var(--cv-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--cv-shadow-1);
  padding: 8px 14px;
  margin: 16px 0 10px;
  border-bottom: 1px solid var(--cv-line);
}

/* Archive page header breathes cleaner. */
.woocommerce-products-header .page-title,
.woocommerce .page-title {
  margin-bottom: 8px;
}

.term-description,
.woocommerce-products-header .term-description {
  margin-bottom: 4px;
}

/* 1.5.4 homepage FAQ */
.cv-m154-faq{padding:clamp(76px,8vw,112px) 0;background:#eef1eb;color:var(--cv-ink)}.cv-m154-faq__layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(52px,8vw,115px)}.cv-m154-faq header{position:sticky;top:110px}.cv-m154-faq h2{max-width:520px;margin:12px 0 18px;font:500 clamp(44px,5vw,68px)/.97 var(--cv-display);letter-spacing:-.04em}.cv-m154-faq header>p:last-child{max-width:430px;color:var(--cv-muted);font-size:16px;line-height:1.7}.cv-m154-faq__list{border-top:1px solid var(--cv-line)}.cv-m154-faq details{border-bottom:1px solid var(--cv-line)}.cv-m154-faq summary{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:24px 2px;list-style:none;font-size:17px;font-weight:800;cursor:pointer}.cv-m154-faq summary::-webkit-details-marker{display:none}.cv-m154-faq summary i{position:relative;flex:0 0 34px;width:34px;height:34px;border-radius:50%;background:#fff;box-shadow:var(--cv-shadow-1)}.cv-m154-faq summary i:before,.cv-m154-faq summary i:after{content:"";position:absolute;left:10px;right:10px;top:16px;height:2px;background:var(--cv-green)}.cv-m154-faq summary i:after{transform:rotate(90deg);transition:.25s}.cv-m154-faq details[open] summary i:after{transform:none}.cv-m154-faq details p{max-width:690px;margin:0;padding:0 55px 25px 2px;color:var(--cv-muted);line-height:1.75}
@media(max-width:760px){.cv-m154-faq{padding:68px 0}.cv-m154-faq__layout{grid-template-columns:1fr;gap:34px}.cv-m154-faq header{position:static}.cv-m154-faq h2{font-size:42px}.cv-m154-faq summary{font-size:15px}.cv-m154-faq details p{padding-right:8px}}


/* ---- Charlotte Vane Luxury British Green & Gold Logo Lockup ---- */
.cv-brand__logo {
  display: inline-flex;
  align-items: center;
}

/* Header & General Logo Sizing (Expanded, legible, confident) */
.cv-header .cv-brand__logo svg,
.cv-header .cv-brand__logo img,
.cv-header .cv-brand__svg,
.cv-header .custom-logo,
.cv-brand__logo svg,
.cv-brand__logo img,
.cv-brand__svg,
.custom-logo {
  display: block;
  width: auto;
  max-width: 260px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

/* Footer Brand Column & Logo */
.cv-footer__brand {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.cv-footer .cv-brand {
  display: block;
  max-width: 100%;
  margin-bottom: 14px;
}

.cv-footer .cv-brand__logo {
  display: inline-block;
  max-width: 100%;
}

/* Footer Logo Sizing (Scaled up to 48px, safely contained inside Col 1) */
.cv-footer .cv-brand__logo svg,
.cv-footer .cv-brand__logo img,
.cv-footer .cv-brand__svg,
.cv-footer .custom-logo,
.cv-footer [data-widget_type*="theme-site-logo"] img,
.elementor-location-footer [data-widget_type*="theme-site-logo"] img,
.elementor-widget-theme-site-logo img {
  display: block;
  width: auto;
  max-width: 210px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

/* Luminous visibility on dark green background:
   If the default site-logo (green) is loaded in the dark footer, convert dark tones to crisp white */
.cv-footer .cv-brand__svg--header,
.cv-footer .custom-logo:not([src*="footer"]),
.elementor-location-footer [data-widget_type*="theme-site-logo"] img:not([src*="footer"]),
.elementor-widget-theme-site-logo img:not([src*="footer"]) {
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}

@media (max-width: 768px) {
  .cv-brand__logo svg,
  .cv-brand__logo img,
  .cv-brand__svg,
  .custom-logo {
    max-width: 210px;
    max-height: 44px;
  }
  .cv-footer .cv-brand__logo svg,
  .cv-footer .cv-brand__logo img,
  .cv-footer .cv-brand__svg,
  .cv-footer .custom-logo,
  .cv-footer [data-widget_type*="theme-site-logo"] img,
  .elementor-location-footer [data-widget_type*="theme-site-logo"] img {
    max-width: 185px;
    max-height: 40px;
  }
}

/* Footer payment method badges */
.cv-footer__bottom {
  align-items: center;
}
.cv-footer__payments,
.cv-payments {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cv-footer__pay-badge,
.cv-footer__payments span,
.cv-payments span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 0.15s ease, opacity 0.15s ease;
  vertical-align: middle;
  flex-shrink: 0;
}
.cv-footer__pay-badge:hover,
.cv-footer__payments span:hover,
.cv-payments span:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.cv-footer__pay-badge img,
.cv-footer__pay-badge svg,
.cv-footer__payments img,
.cv-payments img {
  width: 34px !important;
  height: 22px !important;
  max-width: 34px !important;
  max-height: 22px !important;
  display: block !important;
  object-fit: contain !important;
}

