:root {
  --lyvo-forest: #063f2e;
  --lyvo-forest-deep: #032d22;
  --lyvo-forest-soft: #315f50;
  --lyvo-ivory: #f8f5ee;
  --lyvo-cream: #eee7da;
  --lyvo-gold: #b8893e;
  --lyvo-gold-soft: #d7b978;
  --lyvo-ink: #17382f;
  --lyvo-muted: #68766f;
  --lyvo-white: #ffffff;
  --lyvo-border: #d9cfbe;
  --lyvo-error: #8a352d;
  --lyvo-success: #2c6a48;
  --lyvo-shadow: 0 18px 50px rgba(3, 45, 34, 0.1);
  --lyvo-radius: 4px;
  --lyvo-shell: 1380px;
  --lyvo-serif: "Cormorant Garamond", Georgia, serif;
  --lyvo-sans: "DM Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lyvo-site {
  margin: 0;
  background: var(--lyvo-ivory);
  color: var(--lyvo-ink);
  font-family: var(--lyvo-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.lyvo-site.admin-bar .lyvo-header {
  top: 32px;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--lyvo-forest);
  font-family: var(--lyvo-serif);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}

h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1em;
}

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

.lyvo-skip-link:focus {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: var(--lyvo-white);
  color: var(--lyvo-forest);
  box-shadow: var(--lyvo-shadow);
}

.lyvo-shell {
  width: min(calc(100% - 48px), var(--lyvo-shell));
  margin-inline: auto;
}

.lyvo-page {
  min-height: 100vh;
  overflow: clip;
}

.lyvo-eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
  color: var(--lyvo-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.lyvo-eyebrow::after {
  content: "";
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, var(--lyvo-gold), transparent);
}

.lyvo-lead {
  max-width: 640px;
  color: var(--lyvo-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.lyvo-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.lyvo-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wp-element-button,
.wc-block-components-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid var(--lyvo-forest) !important;
  border-radius: var(--lyvo-radius) !important;
  background: var(--lyvo-forest) !important;
  color: var(--lyvo-white) !important;
  font-family: var(--lyvo-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lyvo-button:hover,
.lyvo-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover {
  background: var(--lyvo-forest-deep) !important;
  color: var(--lyvo-white) !important;
  transform: translateY(-1px);
}

.lyvo-button--outline {
  background: transparent !important;
  color: var(--lyvo-forest) !important;
}

.lyvo-button--outline:hover,
.lyvo-button--outline:focus-visible {
  background: var(--lyvo-forest) !important;
  color: var(--lyvo-white) !important;
}

.lyvo-button--light-outline {
  border-color: rgba(255, 255, 255, 0.75) !important;
  background: transparent !important;
  color: var(--lyvo-white) !important;
}

.lyvo-text-link,
.lyvo-product-details {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-bottom: 1px solid currentColor;
  color: var(--lyvo-gold);
  font-size: 0.92rem;
  line-height: 1.4;
}

.lyvo-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lyvo-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Announcement and header */
.lyvo-announcement {
  position: relative;
  z-index: 30;
  background: var(--lyvo-forest-deep);
  color: var(--lyvo-white);
  font-size: 0.88rem;
}

.lyvo-announcement__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.lyvo-announcement i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lyvo-gold-soft);
}

.lyvo-header {
  position: sticky;
  z-index: 25;
  top: 0;
  border-bottom: 1px solid var(--lyvo-border);
  background: rgba(248, 245, 238, 0.96);
  backdrop-filter: blur(14px);
}

.lyvo-header__inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
}

.lyvo-logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.lyvo-custom-logo {
  width: auto;
  max-height: 54px;
}

.lyvo-wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--lyvo-forest);
  font-family: var(--lyvo-sans);
  font-size: 2.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}

.lyvo-wordmark__letters {
  position: relative;
  z-index: 1;
}

.lyvo-wordmark__o {
  position: relative;
  display: inline-block;
  margin-left: -0.01em;
}

.lyvo-wordmark__o::before,
.lyvo-wordmark__o::after {
  content: "";
  position: absolute;
  top: -0.13em;
  width: 0.2em;
  height: 0.1em;
  border: 1.5px solid currentColor;
  border-radius: 100% 0 100% 0;
}

.lyvo-wordmark__o::before {
  left: 0.15em;
  transform: rotate(25deg);
}

.lyvo-wordmark__o::after {
  right: 0.03em;
  transform: rotate(-18deg) scaleX(-1);
}

.lyvo-wordmark--light {
  color: var(--lyvo-ivory);
}

.lyvo-primary-nav {
  justify-self: center;
}

.lyvo-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.lyvo-menu a {
  position: relative;
  display: block;
  padding: 28px 0 24px;
  color: #182b25;
  font-size: 0.98rem;
}

.lyvo-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--lyvo-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.lyvo-menu a:hover::after,
.lyvo-menu .current-menu-item > a::after,
.lyvo-menu .current_page_item > a::after,
.lyvo-menu .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.lyvo-menu .current-menu-item > a,
.lyvo-menu .current_page_item > a {
  color: var(--lyvo-gold);
}

.lyvo-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.lyvo-icon-button {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #132820;
  cursor: pointer;
}

.lyvo-icon-button .lyvo-icon {
  width: 25px;
  height: 25px;
}

.lyvo-cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: inline-flex;
  min-width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  padding-inline: 3px;
  border-radius: 999px;
  background: var(--lyvo-gold);
  color: var(--lyvo-white);
  font-size: 0.65rem;
  line-height: 1;
}

.lyvo-menu-toggle {
  display: none;
}

.lyvo-search-panel {
  border-top: 1px solid var(--lyvo-border);
  background: var(--lyvo-ivory);
}

.lyvo-search-panel__inner {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: 230px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 30px;
}

.lyvo-search-panel__inner > p {
  margin: 0;
  font-family: var(--lyvo-serif);
  font-size: 2.2rem;
}

.lyvo-search-form {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}

.lyvo-search-form__icon {
  position: absolute;
  z-index: 1;
  left: 18px;
  display: inline-flex;
  color: var(--lyvo-forest);
}

.lyvo-search-form__icon .lyvo-icon {
  width: 22px;
  height: 22px;
}

.lyvo-search-form input[type="search"] {
  width: 100%;
  min-height: 54px;
  padding: 12px 18px 12px 54px;
  border: 1px solid var(--lyvo-gold);
  border-radius: var(--lyvo-radius);
  outline: none;
  background: var(--lyvo-white);
  color: var(--lyvo-ink);
}

.lyvo-search-form input[type="search"]:focus {
  box-shadow: 0 0 0 3px rgba(184, 137, 62, 0.18);
}

/* Home hero */
.lyvo-hero {
  background: var(--lyvo-ivory);
}

.lyvo-hero__grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: 0.78fr 1.22fr;
}

.lyvo-hero__content {
  display: flex;
  max-width: 660px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 50px 70px 0;
}

.lyvo-hero__content h1 {
  max-width: 650px;
  font-size: clamp(3.5rem, 5.4vw, 5.8rem);
}

.lyvo-hero-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 35%, rgba(71, 118, 87, 0.3), transparent 28%),
    linear-gradient(145deg, #102f25, #031d16 75%);
}

.lyvo-hero-stage::before,
.lyvo-hero-stage::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 470px;
  opacity: 0.5;
  background: radial-gradient(ellipse at 20% 50%, #315f50 0 35%, transparent 37%);
  filter: blur(2px);
  transform: rotate(-25deg);
}

.lyvo-hero-stage::before {
  top: -100px;
  left: -80px;
}

.lyvo-hero-stage::after {
  right: -110px;
  bottom: -140px;
  transform: rotate(150deg);
}

.lyvo-hero-product {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 240ms ease;
}

.lyvo-hero-product:hover {
  transform: translateY(-6px);
}

.lyvo-hero-product img {
  width: auto;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.24));
}

.lyvo-hero-product--1 {
  bottom: 70px;
  left: 10%;
  width: 31%;
}

.lyvo-hero-product--2 {
  bottom: 145px;
  left: 36%;
  width: 31%;
}

.lyvo-hero-product--3 {
  right: 6%;
  bottom: 60px;
  width: 31%;
}

.lyvo-stone {
  position: absolute;
  z-index: 2;
  border-radius: 8px 8px 14px 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 30%),
    #cbbd9f;
  box-shadow: inset -15px -12px 22px rgba(86, 68, 44, 0.18), 0 20px 25px rgba(0, 0, 0, 0.25);
}

.lyvo-stone--one {
  bottom: 35px;
  left: 6%;
  width: 35%;
  height: 95px;
}

.lyvo-stone--two {
  bottom: 35px;
  left: 36%;
  width: 34%;
  height: 175px;
}

.lyvo-stone--three {
  right: 3%;
  bottom: 35px;
  width: 31%;
  height: 80px;
}

.lyvo-feature-strip,
.lyvo-global-trust,
.lyvo-purchase-info {
  border-top: 1px solid var(--lyvo-border);
  border-bottom: 1px solid var(--lyvo-border);
  background: var(--lyvo-ivory);
}

.lyvo-feature-strip__grid,
.lyvo-global-trust__grid,
.lyvo-purchase-info__grid {
  display: grid;
  min-height: 78px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.lyvo-feature-strip__grid > div,
.lyvo-global-trust__grid > div,
.lyvo-purchase-info__grid > div {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--lyvo-border);
}

.lyvo-feature-strip__grid > div:last-child,
.lyvo-global-trust__grid > div:last-child,
.lyvo-purchase-info__grid > div:last-child {
  border-right: 0;
}

.lyvo-feature-strip .lyvo-icon,
.lyvo-global-trust .lyvo-icon,
.lyvo-purchase-info .lyvo-icon {
  color: var(--lyvo-gold);
}

.lyvo-section {
  padding: 88px 0;
}

.lyvo-section--compact {
  padding: 62px 0;
}

.lyvo-section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.lyvo-section-heading h2 {
  margin-bottom: 10px;
}

.lyvo-section-heading .lyvo-eyebrow {
  justify-content: center;
}

.lyvo-section-heading .lyvo-eyebrow::after {
  display: none;
}

.lyvo-section-heading--row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.lyvo-section-heading--row .lyvo-eyebrow {
  justify-content: flex-start;
}

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

.lyvo-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--lyvo-border);
  border-radius: var(--lyvo-radius);
  background: rgba(255, 255, 255, 0.45);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.lyvo-product-card:hover {
  box-shadow: var(--lyvo-shadow);
  transform: translateY(-3px);
}

.lyvo-product-card__image {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent);
}

.lyvo-product-card__image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.lyvo-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
  border-top: 1px solid rgba(217, 207, 190, 0.8);
}

.lyvo-product-card__brand {
  margin: 0 0 3px;
  color: var(--lyvo-gold);
  font-size: 0.78rem;
}

.lyvo-product-card h3 {
  margin-bottom: 10px;
  font-family: var(--lyvo-serif);
  font-size: 1.45rem;
}

.lyvo-product-card__price {
  margin-top: auto;
  color: var(--lyvo-forest);
  font-size: 1.35rem;
  font-weight: 600;
}

.lyvo-product-card__price del {
  margin-right: 8px;
  color: var(--lyvo-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

.lyvo-product-card__actions {
  display: grid;
  margin-top: 16px;
  gap: 12px;
}

.lyvo-product-card__actions .lyvo-button {
  width: 100%;
}

.lyvo-product-card__actions .lyvo-text-link {
  justify-self: center;
}

.lyvo-objective-preview {
  padding-top: 76px;
  border-top: 1px solid var(--lyvo-border);
  background: #f3eee5;
}

.lyvo-objective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lyvo-objective-grid--compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--lyvo-border);
  background: var(--lyvo-ivory);
}

.lyvo-objective-chip {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 14px;
  border-right: 1px solid var(--lyvo-border);
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.lyvo-objective-chip:last-child {
  border-right: 0;
}

.lyvo-objective-chip .lyvo-icon {
  width: 38px;
  height: 38px;
  color: var(--lyvo-gold);
}

.lyvo-objective-chip:hover {
  background: var(--lyvo-forest);
  color: var(--lyvo-white);
}

.lyvo-purchase-info {
  border-bottom: 0;
}

/* Editorial pages */
.lyvo-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--lyvo-muted);
  font-size: 0.84rem;
}

.lyvo-breadcrumbs a:hover {
  color: var(--lyvo-gold);
}

.lyvo-editorial-hero {
  border-bottom: 1px solid var(--lyvo-border);
}

.lyvo-editorial-hero__grid {
  display: grid;
  min-height: 480px;
  grid-template-columns: 0.82fr 1.18fr;
}

.lyvo-editorial-hero__grid > div:first-child {
  display: flex;
  max-width: 670px;
  flex-direction: column;
  justify-content: center;
  padding: 55px 55px 55px 0;
}

.lyvo-editorial-hero h1 {
  font-size: clamp(3.4rem, 5vw, 5.3rem);
}

.lyvo-editorial-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at 63% 35%, rgba(251, 231, 174, 0.5), transparent 22%),
    linear-gradient(135deg, #164d37, #062b20);
}

.lyvo-editorial-photo::before,
.lyvo-editorial-photo::after {
  content: "";
  position: absolute;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #4d7c5c, #0e3529);
  box-shadow: inset -18px -10px 30px rgba(0, 0, 0, 0.25);
}

.lyvo-editorial-photo::before {
  width: 350px;
  height: 190px;
  right: -40px;
  top: 45px;
  transform: rotate(-14deg);
}

.lyvo-editorial-photo::after {
  width: 420px;
  height: 230px;
  bottom: -60px;
  left: -50px;
  transform: rotate(25deg);
}

.lyvo-editorial-photo span {
  position: absolute;
  z-index: 2;
  right: 18%;
  bottom: 0;
  width: 180px;
  height: 360px;
  border-radius: 90px 90px 18px 18px;
  background: linear-gradient(90deg, #ddc8ab, #eee2cf 55%, #b59673);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.lyvo-editorial-photo span::before {
  content: "";
  position: absolute;
  left: 38px;
  top: -55px;
  width: 105px;
  height: 115px;
  border-radius: 50%;
  background: #9a6d4d;
  box-shadow: 0 -25px 0 8px #4f3326;
}

.lyvo-objective-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--lyvo-radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #345d45, #082f23);
  color: var(--lyvo-white);
}

.lyvo-objective-card:nth-child(2) {
  background: linear-gradient(135deg, #26384b, #0b1925);
}

.lyvo-objective-card:nth-child(3) {
  background: linear-gradient(135deg, #4d6d49, #132d22);
}

.lyvo-objective-card:nth-child(4) {
  background: linear-gradient(135deg, #446a42, #162f24);
}

.lyvo-objective-card:nth-child(5) {
  background: linear-gradient(135deg, #85755d, #394532);
}

.lyvo-objective-card:nth-child(6) {
  background: linear-gradient(135deg, #526d47, #152e22);
}

.lyvo-objective-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 210px;
  height: 140px;
  border-radius: 100% 0 100% 0;
  background: rgba(102, 145, 93, 0.45);
  transform: rotate(-20deg);
  transition: transform 220ms ease;
}

.lyvo-objective-card:hover::after {
  transform: rotate(-12deg) scale(1.08);
}

.lyvo-objective-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 26, 18, 0.82), rgba(1, 26, 18, 0.12));
}

.lyvo-objective-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: start;
  padding: 34px;
}

.lyvo-objective-card .lyvo-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--lyvo-gold-soft);
}

.lyvo-objective-card h3 {
  margin-bottom: 14px;
  color: var(--lyvo-white);
  font-size: 1.7rem;
}

.lyvo-objective-card span {
  color: var(--lyvo-gold-soft);
  font-size: 0.9rem;
}

.lyvo-package-scene {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(145deg, #d8c29f, #9d845d);
}

.lyvo-package-scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(61, 42, 23, 0.22));
}

.lyvo-package-scene__box {
  position: absolute;
  z-index: 2;
  left: 18%;
  bottom: 70px;
  display: flex;
  width: 58%;
  height: 240px;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 35px;
  border: 7px solid #0a3b2d;
  background: #093426;
  box-shadow: 0 25px 40px rgba(51, 37, 21, 0.35);
  transform: perspective(800px) rotateX(4deg) rotateY(-8deg);
}

.lyvo-package-scene__product {
  position: absolute;
  z-index: 3;
  left: 41%;
  bottom: 170px;
  width: 24%;
}

.lyvo-package-scene__product img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 16px 15px rgba(0, 0, 0, 0.3));
}

.lyvo-package-scene__leaf {
  position: absolute;
  z-index: 4;
  right: 16%;
  bottom: 150px;
  width: 140px;
  height: 70px;
  border-radius: 100% 0 100% 0;
  background: #55784f;
  transform: rotate(-24deg);
}

.lyvo-about-intro__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.lyvo-about-intro__grid > div:first-child {
  padding-right: 60px;
  border-right: 1px solid var(--lyvo-border);
}

.lyvo-about-intro h2 {
  font-size: 2.7rem;
}

.lyvo-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.lyvo-values-grid > div {
  padding: 10px 28px;
  border-right: 1px solid var(--lyvo-border);
  text-align: center;
}

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

.lyvo-values-grid .lyvo-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--lyvo-gold);
}

.lyvo-values-grid h3 {
  margin-bottom: 5px;
}

.lyvo-values-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.lyvo-statement-band {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background: var(--lyvo-forest-deep);
  color: var(--lyvo-white);
}

.lyvo-statement-band::before,
.lyvo-statement-band::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 160px;
  border-radius: 100% 0 100% 0;
  background: rgba(61, 103, 75, 0.35);
}

.lyvo-statement-band::before {
  left: -70px;
  bottom: -80px;
}

.lyvo-statement-band::after {
  right: -60px;
  top: -90px;
}

.lyvo-statement-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.lyvo-statement-band h2 {
  margin-bottom: 5px;
  color: var(--lyvo-white);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.lyvo-statement-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* General content and forms */
.lyvo-content-area {
  padding: 60px 0 90px;
}

.lyvo-content-shell {
  max-width: 1080px;
}

.lyvo-content-shell--narrow {
  max-width: 780px;
}

.lyvo-page-heading {
  margin-bottom: 50px;
}

.lyvo-page-heading h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.lyvo-page-heading--center {
  text-align: center;
}

.lyvo-page-heading--center .lyvo-eyebrow {
  justify-content: center;
}

.lyvo-page-heading--center .lyvo-eyebrow::after {
  display: none;
}

.lyvo-entry-content {
  font-size: 1.05rem;
}

.lyvo-entry-content > * + * {
  margin-top: 1.2em;
}

.lyvo-entry-content h2 {
  margin-top: 1.4em;
  font-size: 2.3rem;
}

.lyvo-entry-content ul,
.lyvo-entry-content ol {
  padding-left: 1.3em;
}

.lyvo-editor-notice,
.lyvo-empty-state {
  padding: 40px;
  border: 1px solid var(--lyvo-border);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.lyvo-empty-state h2 {
  font-size: 2.4rem;
}

.lyvo-form-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--lyvo-border);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--lyvo-shadow);
}

.lyvo-help-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.lyvo-support-scope {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--lyvo-border);
}

.lyvo-support-scope h2 {
  font-size: 2rem;
}

.lyvo-support-scope ul {
  padding: 0;
  list-style: none;
}

.lyvo-support-scope li {
  position: relative;
  padding: 8px 0 8px 24px;
}

.lyvo-support-scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lyvo-gold);
}

.lyvo-help-form {
  display: grid;
  gap: 20px;
}

.lyvo-help-form label,
.lyvo-price-filter label {
  display: grid;
  gap: 7px;
}

.lyvo-help-form label > span,
.lyvo-price-filter label > span {
  font-size: 0.88rem;
  font-weight: 500;
}

.lyvo-help-form input,
.lyvo-help-form select,
.lyvo-help-form textarea,
.lyvo-price-filter input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--lyvo-border) !important;
  border-radius: var(--lyvo-radius) !important;
  outline: none;
  background: var(--lyvo-white) !important;
  color: var(--lyvo-ink) !important;
}

.lyvo-help-form textarea {
  resize: vertical;
}

.lyvo-form-message {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 3px solid currentColor;
  background: rgba(255, 255, 255, 0.7);
}

.lyvo-form-message--success {
  color: var(--lyvo-success);
}

.lyvo-form-message--error {
  color: var(--lyvo-error);
}

.lyvo-faq-layout {
  display: grid;
  gap: 50px;
}

.lyvo-faq-section {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}

.lyvo-faq-section h2 {
  position: sticky;
  top: 120px;
  font-size: 2.4rem;
}

.lyvo-faq-item {
  grid-column: 2;
  border-top: 1px solid var(--lyvo-border);
}

.lyvo-faq-item:last-child {
  border-bottom: 1px solid var(--lyvo-border);
}

.lyvo-faq-item summary {
  position: relative;
  padding: 22px 45px 22px 0;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.lyvo-faq-item summary::-webkit-details-marker {
  display: none;
}

.lyvo-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--lyvo-gold);
  font-family: var(--lyvo-serif);
  font-size: 1.6rem;
}

.lyvo-faq-item[open] summary::after {
  content: "−";
}

.lyvo-faq-item p {
  padding: 0 50px 22px 0;
  color: var(--lyvo-muted);
}

.lyvo-error-page {
  display: grid;
  min-height: 620px;
  place-items: center;
  text-align: center;
}

.lyvo-error-page__inner {
  max-width: 720px;
}

.lyvo-error-page .lyvo-eyebrow {
  justify-content: center;
}

.lyvo-error-page .lyvo-eyebrow::after {
  display: none;
}

.lyvo-error-page .lyvo-button-row {
  justify-content: center;
}

/* Search */
.lyvo-search-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 55px;
  border-bottom: 1px solid var(--lyvo-border);
}

.lyvo-search-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 430px;
  height: 280px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, #4c7353, #0b3529);
  opacity: 0.85;
  transform: rotate(-16deg);
}

.lyvo-search-hero .lyvo-shell {
  position: relative;
  z-index: 2;
}

.lyvo-search-hero h1 {
  font-size: clamp(3.4rem, 5vw, 5rem);
}

.lyvo-search-hero .lyvo-search-form {
  max-width: 900px;
}

.lyvo-search-results {
  padding: 36px 0 80px;
}

.lyvo-search-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 30px;
}

.lyvo-filter-sidebar {
  padding-right: 28px;
  border-right: 1px solid var(--lyvo-border);
}

.lyvo-filter-sidebar h2 {
  font-size: 2rem;
}

.lyvo-filter-sidebar fieldset {
  display: grid;
  gap: 11px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--lyvo-border);
}

.lyvo-filter-sidebar legend {
  margin-bottom: 10px;
  font-family: var(--lyvo-serif);
  font-size: 1.4rem;
}

.lyvo-filter-sidebar fieldset:not(.lyvo-price-filter) > label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.91rem;
}

.lyvo-filter-sidebar input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--lyvo-forest);
}

.lyvo-filter-sidebar .lyvo-button {
  width: 100%;
  margin: 20px 0 14px;
}

.lyvo-price-filter {
  grid-template-columns: 1fr 1fr;
}

.lyvo-price-filter legend {
  grid-column: 1 / -1;
}

.lyvo-results-heading {
  display: flex;
  min-height: 70px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.lyvo-results-heading h2 {
  margin-bottom: 4px;
  font-size: 2.3rem;
}

.lyvo-results-heading p {
  color: var(--lyvo-muted);
}

.lyvo-sort-form select {
  min-height: 48px;
  padding: 10px 42px 10px 14px;
  border: 1px solid var(--lyvo-border);
  background: var(--lyvo-white);
  color: var(--lyvo-ink);
}

.navigation.pagination {
  margin-top: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links .page-numbers {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.nav-links .current {
  border-color: var(--lyvo-gold);
  color: var(--lyvo-gold);
}

/* WooCommerce */
.lyvo-woocommerce-main {
  padding: 45px 0 90px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 30px;
  color: var(--lyvo-muted);
  font-size: 0.84rem;
}

.woocommerce-products-header {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: -45px calc(50% - 50vw) 35px;
  padding: 60px max(24px, calc((100vw - var(--lyvo-shell)) / 2));
  border-bottom: 1px solid var(--lyvo-border);
  background: linear-gradient(90deg, var(--lyvo-ivory) 0 62%, #173f31 62% 100%);
}

.woocommerce-products-header::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -70px;
  width: 340px;
  height: 230px;
  border-radius: 100% 0 100% 0;
  background: #50765a;
  transform: rotate(-18deg);
}

.woocommerce-products-header__title {
  position: relative;
  z-index: 2;
  font-size: clamp(3.5rem, 5vw, 5.2rem);
}

.woocommerce .woocommerce-result-count {
  margin: 12px 0 0;
  color: var(--lyvo-muted);
}

.woocommerce .woocommerce-ordering select {
  min-height: 46px;
  padding: 8px 42px 8px 14px;
  border: 1px solid var(--lyvo-border);
  background: var(--lyvo-white);
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  display: flex;
  width: auto !important;
  min-width: 0;
  float: none !important;
  flex-direction: column;
  padding: 0 0 22px;
  margin: 0 !important;
  border: 1px solid var(--lyvo-border);
  background: rgba(255, 255, 255, 0.45);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 320px;
  padding: 25px;
  margin: 0;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.38);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 66px;
  padding: 20px 20px 0;
  color: var(--lyvo-forest);
  font-family: var(--lyvo-serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.woocommerce ul.products li.product .price {
  padding: 0 20px;
  margin: auto 0 14px;
  color: var(--lyvo-forest);
  font-size: 1.35rem;
  font-weight: 600;
}

.woocommerce ul.products li.product .button {
  margin: 0 20px 12px;
}

.woocommerce ul.products li.product .lyvo-product-details {
  align-self: center;
}

.woocommerce span.onsale {
  top: 14px;
  left: 14px;
  min-width: 0;
  min-height: 0;
  padding: 7px 11px;
  border-radius: 2px;
  background: var(--lyvo-gold);
  line-height: 1;
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 70px;
}

.woocommerce div.product div.images img {
  background: rgba(255, 255, 255, 0.5);
}

.woocommerce div.product .product_title {
  font-size: clamp(3rem, 4vw, 4.6rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--lyvo-forest);
  font-size: 1.7rem;
  font-weight: 600;
}

.woocommerce-product-details__short-description {
  color: var(--lyvo-muted);
  font-size: 1.04rem;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.woocommerce .quantity .qty {
  min-height: 50px;
  border: 1px solid var(--lyvo-border);
  background: var(--lyvo-white);
}

.lyvo-product-trust {
  display: grid;
  padding-top: 22px;
  border-top: 1px solid var(--lyvo-border);
  gap: 10px;
}

.lyvo-product-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.lyvo-product-trust .lyvo-icon {
  width: 22px;
  height: 22px;
  color: var(--lyvo-gold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--lyvo-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid var(--lyvo-gold);
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs .panel {
  max-width: 900px;
  padding: 30px 0;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  padding: 30px;
  border: 1px solid var(--lyvo-border);
  background: rgba(255, 255, 255, 0.45);
}

.woocommerce table.shop_table {
  border-color: var(--lyvo-border);
  border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
  border-color: var(--lyvo-border);
}

.woocommerce-checkout .lyvo-header__inner {
  grid-template-columns: 1fr auto;
}

.woocommerce-checkout .lyvo-primary-nav,
.woocommerce-checkout .lyvo-header-actions .lyvo-search-toggle,
.woocommerce-checkout .lyvo-header-actions a:not(.lyvo-cart-link) {
  display: none;
}

.woocommerce-checkout .lyvo-global-trust {
  display: none;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  padding: 28px;
  border: 1px solid var(--lyvo-border);
  background: rgba(255, 255, 255, 0.45);
}

.woocommerce-checkout #payment {
  background: var(--lyvo-cream);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--lyvo-gold);
  background: var(--lyvo-white);
}

.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--lyvo-gold);
}

/* Footer */
.lyvo-global-trust {
  border-top: 1px solid var(--lyvo-border);
}

.lyvo-footer {
  padding: 42px 0 20px;
  background: var(--lyvo-forest-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.lyvo-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 1.6fr;
  gap: 46px;
  padding-bottom: 34px;
}

.lyvo-footer h2 {
  margin-bottom: 15px;
  color: var(--lyvo-gold-soft);
  font-family: var(--lyvo-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lyvo-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.lyvo-footer li + li {
  margin-top: 5px;
}

.lyvo-footer a:hover {
  color: var(--lyvo-gold-soft);
}

.lyvo-footer__legal ul {
  columns: 2;
  column-gap: 25px;
}

.lyvo-footer__legal li {
  break-inside: avoid;
}

.lyvo-footer__bottom {
  display: grid;
  min-height: 78px;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(215, 185, 120, 0.42);
}

.lyvo-footer__logo .lyvo-wordmark {
  font-size: 2.2rem;
}

.lyvo-footer__bottom p {
  margin: 0;
  color: var(--lyvo-gold-soft);
  font-size: 0.8rem;
}

.lyvo-payment-marks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
}

.lyvo-floating-help {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 24px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--lyvo-gold-soft);
  border-radius: 999px;
  background: var(--lyvo-forest-deep);
  color: var(--lyvo-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.82rem;
}

.lyvo-floating-help .lyvo-icon {
  width: 31px;
  height: 31px;
}

/* Responsive */
@media (max-width: 1180px) {
  .lyvo-header__inner {
    grid-template-columns: 175px 1fr 175px;
  }

  .lyvo-menu {
    gap: 28px;
  }

  .lyvo-hero__grid,
  .lyvo-editorial-hero__grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .lyvo-objective-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .lyvo-objective-chip:nth-child(3) {
    border-right: 0;
  }

  .lyvo-objective-chip:nth-child(-n + 3) {
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-about-intro__grid {
    grid-template-columns: 1fr;
  }

  .lyvo-about-intro__grid > div:first-child {
    padding-right: 0;
    padding-bottom: 35px;
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
  }
}

@media (max-width: 900px) {
  body.lyvo-site.admin-bar .lyvo-header {
    top: 46px;
  }

  .lyvo-shell {
    width: min(calc(100% - 32px), var(--lyvo-shell));
  }

  .lyvo-announcement__inner {
    gap: 11px;
    font-size: 0.74rem;
  }

  .lyvo-header__inner {
    min-height: 68px;
    grid-template-columns: 1fr auto auto;
  }

  .lyvo-wordmark {
    font-size: 2.05rem;
  }

  .lyvo-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .lyvo-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 16px 22px;
    border-top: 1px solid var(--lyvo-border);
    background: var(--lyvo-ivory);
    box-shadow: var(--lyvo-shadow);
  }

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

  .lyvo-menu {
    display: grid;
    gap: 0;
  }

  .lyvo-menu a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-menu a::after {
    display: none;
  }

  .lyvo-header-actions {
    gap: 4px;
  }

  .lyvo-header-actions > a[aria-label="Mi cuenta"] {
    display: none;
  }

  .lyvo-search-panel__inner {
    min-height: 170px;
    grid-template-columns: 1fr 42px;
    gap: 12px;
  }

  .lyvo-search-panel__inner > p {
    grid-column: 1 / -1;
    padding-top: 25px;
  }

  .lyvo-search-panel__inner .lyvo-search-form {
    grid-column: 1;
  }

  .lyvo-hero__grid,
  .lyvo-editorial-hero__grid {
    grid-template-columns: 1fr;
  }

  .lyvo-hero__content,
  .lyvo-editorial-hero__grid > div:first-child {
    max-width: none;
    padding: 65px 0;
  }

  .lyvo-hero-stage,
  .lyvo-editorial-photo,
  .lyvo-package-scene {
    min-height: 480px;
  }

  .lyvo-feature-strip__grid,
  .lyvo-global-trust__grid,
  .lyvo-purchase-info__grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .lyvo-feature-strip__grid > div,
  .lyvo-global-trust__grid > div,
  .lyvo-purchase-info__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-feature-strip__grid > div:last-child,
  .lyvo-global-trust__grid > div:last-child,
  .lyvo-purchase-info__grid > div:last-child {
    border-bottom: 0;
  }

  .lyvo-product-grid,
  .woocommerce ul.products,
  .lyvo-objective-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lyvo-section-heading--row,
  .lyvo-statement-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .lyvo-values-grid {
    grid-template-columns: 1fr;
  }

  .lyvo-values-grid > div {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-values-grid > div:last-child {
    border-bottom: 0;
  }

  .lyvo-help-layout,
  .lyvo-search-layout {
    grid-template-columns: 1fr;
  }

  .lyvo-filter-sidebar {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
  }

  .lyvo-filter-sidebar form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .lyvo-filter-sidebar h2,
  .lyvo-filter-sidebar .lyvo-button,
  .lyvo-filter-sidebar .lyvo-text-link {
    grid-column: 1 / -1;
  }

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

  .lyvo-faq-section h2 {
    position: static;
  }

  .lyvo-faq-item {
    grid-column: 1;
  }

  .lyvo-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lyvo-footer__bottom {
    grid-template-columns: 140px 1fr;
  }

  .lyvo-payment-marks {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 18px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .lyvo-announcement__inner span:nth-of-type(2),
  .lyvo-announcement__inner i:nth-of-type(2) {
    display: none;
  }

  .lyvo-header-actions .lyvo-search-toggle {
    display: none;
  }

  .lyvo-button-row,
  .lyvo-button-row .lyvo-button {
    width: 100%;
  }

  .lyvo-button-row {
    display: grid;
  }

  .lyvo-search-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lyvo-search-form .lyvo-button {
    width: 100%;
  }

  .lyvo-hero-stage {
    min-height: 380px;
  }

  .lyvo-hero-product img {
    max-height: 210px;
  }

  .lyvo-hero-product--1 {
    bottom: 52px;
    left: 4%;
    width: 36%;
  }

  .lyvo-hero-product--2 {
    bottom: 95px;
    left: 32%;
    width: 36%;
  }

  .lyvo-hero-product--3 {
    right: 2%;
    bottom: 50px;
    width: 36%;
  }

  .lyvo-stone--one,
  .lyvo-stone--two,
  .lyvo-stone--three {
    bottom: 28px;
  }

  .lyvo-product-grid,
  .woocommerce ul.products,
  .lyvo-objective-grid,
  .lyvo-objective-grid--compact {
    grid-template-columns: 1fr;
  }

  .lyvo-objective-chip {
    min-height: 100px;
    flex-direction: row;
    justify-content: flex-start;
    padding-inline: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--lyvo-border);
    text-align: left;
  }

  .lyvo-objective-chip:last-child {
    border-bottom: 0;
  }

  .lyvo-objective-chip:nth-child(3) {
    border-right: 0;
  }

  .lyvo-objective-card {
    min-height: 180px;
  }

  .lyvo-product-card__image {
    min-height: 250px;
  }

  .lyvo-product-card__image img {
    height: 220px;
  }

  .lyvo-filter-sidebar form {
    grid-template-columns: 1fr;
  }

  .lyvo-filter-sidebar h2,
  .lyvo-filter-sidebar .lyvo-button,
  .lyvo-filter-sidebar .lyvo-text-link {
    grid-column: 1;
  }

  .lyvo-results-heading h2 {
    font-size: 1.9rem;
  }

  .lyvo-about-intro__grid {
    gap: 30px;
  }

  .lyvo-package-scene {
    min-height: 370px;
  }

  .lyvo-package-scene__box {
    left: 9%;
    width: 78%;
    height: 190px;
  }

  .lyvo-package-scene__product {
    left: 39%;
    bottom: 150px;
    width: 28%;
  }

  .lyvo-footer__grid {
    grid-template-columns: 1fr;
  }

  .lyvo-footer__legal ul {
    columns: 1;
  }

  .lyvo-footer__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
  }

  .lyvo-payment-marks {
    flex-wrap: wrap;
  }

  .lyvo-floating-help {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    min-height: 0;
    justify-content: center;
    padding: 0;
  }

  .lyvo-floating-help span:not(.lyvo-icon) {
    display: none;
  }

  .woocommerce div.product form.cart {
    flex-wrap: wrap;
  }
}

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