.zh-home-v7,
  .zh-home-v7 * {
    box-sizing: border-box;
  }

  .zh-home-v7 {
    --zh-green: #6da317;
    --zh-green-dark: #4f8412;
    --zh-green-soft: #eef7df;
    --zh-text: #2E2322;
    --zh-muted: #746b66;
    --zh-line: #ece7e2;
    --zh-cream: #F7F1EB;
    --zh-white: #ffffff;
    --zh-shadow: 0 14px 34px rgba(46, 35, 34, 0.08);
    --zh-shadow-soft: 0 8px 22px rgba(46, 35, 34, 0.06);
    font-family: "Jost", Arial, sans-serif;
    color: var(--zh-text);
    background: #ffffff;
    overflow: hidden;
  }

  .zh-home-v7 a {
    color: inherit;
    text-decoration: none;
  }

  .zh-home-v7 img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .zhv-container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
  }

  .zhv-section {
    padding: 42px 0;
    background: #ffffff;
  }

  .zhv-section--tight {
    padding-top: 26px;
  }

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

  .zhv-section-title {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--zh-text);
  }

  .zhv-section-desc {
    max-width: 560px;
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--zh-muted);
  }

  .zhv-button,
  .zhv-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 12px 23px;
    border: 1px solid var(--zh-green);
    background: var(--zh-green);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
  }

  .zhv-button:hover,
  .zhv-card-button:hover {
    background: var(--zh-green-dark);
    border-color: var(--zh-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(109, 163, 23, .20);
  }

  .zhv-button--light {
    background: #ffffff;
    color: var(--zh-green-dark) !important;
    border-color: rgba(109, 163, 23, .25);
  }

  .zhv-button--light:hover {
    background: var(--zh-green);
    color: #ffffff !important;
  }

  .zhv-hero {
    padding: 20px 0 28px;
    background: #ffffff;
  }

  .zhv-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.86fr) minmax(300px, .74fr);
    gap: 18px;
    align-items: stretch;
  }

  .zhv-hero-main {
    position: relative;
    min-height: 476px;
    border-radius: 24px;
    overflow: hidden;
    background: #f7f1eb;
    box-shadow: var(--zh-shadow);
  }

  .zhv-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.018);
    transition: opacity .7s ease, transform 1.1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .zhv-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

  .zhv-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.62) 42%, rgba(255,255,255,.08) 78%);
    pointer-events: none;
  }

  .zhv-hero-slide--dark::after {
    background: linear-gradient(90deg, rgba(46,35,34,.70) 0%, rgba(46,35,34,.34) 42%, rgba(46,35,34,.10) 84%);
  }

  .zhv-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 560px;
    padding: 54px;
  }

  .zhv-hero-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--zh-green-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
  }

  .zhv-hero-title {
    margin: 0;
    font-size: clamp(38px, 5.2vw, 30px);
    line-height: .98;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: var(--zh-text);
  }

  .zhv-hero-title strong {
    color: var(--zh-green);
    font-weight: 800;
  }

  .zhv-hero-text {
    max-width: 500px;
    margin: 18px 0 26px;
    font-size: 18px;
    line-height: 1.48;
    color: #504743;
  }

  .zhv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .zhv-hero-slide--dark .zhv-hero-title,
  .zhv-hero-slide--dark .zhv-hero-text {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,.26);
  }

  .zhv-hero-slide--dark .zhv-hero-kicker {
    background: rgba(255,255,255,.92);
  }

  .zhv-hero-dots {
    position: absolute;
    left: 52px;
    bottom: 26px;
    z-index: 4;
    display: flex;
    gap: 9px;
  }

  .zhv-hero-dot {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: rgba(46,35,34,.18);
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .zhv-hero-dot.is-active {
    background: var(--zh-green);
  }

  .zhv-side-promos {
    display: grid;
    gap: 18px;
  }

  .zhv-promo-card {
    position: relative;
    min-height: 229px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--zh-cream);
    box-shadow: var(--zh-shadow-soft);
    isolation: isolate;
  }

  .zhv-promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    transform: scale(1.01);
    transition: transform .35s ease;
  }

  .zhv-promo-card--contain img {
    object-fit: contain;
    padding: 14px 10px 14px 34%;
    background: #ffffff;
  }

  .zhv-promo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.68) 47%, rgba(255,255,255,.12) 100%);
    z-index: -1;
  }

  .zhv-promo-card:hover img {
    transform: scale(1.045);
  }

  .zhv-promo-content {
    position: relative;
    z-index: 2;
    width: 58%;
    padding: 28px 26px;
  }

  .zhv-promo-content span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--zh-green-dark);
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .zhv-promo-content h3 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .zhv-promo-content p {
    margin: 0 0 17px;
    font-size: 14px;
    line-height: 1.4;
    color: #5e5651;
  }

  .zhv-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .zhv-cat-card {
    display: flex;
    flex-direction: column;
    min-height: 222px;
    border: 1px solid var(--zh-line);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(46, 35, 34, .04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .zhv-cat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(109,163,23,.30);
    box-shadow: var(--zh-shadow-soft);
  }

  .zhv-cat-media {
    height: 132px;
    background: #faf7f3;
    overflow: hidden;
  }

  .zhv-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 13px;
    transition: transform .25s ease;
  }

  .zhv-cat-card:hover .zhv-cat-media img {
    transform: scale(1.06);
  }

  .zhv-cat-content {
    padding: 15px 16px 17px;
  }

  .zhv-cat-content h3 {
    margin: 0 0 5px;
    font-size: 17px;
    line-height: 1.16;
    font-weight: 750;
    letter-spacing: -0.025em;
  }

  .zhv-cat-content span {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    color: var(--zh-muted);
  }

  .zhv-benefits {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .zhv-benefit {
    min-height: 142px;
    padding: 22px 18px;
    border: 1px solid var(--zh-line);
    border-radius: 18px;
    background: #ffffff;
  }

  .zhv-benefit b {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.16;
    color: var(--zh-text);
  }

  .zhv-benefit span {
    display: block;
    font-size: 13px;
    line-height: 1.38;
    color: var(--zh-muted);
  }

  .zhv-rail {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .zhv-rail-track {
    display: flex;
    gap: 18px;
    will-change: transform;
    transition: transform .58s ease;
  }

  .zhv-rail::-webkit-scrollbar,
  .zhv-rail-track::-webkit-scrollbar {
    display: none;
  }

  .zhv-product-card {
    flex: 0 0 242px;
    min-width: 0;
    border: 1px solid var(--zh-line);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(46, 35, 34, .04);
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .zhv-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(109,163,23,.26);
    box-shadow: var(--zh-shadow-soft);
  }

  .zhv-product-media {
    position: relative;
    height: 242px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .zhv-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform .25s ease;
  }

  .zhv-product-card:hover .zhv-product-media img {
    transform: scale(1.055);
  }

  .zhv-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--zh-green-dark);
    border: 1px solid rgba(109,163,23,.25);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
  }

  .zhv-product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 17px;
  }

  .zhv-product-meta {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    color: var(--zh-green-dark);
    font-weight: 700;
  }

  .zhv-product-title {
    min-height: 46px;
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--zh-text);
    letter-spacing: -0.01em;
  }

  .zhv-product-brand {
    display: block;
    margin-bottom: 11px;
    font-size: 12px;
    color: var(--zh-muted);
  }

  .zhv-price {
    margin-top: auto;
    font-size: 16px;
    font-weight: 800;
    color: var(--zh-text);
  }

  .zhv-price small {
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-muted);
  }

  .zhv-product-body .zhv-card-button {
    width: 100%;
    margin-top: 15px;
    min-height: 40px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .zhv-campaign {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: 20px;
    align-items: stretch;
  }

  .zhv-spotlight {
    position: relative;
    min-height: 560px;
    border: 1px solid var(--zh-line);
    border-radius: 26px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--zh-shadow-soft);
    isolation: isolate;
  }

  .zhv-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--spotlight-image);
    background-repeat: no-repeat;
    background-size: min(64%, 470px) auto;
    background-position: right 42px center;
    opacity: 1;
    z-index: -2;
    transition: background-image .25s ease;
  }

  .zhv-spotlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.52) 70%, rgba(255,255,255,.22) 100%);
    z-index: -1;
  }

  .zhv-spotlight-copy {
    position: relative;
    z-index: 2;
    max-width: 460px;
    padding: 54px;
  }

  .zhv-spotlight-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(109,163,23,.22);
    color: var(--zh-green-dark);
    background: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .zhv-spotlight-title {
    margin: 0;
    font-size: clamp(32px, 4.3vw, 55px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
  }

  .zhv-spotlight-desc {
    margin: 16px 0 18px;
    font-size: 17px;
    line-height: 1.48;
    color: var(--zh-muted);
  }

  .zhv-spotlight-price {
    display: block;
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 800;
    color: var(--zh-text);
  }

  .zhv-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .zhv-focus-card {
    position: relative;
    border: 1px solid var(--zh-line);
    border-radius: 20px;
    padding: 12px;
    background: #ffffff;
    cursor: pointer;
    text-align: left;
    color: inherit;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 138px;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  }

  .zhv-focus-card:hover,
  .zhv-focus-card.is-active {
    border-color: rgba(109,163,23,.42);
    box-shadow: var(--zh-shadow-soft);
    transform: translateY(-2px);
  }

  .zhv-focus-card img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    padding: 6px;
    background: #ffffff;
    border-radius: 15px;
  }

  .zhv-focus-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--zh-green-dark);
    font-size: 11px;
    line-height: 1.15;
    font-weight: 800;
  }

  .zhv-focus-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.22;
    color: var(--zh-text);
  }

  .zhv-focus-card small {
    display: block;
    font-size: 12px;
    color: var(--zh-muted);
    font-weight: 700;
  }

  .zhv-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 30px;
    align-items: center;
    border: 1px solid var(--zh-line);
    border-radius: 26px;
    padding: 38px;
    background: #ffffff;
    box-shadow: var(--zh-shadow-soft);
  }

  .zhv-newsletter h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .zhv-newsletter p {
    margin: 0;
    color: var(--zh-muted);
    font-size: 16px;
    line-height: 1.5;
  }

  .zhv-newsletter-form {
    display: flex;
    gap: 10px;
  }

  .zhv-newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 50px;
    border: 1px solid var(--zh-line);
    border-radius: 999px;
    padding: 0 20px;
    font: inherit;
    background: #ffffff;
    color: var(--zh-text);
  }

  .zhv-brand-grid,
  .zhv-blog-grid {
    display: grid;
    gap: 16px;
  }

  .zhv-brand-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .zhv-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 132px;
    border: 1px solid var(--zh-line);
    border-radius: 20px;
    background: #ffffff;
    padding: 18px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .zhv-brand-card:hover {
    transform: translateY(-2px);
    border-color: rgba(109,163,23,.24);
    box-shadow: var(--zh-shadow-soft);
  }

  .zhv-brand-card img {
    max-width: 130px;
    max-height: 76px;
    object-fit: contain;
  }

  .zhv-brand-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: var(--zh-green-soft);
    color: var(--zh-green-dark);
    font-weight: 800;
    font-size: 24px;
  }

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

  .zhv-blog-card {
    border: 1px solid var(--zh-line);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .zhv-blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(109,163,23,.24);
    box-shadow: var(--zh-shadow-soft);
  }

  .zhv-blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .zhv-blog-body {
    padding: 20px;
  }

  .zhv-blog-body span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--zh-green-dark);
    text-transform: uppercase;
    letter-spacing: .05em;
  }

  .zhv-blog-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .zhv-blog-body p {
    margin: 0;
    color: var(--zh-muted);
    font-size: 14px;
    line-height: 1.45;
  }

  @media (max-width: 1180px) {
    .zhv-hero-grid,
    .zhv-campaign {
      grid-template-columns: 1fr;
    }

    .zhv-side-promos {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zhv-cat-grid,
    .zhv-benefits,
    .zhv-brand-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 860px) {
    .zhv-container {
      width: min(100% - 24px, 1320px);
    }

    .zhv-section {
      padding: 32px 0;
    }

    .zhv-hero-main {
      min-height: 520px;
    }

    .zhv-hero-slide {
      align-items: end;
      background-position: var(--mobile-bg-position, center);
    }

    .zhv-hero-slide::after {
      background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.88) 54%, rgba(255,255,255,.98) 100%);
    }

    .zhv-hero-slide--dark::after {
      background: linear-gradient(180deg, rgba(46,35,34,.10) 0%, rgba(46,35,34,.54) 60%, rgba(46,35,34,.82) 100%);
    }

    .zhv-hero-copy,
    .zhv-spotlight-copy {
      padding: 30px;
    }

    .zhv-hero-dots {
      left: 30px;
    }

    .zhv-side-promos,
    .zhv-cat-grid,
    .zhv-benefits,
    .zhv-brand-grid,
    .zhv-blog-grid,
    .zhv-newsletter,
    .zhv-focus-grid {
      grid-template-columns: 1fr;
    }

    .zhv-product-card {
      flex-basis: 218px;
    }

    .zhv-product-media {
      height: 218px;
    }

    .zhv-spotlight {
      min-height: 620px;
    }

    .zhv-spotlight::before {
      background-size: 74% auto;
      background-position: right 12px top 34px;
      opacity: .86;
    }

    .zhv-spotlight::after {
      background: linear-gradient(180deg, rgba(255,255,255,.36) 0%, rgba(255,255,255,.94) 52%, #fff 100%);
    }

    .zhv-spotlight-copy {
      padding-top: 320px;
    }

    .zhv-newsletter-form {
      flex-direction: column;
    }
  }

  @media (max-width: 520px) {
    .zhv-section-head {
      display: block;
    }

    .zhv-hero-main {
      min-height: 560px;
      border-radius: 20px;
    }

    .zhv-hero-copy {
      padding: 26px;
    }

    .zhv-hero-title {
      font-size: 38px;
    }

    .zhv-promo-content {
      width: 68%;
      padding: 24px;
    }

    .zhv-focus-card {
      grid-template-columns: 82px minmax(0,1fr);
    }

    .zhv-focus-card img {
      width: 82px;
      height: 82px;
    }
  }

  .zhv-hero-title--cosmetics {
    max-width: 520px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .zhv-benefit {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .zhv-benefit-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--zh-green-soft);
    color: var(--zh-green-dark);
    margin-bottom: 2px;
  }

  .zhv-benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .zhv-spotlight::after {
    background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.68) 36%, rgba(255,255,255,.24) 64%, rgba(255,255,255,.02) 100%);
  }

  .zhv-focus-card strong {
    font-size: 12px;
    line-height: 1.18;
    font-weight: 750;
  }

  .zhv-rail-nav {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(109,163,23,.20);
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--zh-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(46,35,34,.12);
    transform: translateY(-50%);
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  }

  .zhv-rail-nav:hover {
    background: var(--zh-green);
    color: #ffffff;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 14px 30px rgba(109,163,23,.24);
  }

  .zhv-rail-nav--prev {
    left: 8px;
  }

  .zhv-rail-nav--next {
    right: 8px;
  }

  .zhv-rail-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

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

  .zhv-mini-banner {
    position: relative;
    min-height: 178px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--zh-cream);
    box-shadow: var(--zh-shadow-soft);
    isolation: isolate;
    display: flex;
    align-items: center;
  }

  .zhv-mini-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    transform: scale(1.01);
    transition: transform .3s ease;
  }

  .zhv-mini-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.74) 48%, rgba(255,255,255,.16) 100%);
    z-index: -1;
  }

  .zhv-mini-banner:hover img {
    transform: scale(1.045);
  }

  .zhv-mini-banner-copy {
    width: 62%;
    padding: 26px;
  }

  .zhv-mini-banner-copy span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    color: var(--zh-green-dark);
    text-transform: uppercase;
    letter-spacing: .07em;
  }

  .zhv-mini-banner-copy h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .zhv-mini-banner-copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #5e5651;
  }

  @media (max-width: 860px) {
    .zhv-rail {
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      touch-action: pan-x pan-y;
      padding-bottom: 8px;
    }

    .zhv-rail-track {
      width: max-content;
      transform: none !important;
      transition: none !important;
    }

    .zhv-product-card {
      scroll-snap-align: start;
    }

    .zhv-rail-nav {
      display: none;
    }

    .zhv-rail::-webkit-scrollbar {
      display: none;
    }

    .zhv-hero-title--cosmetics {
      font-size: 32px;
      line-height: 1.1;
    }

    .zhv-spotlight::after {
      background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.82) 50%, #fff 100%);
    }

    .zhv-mini-banners {
      display: flex;
      overflow-x: auto;
      gap: 14px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;
    }

    .zhv-mini-banner {
      flex: 0 0 82%;
      scroll-snap-align: start;
    }
  }

  @media (max-width: 520px) {
    .zhv-mini-banner {
      flex-basis: 88%;
      min-height: 168px;
    }

    .zhv-mini-banner-copy {
      width: 70%;
      padding: 22px;
    }

    .zhv-mini-banner-copy h3 {
      font-size: 21px;
    }
  }

  .zhv-campaign .zhv-focus-grid {
    align-items: stretch;
  }

  .zhv-campaign .zhv-focus-card {
    height: 138px;
    min-height: 138px;
    max-height: 138px;
    align-items: stretch;
    overflow: hidden;
  }

  .zhv-campaign .zhv-focus-card > div {
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .zhv-campaign .zhv-focus-card span,
  .zhv-campaign .zhv-focus-card strong,
  .zhv-campaign .zhv-focus-card small {
    min-width: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .zhv-campaign .zhv-focus-card span {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    min-height: 13px;
    max-height: 13px;
  }

  .zhv-campaign .zhv-focus-card strong {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 29px;
    max-height: 29px;
    margin-bottom: 7px;
  }

  .zhv-campaign .zhv-focus-card small {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    margin-top: auto;
    min-height: 15px;
    max-height: 15px;
  }

  .zhv-campaign .zhv-spotlight-copy {
    display: flex;
    flex-direction: column;
    min-height: 430px;
  }

  .zhv-campaign .zhv-spotlight-title,
  .zhv-campaign .zhv-spotlight-desc,
  .zhv-campaign .zhv-spotlight-price {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .zhv-campaign .zhv-spotlight-title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 112px;
  }

  .zhv-campaign .zhv-spotlight-desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: 76px;
    max-height: 76px;
  }

  .zhv-campaign .zhv-spotlight-price {
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .zhv-campaign .zhv-spotlight-copy .zhv-button {
    align-self: flex-start;
    margin-top: auto;
  }

  @media (max-width: 860px) {
    .zhv-campaign .zhv-focus-card {
      height: 124px;
      min-height: 124px;
      max-height: 124px;
    }

    .zhv-campaign .zhv-focus-card strong {
      min-height: 28px;
      max-height: 28px;
    }

    .zhv-campaign .zhv-spotlight-copy {
      min-height: 300px;
    }

    .zhv-campaign .zhv-spotlight-title {
      min-height: 76px;
    }

    .zhv-campaign .zhv-spotlight-desc {
      min-height: 66px;
      max-height: 66px;
    }
  }

  @media (max-width: 520px) {
    .zhv-campaign .zhv-focus-card {
      height: 116px;
      min-height: 116px;
      max-height: 116px;
    }

    .zhv-campaign .zhv-focus-card span {
      font-size: 10px;
      min-height: 12px;
      max-height: 12px;
    }

    .zhv-campaign .zhv-focus-card strong {
      font-size: 12px;
      line-height: 1.16;
      min-height: 28px;
      max-height: 28px;
    }

    .zhv-campaign .zhv-focus-card small {
      font-size: 11px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .zh-home-v7 * {
      transition: none !important;
      animation: none !important;
      scroll-behavior: auto !important;
    }
  }

.zh-home-v7 .zhv-campaign .zhv-focus-card strong {
  font-size: 11px !important;
  line-height: 1.22 !important;
  font-weight: 750 !important;
  min-height: auto !important;
  max-height: none !important;
  margin-bottom: 4px !important;

  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.zh-home-v7 .zhv-campaign .zhv-focus-card span {
  font-size: 10px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  margin-bottom: 4px !important;
  min-height: auto !important;
  max-height: none !important;

  display: block !important;
  overflow: visible !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.zh-home-v7 .zhv-campaign .zhv-focus-card small {
  font-size: 11px !important;
  line-height: 1.15 !important;
  margin-top: 0 !important;
  min-height: auto !important;
  max-height: none !important;

  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.zh-home-v7 .zhv-campaign .zhv-spotlight::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.zh-home-v7 .zhv-campaign .zhv-spotlight::before {
  opacity: 1 !important;
  background-size: min(58%, 420px) auto !important;
  background-position: right 32px center !important;
}

.zh-home-v7 .zhv-campaign .zhv-spotlight-copy {
  max-width: 430px !important;
  padding: 42px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border-radius: 0 24px 24px 0 !important;
}

.zh-home-v7 .zhv-campaign .zhv-spotlight-title {
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  min-height: auto !important;
  max-height: none !important;

  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.zh-home-v7 .zhv-campaign .zhv-spotlight-desc {
  font-size: 15px !important;
  line-height: 1.45 !important;
  min-height: auto !important;
  max-height: none !important;

  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.zh-home-v7 .zhv-campaign .zhv-focus-card {
  grid-template-columns: 82px minmax(0, 1fr) !important;
  gap: 10px !important;
  min-height: 112px !important;
  height: auto !important;
  max-height: none !important;
  padding: 10px !important;
  align-items: center !important;
}

.zh-home-v7 .zhv-campaign .zhv-focus-card img {
  width: 82px !important;
  height: 82px !important;
  padding: 4px !important;
}

.zh-home-v7 .zhv-campaign .zhv-focus-card > div {
  height: auto !important;
  min-height: 0 !important;
  justify-content: center !important;
  gap: 0 !important;
}

.zh-home-v7 .zhv-campaign .zhv-focus-grid {
  gap: 10px !important;
  align-content: start !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-campaign .zhv-spotlight::before {
    background-size: 70% auto !important;
    background-position: center top 26px !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-spotlight-copy {
    padding: 300px 24px 28px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border-radius: 0 !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    min-height: 104px !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card img {
    width: 76px !important;
    height: 76px !important;
  }
}


  .zh-home-v7 {
    overflow-x: hidden;
  }

  .zh-home-v7 .zhv-mobile-view-all {
    display: none;
  }

  .zh-home-v7 .zhv-campaign .zhv-spotlight::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-spotlight-copy {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-spotlight::before {
    opacity: 1 !important;
    z-index: -1 !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-spotlight-title,
  .zh-home-v7 .zhv-campaign .zhv-spotlight-desc,
  .zh-home-v7 .zhv-campaign .zhv-spotlight-price {
    text-shadow: 0 2px 14px rgba(255,255,255,.92), 0 1px 2px rgba(255,255,255,.86);
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card strong,
  .zh-home-v7 .zhv-campaign .zhv-focus-card span,
  .zh-home-v7 .zhv-campaign .zhv-focus-card small {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card strong {
    font-size: 11px !important;
    line-height: 1.18 !important;
    margin-bottom: 4px !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card span,
  .zh-home-v7 .zhv-campaign .zhv-focus-card small {
    font-size: 10px !important;
    line-height: 1.15 !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card {
    grid-template-columns: 82px minmax(0,1fr) !important;
    gap: 10px !important;
    min-height: 112px !important;
    height: auto !important;
    max-height: none !important;
    padding: 10px !important;
    align-items: center !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card img {
    width: 82px !important;
    height: 82px !important;
    padding: 4px !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card > div {
    height: auto !important;
    min-height: 0 !important;
    justify-content: center !important;
  }

  .zh-home-v7 .zhv-rail {
    -webkit-tap-highlight-color: transparent;
  }

  .zh-home-v7 .zhv-rail-track {
    touch-action: pan-x;
  }

  @media (max-width: 860px) {
    .zh-home-v7 {
      overflow-x: hidden;
    }

    .zh-home-v7 .zhv-container {
      width: min(100% - 24px, 1320px) !important;
    }

    .zh-home-v7 .zhv-section {
      padding: 26px 0 !important;
    }

    .zh-home-v7 .zhv-section--tight {
      padding-top: 18px !important;
    }

    .zh-home-v7 .zhv-section-head {
      display: flex !important;
      align-items: flex-end !important;
      justify-content: space-between !important;
      gap: 12px !important;
      margin-bottom: 16px !important;
    }

    .zh-home-v7 .zhv-section-title {
      font-size: 25px !important;
      line-height: 1.08 !important;
      letter-spacing: -0.035em !important;
    }

    .zh-home-v7 .zhv-section-desc {
      font-size: 13px !important;
      line-height: 1.42 !important;
      margin-top: 6px !important;
    }

    .zh-home-v7 .zhv-button,
    .zh-home-v7 .zhv-card-button {
      min-height: 40px !important;
      padding: 11px 17px !important;
      font-size: 13px !important;
    }

    .zh-home-v7 .zhv-mobile-view-all {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      white-space: nowrap !important;
      min-height: 36px !important;
      padding: 9px 13px !important;
      border-radius: 999px !important;
      border: 1px solid rgba(109,163,23,.24) !important;
      background: #ffffff !important;
      color: var(--zh-green-dark) !important;
      font-size: 12px !important;
      font-weight: 800 !important;
      box-shadow: 0 8px 18px rgba(46,35,34,.05) !important;
    }

    .zh-home-v7 .zhv-hero {
      padding: 12px 0 20px !important;
    }

    .zh-home-v7 .zhv-hero-grid {
      grid-template-columns: 1fr !important;
      gap: 14px !important;
    }

    .zh-home-v7 .zhv-hero-main {
      min-height: 500px !important;
      border-radius: 22px !important;
    }

    .zh-home-v7 .zhv-hero-slide {
      align-items: flex-end !important;
      background-position: var(--mobile-bg-position, center) !important;
    }

    .zh-home-v7 .zhv-hero-slide::after {
      background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.52) 48%, rgba(255,255,255,.96) 100%) !important;
    }

    .zh-home-v7 .zhv-hero-slide--dark::after {
      background: linear-gradient(180deg, rgba(46,35,34,.06) 0%, rgba(46,35,34,.44) 54%, rgba(46,35,34,.82) 100%) !important;
    }

    .zh-home-v7 .zhv-hero-copy {
      max-width: none !important;
      padding: 24px !important;
    }

    .zh-home-v7 .zhv-hero-title {
      font-size: 34px !important;
      line-height: 1.02 !important;
      letter-spacing: -0.045em !important;
    }

    .zh-home-v7 .zhv-hero-title--cosmetics {
      font-size: 30px !important;
      line-height: 1.08 !important;
    }

    .zh-home-v7 .zhv-hero-text {
      font-size: 15px !important;
      line-height: 1.42 !important;
      margin: 12px 0 18px !important;
    }

    .zh-home-v7 .zhv-hero-kicker {
      font-size: 11px !important;
      padding: 7px 10px !important;
      margin-bottom: 10px !important;
    }

    .zh-home-v7 .zhv-hero-dots {
      left: 24px !important;
      bottom: 18px !important;
    }

    .zh-home-v7 .zhv-hero-dot {
      width: 28px !important;
    }

    .zh-home-v7 .zhv-mini-banners {
      display: flex !important;
      gap: 14px !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory !important;
      scroll-padding: 0 9% !important;
      -webkit-overflow-scrolling: touch !important;
      padding: 2px 9% 8px !important;
      margin-left: -9% !important;
      margin-right: -9% !important;
    }

    .zh-home-v7 .zhv-mini-banners::-webkit-scrollbar {
      display: none !important;
    }

    .zh-home-v7 .zhv-mini-banner {
      flex: 0 0 82% !important;
      min-height: 172px !important;
      scroll-snap-align: center !important;
      border-radius: 22px !important;
    }

    .zh-home-v7 .zhv-mini-banner-copy {
      width: 68% !important;
      padding: 22px !important;
    }

    .zh-home-v7 .zhv-mini-banner-copy h3 {
      font-size: 20px !important;
      line-height: 1.07 !important;
    }

    .zh-home-v7 .zhv-mini-banner-copy p {
      font-size: 12px !important;
    }

    .zh-home-v7 .zhv-cat-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 12px !important;
    }

    .zh-home-v7 .zhv-cat-card {
      min-height: 176px !important;
      border-radius: 18px !important;
    }

    .zh-home-v7 .zhv-cat-media {
      height: 104px !important;
    }

    .zh-home-v7 .zhv-cat-media img {
      padding: 10px !important;
    }

    .zh-home-v7 .zhv-cat-content {
      padding: 12px !important;
    }

    .zh-home-v7 .zhv-cat-content h3 {
      font-size: 14px !important;
      line-height: 1.14 !important;
    }

    .zh-home-v7 .zhv-cat-content span {
      font-size: 11px !important;
      line-height: 1.25 !important;
    }

    .zh-home-v7 .zhv-benefits {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 10px !important;
    }

    .zh-home-v7 .zhv-benefit {
      min-height: 132px !important;
      padding: 16px 13px !important;
      border-radius: 16px !important;
    }

    .zh-home-v7 .zhv-benefit-icon {
      width: 36px !important;
      height: 36px !important;
      border-radius: 12px !important;
    }

    .zh-home-v7 .zhv-benefit b {
      font-size: 13px !important;
      line-height: 1.16 !important;
      margin-bottom: 4px !important;
    }

    .zh-home-v7 .zhv-benefit span {
      font-size: 11px !important;
      line-height: 1.28 !important;
    }

    .zh-home-v7 .zhv-rail {
      overflow-x: auto !important;
      overflow-y: hidden !important;
      -webkit-overflow-scrolling: touch !important;
      scroll-snap-type: x mandatory !important;
      touch-action: pan-x pan-y !important;
      padding-bottom: 8px !important;
      margin-left: -12px !important;
      margin-right: -12px !important;
      padding-left: 12px !important;
      padding-right: 12px !important;
    }

    .zh-home-v7 .zhv-rail::-webkit-scrollbar {
      display: none !important;
    }

    .zh-home-v7 .zhv-rail-track {
      width: max-content !important;
      transform: none !important;
      transition: none !important;
      gap: 13px !important;
    }

    .zh-home-v7 .zhv-product-card {
      flex: 0 0 205px !important;
      scroll-snap-align: start !important;
      border-radius: 18px !important;
    }

    .zh-home-v7 .zhv-product-media {
      height: 196px !important;
    }

    .zh-home-v7 .zhv-product-media img {
      padding: 16px !important;
    }

    .zh-home-v7 .zhv-product-body {
      padding: 13px !important;
    }

    .zh-home-v7 .zhv-product-title {
      min-height: 42px !important;
      font-size: 13px !important;
      line-height: 1.2 !important;
    }

    .zh-home-v7 .zhv-product-meta,
    .zh-home-v7 .zhv-product-brand {
      font-size: 11px !important;
    }

    .zh-home-v7 .zhv-price {
      font-size: 14px !important;
    }

    .zh-home-v7 .zhv-price small {
      font-size: 11px !important;
    }

    .zh-home-v7 .zhv-rail-nav {
      display: none !important;
    }

    .zh-home-v7 .zhv-campaign {
      display: block !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-focus-grid {
      display: none !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight {
      min-height: 520px !important;
      border-radius: 24px !important;
      background: #fbfaf7 !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight::before {
      background-size: 76% auto !important;
      background-position: center top 22px !important;
      z-index: 0 !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-copy {
      position: absolute !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      z-index: 2 !important;
      min-height: 0 !important;
      max-width: none !important;
      padding: 250px 22px 24px !important;
      background: transparent !important;
      border-radius: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-end !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-label {
      align-self: flex-start !important;
      font-size: 10px !important;
      padding: 7px 10px !important;
      background: rgba(255,255,255,.78) !important;
      backdrop-filter: blur(4px) !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-title {
      font-size: 27px !important;
      line-height: 1.08 !important;
      min-height: 0 !important;
      max-height: none !important;
      display: block !important;
      overflow: visible !important;
      text-shadow: 0 2px 16px rgba(255,255,255,.96), 0 1px 2px rgba(255,255,255,.90) !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-desc {
      font-size: 13px !important;
      line-height: 1.38 !important;
      margin: 10px 0 12px !important;
      min-height: 0 !important;
      max-height: none !important;
      display: block !important;
      overflow: visible !important;
      text-shadow: 0 2px 14px rgba(255,255,255,.96) !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-price {
      font-size: 17px !important;
      margin-bottom: 14px !important;
      text-shadow: 0 2px 14px rgba(255,255,255,.96) !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-copy .zhv-button {
      width: 100% !important;
      margin-top: 0 !important;
    }

    .zh-home-v7 .zhv-campaign-all-link {
      display: inline-flex !important;
      width: 100% !important;
      margin-top: 12px !important;
      min-height: 42px !important;
    }

    .zh-home-v7 .zhv-brand-grid {
      display: flex !important;
      flex-wrap: nowrap !important;
      gap: 12px !important;
      width: max-content !important;
      animation: zhBrandMarquee 26s linear infinite !important;
      will-change: transform !important;
    }

    .zh-home-v7 .zhv-brand-grid:hover {
      animation-play-state: paused !important;
    }

    .zh-home-v7 .zhv-brand-card {
      flex: 0 0 138px !important;
      min-height: 94px !important;
      padding: 14px !important;
      border-radius: 18px !important;
    }

    .zh-home-v7 .zhv-brand-card img {
      max-width: 105px !important;
      max-height: 58px !important;
    }

    .zh-home-v7 .zhv-brand-placeholder {
      width: 58px !important;
      height: 58px !important;
      font-size: 18px !important;
    }

    .zh-home-v7 section[aria-labelledby="zhv-brand-title"] .zhv-container {
      overflow: hidden !important;
    }

    @keyframes zhBrandMarquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .zh-home-v7 .zhv-newsletter {
      grid-template-columns: 1fr !important;
      gap: 18px !important;
      padding: 24px !important;
      border-radius: 22px !important;
    }

    .zh-home-v7 .zhv-newsletter h2 {
      font-size: 25px !important;
      line-height: 1.08 !important;
    }

    .zh-home-v7 .zhv-newsletter p {
      font-size: 13px !important;
      line-height: 1.42 !important;
    }

    .zh-home-v7 .zhv-newsletter-form {
      flex-direction: column !important;
    }

    .zh-home-v7 .zhv-blog-grid {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
    }

    .zh-home-v7 .zhv-blog-card {
      border-radius: 18px !important;
    }

    .zh-home-v7 .zhv-blog-card img {
      height: 190px !important;
    }

    .zh-home-v7 .zhv-blog-body {
      padding: 16px !important;
    }

    .zh-home-v7 .zhv-blog-body h3 {
      font-size: 17px !important;
    }
  }

  @media (max-width: 520px) {
    .zh-home-v7 .zhv-container {
      width: min(100% - 20px, 1320px) !important;
    }

    .zh-home-v7 .zhv-section-title {
      font-size: 23px !important;
    }

    .zh-home-v7 .zhv-hero-main {
      min-height: 510px !important;
    }

    .zh-home-v7 .zhv-hero-title {
      font-size: 31px !important;
    }

    .zh-home-v7 .zhv-hero-title--cosmetics {
      font-size: 28px !important;
    }

    .zh-home-v7 .zhv-hero-actions {
      gap: 8px !important;
    }

    .zh-home-v7 .zhv-hero-actions .zhv-button {
      flex: 1 1 100% !important;
    }

    .zh-home-v7 .zhv-side-promos {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
    }

    .zh-home-v7 .zhv-promo-card {
      min-height: 176px !important;
      border-radius: 20px !important;
    }

    .zh-home-v7 .zhv-promo-content {
      width: 72% !important;
      padding: 20px !important;
    }

    .zh-home-v7 .zhv-promo-content h3 {
      font-size: 21px !important;
    }

    .zh-home-v7 .zhv-mini-banner {
      flex-basis: 84% !important;
    }

    .zh-home-v7 .zhv-product-card {
      flex-basis: 198px !important;
    }

    .zh-home-v7 .zhv-product-media {
      height: 188px !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight {
      min-height: 500px !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight::before {
      background-size: 82% auto !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-copy {
      padding: 238px 20px 22px !important;
    }

    .zh-home-v7 .zhv-campaign .zhv-spotlight-title {
      font-size: 25px !important;
    }
  }

.zh-home-v7 .zhv-side-promos .zhv-button,
.zh-home-v7 .zhv-side-promos .zhv-button--light,
.zh-home-v7 .zhv-promo-card .zhv-button,
.zh-home-v7 .zhv-promo-card .zhv-button--light {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  border-radius: 999px !important;
  padding: 12px 23px !important;
  border: 1px solid var(--zh-green) !important;
  background: var(--zh-green) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: none !important;
  box-shadow: none !important;
}

.zh-home-v7 .zhv-side-promos .zhv-button:hover,
.zh-home-v7 .zhv-side-promos .zhv-button--light:hover,
.zh-home-v7 .zhv-promo-card .zhv-button:hover,
.zh-home-v7 .zhv-promo-card .zhv-button--light:hover {
  background: var(--zh-green-dark) !important;
  border-color: var(--zh-green-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 22px rgba(109, 163, 23, .20) !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-brand-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
    overflow: visible !important;
    transform: none !important;
    animation: none !important;
  }

  .zh-home-v7 .zhv-brand-grid > .zhv-brand-card {
    flex: none !important;
  }

  .zh-home-v7 .zhv-brand-grid > .zhv-brand-card[aria-hidden="true"],
  .zh-home-v7 .zhv-brand-grid > .zhv-brand-card[data-zh-clone="true"] {
    display: none !important;
  }
}

.zh-home-v7 .zhv-blog-view-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  min-height: 40px !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(109,163,23,.24) !important;
  background: var(--zh-green) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(109,163,23,.14) !important;
}

.zh-home-v7 .zhv-blog-view-all:hover {
  background: var(--zh-green-dark) !important;
  border-color: var(--zh-green-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.zh-home-v7 .zhv-hero-slide::after,
.zh-home-v7 .zhv-promo-card::after,
.zh-home-v7 .zhv-mini-banner::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.zh-home-v7 .zhv-hero-slide {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.zh-home-v7 .zhv-hero-copy {
  text-shadow: 0 2px 12px rgba(255,255,255,.82);
}

.zh-home-v7 .zhv-hero-slide--dark .zhv-hero-copy {
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}

.zh-home-v7 .zhv-hero-kicker {
  background: rgba(255,255,255,.72) !important;
}

.zh-home-v7 .zhv-promo-card img,
.zh-home-v7 .zhv-promo-card--contain img {
  object-fit: cover !important;
  padding: 0 !important;
  background: transparent !important;
  opacity: 1 !important;
  filter: none !important;
}

.zh-home-v7 .zhv-promo-content {
  text-shadow: 0 2px 12px rgba(255,255,255,.86);
}

.zh-home-v7 .zhv-promo-content h3,
.zh-home-v7 .zhv-promo-content p {
  color: var(--zh-text) !important;
}

.zh-home-v7 .zhv-mini-banner img {
  opacity: 1 !important;
  filter: none !important;
}

.zh-home-v7 .zhv-mini-banner-copy {
  position: relative !important;
  z-index: 2 !important;
  text-shadow: 0 2px 12px rgba(255,255,255,.86);
}

.zh-home-v7 .zhv-blog-view-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  min-height: 40px !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(109,163,23,.24) !important;
  background: var(--zh-green) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(109,163,23,.14) !important;
}

.zh-home-v7 .zhv-blog-view-all:hover {
  background: var(--zh-green-dark) !important;
  border-color: var(--zh-green-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-brand-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
    overflow: visible !important;
    transform: none !important;
    animation: none !important;
  }

  .zh-home-v7 .zhv-brand-grid > .zhv-brand-card {
    flex: none !important;
  }

  .zh-home-v7 .zhv-brand-grid > .zhv-brand-card[aria-hidden="true"],
  .zh-home-v7 .zhv-brand-grid > .zhv-brand-card[data-zh-clone="true"] {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-hero-copy {
    text-shadow: 0 2px 14px rgba(255,255,255,.90);
  }

  .zh-home-v7 .zhv-hero-slide--dark .zhv-hero-copy {
    text-shadow: 0 2px 14px rgba(0,0,0,.46);
  }

  .zh-home-v7 .zhv-promo-content,
  .zh-home-v7 .zhv-mini-banner-copy {
    text-shadow: 0 2px 14px rgba(255,255,255,.92);
  }
}

.zh-home-v7 .zhv-cat-card--icon .zhv-cat-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 136px !important;
  background: linear-gradient(180deg, #fbfff6 0%, #f3f9ea 100%) !important;
}

.zh-home-v7 .zhv-cat-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 78px !important;
  height: 78px !important;
  color: var(--zh-green-dark) !important;
}

.zh-home-v7 .zhv-cat-icon svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  color: currentColor !important;
  fill: currentColor;
  stroke: currentColor;
}

.zh-home-v7 .zhv-cat-card--icon:hover .zhv-cat-icon {
  color: var(--zh-green) !important;
  transform: scale(1.06);
}

@media (min-width: 1181px) {
  .zh-home-v7 .zhv-cat-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .zh-home-v7 .zhv-cat-card--icon {
    min-height: 218px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content {
    padding: 14px 12px 16px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3 {
    font-size: 15px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content span {
    font-size: 12px !important;
  }
}

@media (max-width: 1180px) and (min-width: 861px) {
  .zh-home-v7 .zhv-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-media {
    height: 108px !important;
  }

  .zh-home-v7 .zhv-cat-icon {
    width: 62px !important;
    height: 62px !important;
  }
}

@media (max-width: 420px) {
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3 {
    font-size: 13px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content span {
    font-size: 10.5px !important;
  }
}

.zh-home-v7 .zhv-cat-grid {
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--zh-line) !important;
}

.zh-home-v7 .zhv-cat-card,
.zh-home-v7 .zhv-cat-card--icon {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 11px !important;
  padding: 16px 10px 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  color: #1f1f1f !important;
  text-align: center !important;
  transition: transform .22s ease, opacity .22s ease !important;
}

.zh-home-v7 .zhv-cat-card:hover,
.zh-home-v7 .zhv-cat-card--icon:hover {
  transform: translateY(-2px) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #1f1f1f !important;
}

.zh-home-v7 .zhv-cat-media,
.zh-home-v7 .zhv-cat-card--icon .zhv-cat-media {
  width: 76px !important;
  height: 76px !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.zh-home-v7 .zhv-cat-media img {
  display: none !important;
}

.zh-home-v7 .zhv-cat-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 66px !important;
  height: 66px !important;
  color: #111111 !important;
  opacity: .9 !important;
  transform: none !important;
  transition: transform .22s ease, opacity .22s ease !important;
}

.zh-home-v7 .zhv-cat-icon svg,
.zh-home-v7 .zhv-cat-media svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.zh-home-v7 .zhv-cat-card:hover .zhv-cat-icon {
  color: #111111 !important;
  opacity: 1 !important;
  transform: translateY(-2px) !important;
}

.zh-home-v7 .zhv-cat-content,
.zh-home-v7 .zhv-cat-card--icon .zhv-cat-content {
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

.zh-home-v7 .zhv-cat-content h3,
.zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: #2E2322 !important;
}

.zh-home-v7 .zhv-cat-content span,
.zh-home-v7 .zhv-cat-card--icon .zhv-cat-content span {
  display: none !important;
}

@media (min-width: 1181px) {
  .zh-home-v7 .zhv-cat-grid {
    display: flex !important;
    grid-template-columns: none !important;
  }
}

@media (max-width: 1180px) and (min-width: 861px) {
  .zh-home-v7 .zhv-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2px 0 !important;
    border-bottom: 0 !important;
  }

  .zh-home-v7 .zhv-cat-card,
  .zh-home-v7 .zhv-cat-card--icon {
    padding: 14px 8px !important;
    min-height: 0 !important;
    border-radius: 0 !important;
  }

  .zh-home-v7 .zhv-cat-media,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-media {
    width: 58px !important;
    height: 58px !important;
  }

  .zh-home-v7 .zhv-cat-icon {
    width: 52px !important;
    height: 52px !important;
  }

  .zh-home-v7 .zhv-cat-content h3,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3 {
    font-size: 13px !important;
    line-height: 1.15 !important;
  }
}

.zh-home-v7 .zhv-hero .zhv-button,
.zh-home-v7 .zhv-hero .zhv-button *,
.zh-home-v7 .zhv-side-promos .zhv-button,
.zh-home-v7 .zhv-side-promos .zhv-button *,
.zh-home-v7 .zhv-promo-card .zhv-button,
.zh-home-v7 .zhv-promo-card .zhv-button * {
  text-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

.zh-home-v7 .zhv-cat-section-head {
  align-items: center !important;
  margin-bottom: 18px !important;
}

.zh-home-v7 .zhv-category-view-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  min-height: 42px !important;
  padding: 11px 20px !important;
  border-radius: 999px !important;
  border: 1px solid var(--zh-green) !important;
  background: var(--zh-green) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.zh-home-v7 .zhv-category-view-all:hover {
  background: var(--zh-green-dark) !important;
  border-color: var(--zh-green-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.zh-home-v7 .zhv-cat-grid {
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.zh-home-v7 .zhv-cat-card,
.zh-home-v7 .zhv-cat-card--icon {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  min-height: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-direction: column !important;
  gap: 11px !important;
  padding: 14px 10px 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  color: var(--zh-text) !important;
  scroll-snap-align: center !important;
  text-align: center !important;
}

.zh-home-v7 .zhv-cat-card:hover,
.zh-home-v7 .zhv-cat-card--icon:hover {
  transform: translateY(-2px) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--zh-green-dark) !important;
}

.zh-home-v7 .zhv-cat-card--icon .zhv-cat-media,
.zh-home-v7 .zhv-cat-media {
  width: 76px !important;
  height: 76px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.zh-home-v7 .zhv-cat-card--icon .zhv-cat-icon,
.zh-home-v7 .zhv-cat-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 68px !important;
  height: 68px !important;
  color: #1f1f1f !important;
  opacity: .9 !important;
  transform: none !important;
  transition: opacity .22s ease, transform .22s ease, color .22s ease !important;
}

.zh-home-v7 .zhv-cat-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.zh-home-v7 .zhv-cat-card:hover .zhv-cat-icon,
.zh-home-v7 .zhv-cat-card--icon:hover .zhv-cat-icon {
  color: var(--zh-green-dark) !important;
  opacity: 1 !important;
  transform: translateY(-2px) scale(1.03) !important;
}

.zh-home-v7 .zhv-cat-card--icon .zhv-cat-content,
.zh-home-v7 .zhv-cat-content {
  padding: 0 !important;
  text-align: center !important;
}

.zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3,
.zh-home-v7 .zhv-cat-content h3 {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.16 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: currentColor !important;
}

.zh-home-v7 .zhv-cat-card--icon .zhv-cat-content span,
.zh-home-v7 .zhv-cat-content span {
  display: none !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-cat-section-head {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  .zh-home-v7 #zhv-categories-title {
    text-align: center !important;
  }

  .zh-home-v7 .zhv-category-view-all {
    min-height: 40px !important;
    padding: 11px 18px !important;
    font-size: 12px !important;
  }

  .zh-home-v7 .zhv-cat-grid {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-left: calc(50% - 58px) !important;
    scroll-padding-right: calc(50% - 58px) !important;
    padding: 6px calc(50% - 58px) 12px !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
    width: calc(100% + 24px) !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .zh-home-v7 .zhv-cat-grid::-webkit-scrollbar {
    display: none !important;
  }

  .zh-home-v7 .zhv-cat-card,
  .zh-home-v7 .zhv-cat-card--icon {
    flex: 0 0 116px !important;
    width: 116px !important;
    min-width: 116px !important;
    padding: 10px 0 12px !important;
    gap: 10px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-media,
  .zh-home-v7 .zhv-cat-media {
    width: 88px !important;
    height: 88px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-icon,
  .zh-home-v7 .zhv-cat-icon {
    width: 82px !important;
    height: 82px !important;
    opacity: .92 !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3,
  .zh-home-v7 .zhv-cat-content h3 {
    font-size: 13px !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 420px) {
  .zh-home-v7 .zhv-cat-grid {
    gap: 18px !important;
    scroll-padding-left: calc(50% - 55px) !important;
    scroll-padding-right: calc(50% - 55px) !important;
    padding-left: calc(50% - 55px) !important;
    padding-right: calc(50% - 55px) !important;
  }

  .zh-home-v7 .zhv-cat-card,
  .zh-home-v7 .zhv-cat-card--icon {
    flex-basis: 110px !important;
    width: 110px !important;
    min-width: 110px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-media,
  .zh-home-v7 .zhv-cat-media {
    width: 84px !important;
    height: 84px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-icon,
  .zh-home-v7 .zhv-cat-icon {
    width: 78px !important;
    height: 78px !important;
  }
}

.zh-home-v7 .zhv-button,
.zh-home-v7 .zhv-button *,
.zh-home-v7 .zhv-card-button,
.zh-home-v7 .zhv-card-button *,
.zh-home-v7 .zhv-category-view-all,
.zh-home-v7 .zhv-category-view-all * {
  text-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

.zh-home-v7 .zhv-category-view-all {
  display: none !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-section-head > .zhv-mobile-view-all,
  .zh-home-v7 .zhv-blog-view-all {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    min-height: 40px !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(109,163,23,.24) !important;
    background: var(--zh-green) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(109,163,23,.14) !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
  }

  .zh-home-v7 .zhv-section-head > .zhv-mobile-view-all:hover,
  .zh-home-v7 .zhv-blog-view-all:hover {
    background: var(--zh-green-dark) !important;
    border-color: var(--zh-green-dark) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
  }

  .zh-home-v7 .zhv-campaign-all-link {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-cat-section-head {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

.zh-home-v7 .zhv-product-card {
  background: #ffffff !important;
}

.zh-home-v7 .zhv-product-media {
  background: #ffffff !important;
}

.zh-home-v7 .zhv-product-media img {
  background: transparent !important;
}

@media (max-width: 860px) {
  .zh-home-v7 #zhv-campaign-title + .zhv-section-desc {
    font-size: 13px !important;
    line-height: 1.42 !important;
  }
}

.zh-home-v7 .zhv-campaign .zhv-spotlight,
.zh-home-v7 .zhv-campaign .zhv-focus-card,
.zh-home-v7 .zhv-campaign .zhv-focus-card img {
  background: #ffffff !important;
}

.zh-home-v7 .zhv-campaign .zhv-spotlight {
  background-color: #ffffff !important;
}

.zh-home-v7 .zhv-campaign .zhv-spotlight::before {
  background-color: #ffffff !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-campaign .zhv-spotlight {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }

  .zh-home-v7 .zhv-campaign .zhv-focus-card,
  .zh-home-v7 .zhv-campaign .zhv-focus-card img {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-hero-copy {
    transform: translateY(-34px) !important;
    padding-bottom: 54px !important;
  }

  .zh-home-v7 .zhv-hero-dots {
    bottom: 16px !important;
  }
}

@media (max-width: 520px) {
  .zh-home-v7 .zhv-hero-copy {
    transform: translateY(-42px) !important;
    padding-bottom: 58px !important;
  }

  .zh-home-v7 .zhv-hero-main {
    min-height: 520px !important;
  }
}

.zh-home-v7 .zhv-button,
.zh-home-v7 .zhv-button *,
.zh-home-v7 .zhv-card-button,
.zh-home-v7 .zhv-card-button * {
  text-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-cat-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    overscroll-behavior-x: contain !important;
    touch-action: pan-x pan-y !important;
    cursor: grab !important;
    padding: 8px 12px 14px !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
    width: calc(100% + 24px) !important;
    scroll-behavior: smooth !important;
  }

  .zh-home-v7 .zhv-cat-grid.is-dragging {
    cursor: grabbing !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
  }

  .zh-home-v7 .zhv-cat-grid::-webkit-scrollbar {
    display: none !important;
  }

  .zh-home-v7 .zhv-cat-card,
  .zh-home-v7 .zhv-cat-card--icon {
    flex: 0 0 calc((100% - 24px) / 3) !important;
    width: calc((100% - 24px) / 3) !important;
    min-width: calc((100% - 24px) / 3) !important;
    max-width: calc((100% - 24px) / 3) !important;
    scroll-snap-align: center !important;
    padding: 10px 4px 12px !important;
    gap: 9px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-media,
  .zh-home-v7 .zhv-cat-media {
    width: 76px !important;
    height: 76px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-icon,
  .zh-home-v7 .zhv-cat-icon {
    width: 70px !important;
    height: 70px !important;
  }

  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3,
  .zh-home-v7 .zhv-cat-content h3 {
    font-size: 12.5px !important;
    line-height: 1.15 !important;
  }
}

.zh-home-v7 .zhv-blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.zh-home-v7 .zhv-blog-card {
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid var(--zh-line) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.zh-home-v7 .zhv-blog-card > a {
  display: block !important;
}

.zh-home-v7 .zhv-blog-card img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
}

.zh-home-v7 .zhv-blog-body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 18px !important;
}

.zh-home-v7 .zhv-blog-body h3 {
  margin: 0 0 12px !important;
  font-size: 18px !important;
  line-height: 1.18 !important;
  letter-spacing: -0.025em !important;
}

.zh-home-v7 .zhv-blog-body h3 a {
  color: var(--zh-text) !important;
}

.zh-home-v7 .zhv-blog-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 12px !important;
  margin-top: auto !important;
  color: var(--zh-muted) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.zh-home-v7 .zhv-blog-meta span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  margin: 0 !important;
  color: var(--zh-muted) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.zh-home-v7 .zhv-blog-meta span::before {
  content: "" !important;
  width: 14px !important;
  height: 14px !important;
  display: inline-block !important;
  background: currentColor !important;
  opacity: .78 !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.2 3.2v25.6h25.6V3.2H3.2zm24.5 1.1v4.8H4.3V4.3h23.4zM4.3 27.7V10.1h23.4v17.6H4.3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.2 3.2v25.6h25.6V3.2H3.2zm24.5 1.1v4.8H4.3V4.3h23.4zM4.3 27.7V10.1h23.4v17.6H4.3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.zh-home-v7 .zhv-blog-meta span:nth-child(2)::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3.2A12.8 12.8 0 1 0 16 28.8 12.8 12.8 0 0 0 16 3.2zm0 1.1a11.7 11.7 0 0 1 9.1 19.1c-1.2-.5-3.9-1.4-5.6-1.9-.1 0-.2-.1-.2-.7 0-.5.2-1 .4-1.4.2-.5.5-1.2.6-1.9.3-.3.6-.9.8-2 .2-1 .1-1.4 0-1.7 0 0 0-.1-.1-.1 0-.2 0-1.4.2-2.4.1-.6 0-2-.9-3.2-.6-.7-1.6-1.6-3.6-1.7h-1.1c-1.9.1-3 .9-3.6 1.7-.9 1.1-1 2.5-.9 3.2.2.9.2 2.2.2 2.4 0 .1 0 .1-.1.2-.1.3-.2.7 0 1.7.2 1.1.6 1.7.8 2 .1.7.4 1.5.6 1.9.2.3.2.8.2 1.5 0 .6 0 .6-.2.7-1.8.5-4.6 1.5-5.6 2A11.7 11.7 0 0 1 16 4.3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3.2A12.8 12.8 0 1 0 16 28.8 12.8 12.8 0 0 0 16 3.2zm0 1.1a11.7 11.7 0 0 1 9.1 19.1c-1.2-.5-3.9-1.4-5.6-1.9-.1 0-.2-.1-.2-.7 0-.5.2-1 .4-1.4.2-.5.5-1.2.6-1.9.3-.3.6-.9.8-2 .2-1 .1-1.4 0-1.7 0 0 0-.1-.1-.1 0-.2 0-1.4.2-2.4.1-.6 0-2-.9-3.2-.6-.7-1.6-1.6-3.6-1.7h-1.1c-1.9.1-3 .9-3.6 1.7-.9 1.1-1 2.5-.9 3.2.2.9.2 2.2.2 2.4 0 .1 0 .1-.1.2-.1.3-.2.7 0 1.7.2 1.1.6 1.7.8 2 .1.7.4 1.5.6 1.9.2.3.2.8.2 1.5 0 .6 0 .6-.2.7-1.8.5-4.6 1.5-5.6 2A11.7 11.7 0 0 1 16 4.3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

@media (max-width: 1180px) {
  .zh-home-v7 .zhv-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-blog-grid {
    grid-template-columns: 1fr !important;
  }
}

.zh-home-v7 .zh-benefits-relocated {
  padding-top: 12px !important;
}

.zh-home-v7 .custom-benefits-section {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px 10px !important;
  padding: 20px 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
}

.zh-home-v7 .benefit-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  text-align: left !important;
  cursor: pointer !important;
}

.zh-home-v7 .benefit-icon {
  font-size: 24px !important;
  color: #6da523 !important;
  display: flex !important;
  flex-shrink: 0 !important;
  transition: color 0.3s ease !important;
}

.zh-home-v7 .benefit-content {
  display: flex !important;
  flex-direction: column !important;
}

.zh-home-v7 .benefit-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
}

.zh-home-v7 .benefit-text {
  font-size: 11px !important;
  color: #777 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

@keyframes zhBuzzEffect {
  0% { transform: translateX(0) rotate(0deg); }
  20% { transform: translateX(-2px) rotate(-3deg); }
  40% { transform: translateX(2px) rotate(3deg); }
  60% { transform: translateX(-2px) rotate(-3deg); }
  80% { transform: translateX(2px) rotate(3deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

.zh-home-v7 .benefit-item:hover .benefit-icon {
  animation: zhBuzzEffect 0.4s ease-in-out 1 !important;
  color: #55821b !important;
}

@media (min-width: 768px) {
  .zh-home-v7 .custom-benefits-section {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    padding: 40px 0 !important;
  }

  .zh-home-v7 .benefit-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
  }

  .zh-home-v7 .benefit-icon {
    font-size: 38px !important;
  }

  .zh-home-v7 .benefit-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .zh-home-v7 .benefit-text {
    font-size: 14px !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-cat-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 14px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: auto !important;

    width: calc(100% + 24px) !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
    padding: 8px 12px 14px !important;

    animation: none !important;
    transform: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .zh-home-v7 .zhv-cat-grid::-webkit-scrollbar {
    display: none !important;
  }

  .zh-home-v7 .zhv-cat-card,
  .zh-home-v7 .zhv-cat-card--icon {
    flex: 0 0 calc((100vw - 52px) / 3) !important;
    width: calc((100vw - 52px) / 3) !important;
    min-width: calc((100vw - 52px) / 3) !important;

    padding: 8px 0 10px !important;
    gap: 8px !important;
    scroll-snap-align: start !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .zh-home-v7 .zhv-cat-media,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-media {
    width: 76px !important;
    height: 76px !important;
    margin: 0 auto !important;
    background: transparent !important;
  }

  .zh-home-v7 .zhv-cat-icon,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-icon {
    width: 70px !important;
    height: 70px !important;
  }

  .zh-home-v7 .zhv-cat-content h3,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3 {
    font-size: 12.5px !important;
    line-height: 1.15 !important;
  }
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-cat-grid {
    animation: none !important;
    transform: none !important;
  }

  .zh-home-v7 .zhv-cat-card[data-zh-cat-clone="true"] {
    display: none !important;
  }
}

body .elementor .zh-home-v7,
body .elementor-widget-html .zh-home-v7,
body .elementor-widget-container > .zh-home-v7,
body .elementor-shortcode .zh-home-v7 {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow-x: hidden !important;
}

body .elementor .zh-home-v7 .zhv-container,
.zh-home-v7 .zhv-container {
  width: min(1540px, calc(100% - 32px)) !important;
  max-width: 1540px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 1600px) {
  body .elementor .zh-home-v7 .zhv-container,
  .zh-home-v7 .zhv-container {
    width: min(1580px, calc(100% - 48px)) !important;
    max-width: 1580px !important;
  }
}

@media (max-width: 860px) {
  body .elementor .zh-home-v7,
  body .elementor-widget-html .zh-home-v7,
  body .elementor-widget-container > .zh-home-v7,
  body .elementor-shortcode .zh-home-v7 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body .elementor .zh-home-v7 .zhv-container,
  .zh-home-v7 .zhv-container {
    width: min(100% - 20px, 1540px) !important;
  }
}

.zh-home-v7 .zhv-product-card {
  position: relative !important;
  cursor: default !important;
}

.zh-home-v7 article.zhv-product-card {
  color: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-product-media-link,
.zh-home-v7 .zhv-product-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-product-title a:hover {
  color: var(--zh-green-dark) !important;
}

.zh-home-v7 .zhv-product-media {
  background: #ffffff !important;
  overflow: visible !important;
}

.zh-home-v7 .zhv-product-media img {
  background: transparent !important;
}

.zh-home-v7 .zhv-product-wishlist {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 12 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .92) !important;
  color: #222 !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 8px 18px rgba(46,35,34,.10) !important;
  transition: color .2s ease, transform .2s ease !important;
}

.zh-home-v7 .zhv-product-wishlist:hover,
.zh-home-v7 .zhv-product-wishlist.added,
.zh-home-v7 .zhv-product-wishlist.nasa-added {
  color: var(--zh-green) !important;
  transform: translateY(-1px) !important;
}

.zh-home-v7 .zhv-product-actions {
  position: absolute !important;
  left: 50% !important;
  bottom: 16px !important;
  z-index: 10 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  transform: translate(-50%, 14px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 7px !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.14) !important;
  transition: all .22s ease !important;
  overflow: visible !important;
}

.zh-home-v7 .zhv-product-card:hover .zhv-product-actions {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
}

.zh-home-v7 .zhv-product-action {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 42px !important;
  min-width: 46px !important;
  min-height: 42px !important;
  max-width: 46px !important;
  max-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #222 !important;
  text-decoration: none !important;
  text-indent: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
  cursor: pointer !important;
  transition: color .2s ease, background .2s ease !important;
}

.zh-home-v7 .zhv-product-action:hover {
  background: var(--zh-green) !important;
  color: #ffffff !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 999px var(--zh-green) !important;
}

.zh-home-v7 .zhv-product-action-text,
.zh-home-v7 .zhv-product-actions .added_to_cart.wc-forward {
  display: none !important;
}

.zh-home-v7 .zhv-product-action-icon,
.zh-home-v7 .zhv-product-svg {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: currentColor !important;
  fill: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.zh-home-v7 .zhv-product-cart-svg {
  width: 18px !important;
  height: 18px !important;
  transform: rotate(180deg);
  transform-origin: center;
}

.zh-home-v7 .zhv-product-heart-svg,
.zh-home-v7 .zhv-product-eye-svg {
  width: 20px !important;
  height: 20px !important;
}

.zh-home-v7 .zhv-product-tooltip {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 8px) !important;
  z-index: 30 !important;
  display: block !important;
  width: max-content !important;
  max-width: 190px !important;
  padding: 5px 8px !important;
  border-radius: 4px !important;
  background: #222 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate(-50%, 4px) !important;
  transition: all .18s ease !important;
  pointer-events: none !important;
}

.zh-home-v7 .zhv-product-tooltip:after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 100% !important;
  transform: translateX(-50%) !important;
  border-width: 5px 5px 0 !important;
  border-style: solid !important;
  border-color: #222 transparent transparent !important;
}

.zh-home-v7 .zhv-product-action:hover .zhv-product-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, 0) !important;
}

.zh-home-v7 .zhv-card-button {
  display: none !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-product-actions {
    bottom: 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
    height: 38px !important;
    min-height: 38px !important;
  }

  .zh-home-v7 .zhv-product-action {
    width: 39px !important;
    height: 38px !important;
    min-width: 39px !important;
    min-height: 38px !important;
    max-width: 39px !important;
    max-height: 38px !important;
  }

  .zh-home-v7 .zhv-product-wishlist {
    top: 9px !important;
    right: 9px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }
}

.zh-home-v7 .zhv-mini-banner {
  border: 3px solid var(--zh-green) !important;
  box-sizing: border-box !important;
}

.zh-home-v7 .zhv-product-actions {
  border-radius: 11px !important;
  overflow: hidden !important;
  border: 1px solid rgba(109, 163, 23, .12) !important;
}

.zh-home-v7 .zhv-product-action:first-child {
  border-radius: 11px 0 0 11px !important;
}

.zh-home-v7 .zhv-product-action:last-child {
  border-radius: 0 11px 11px 0 !important;
}

.zh-home-v7 .zhv-price {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
  line-height: 1.24 !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price del {
  display: block !important;
  color: #9b9b9b !important;
  opacity: 1 !important;
  text-decoration: line-through !important;
  text-decoration-thickness: 1px !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
}

.zh-home-v7 .zhv-price del * {
  color: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price ins {
  display: block !important;
  color: var(--zh-green-dark) !important;
  text-decoration: none !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.zh-home-v7 .zhv-price ins * {
  color: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price > .woocommerce-Price-amount,
.zh-home-v7 .zhv-price > bdi {
  display: block !important;
  color: var(--zh-green-dark) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price .woo-bg--currency,
.zh-home-v7 .zhv-price small {
  display: inline !important;
  color: inherit !important;
  font-size: .86em !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-snap-type: x mandatory !important;
  padding: 2px 2px 12px !important;
  margin: 0 -2px !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic]::-webkit-scrollbar {
  height: 6px !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic]::-webkit-scrollbar-thumb {
  background: rgba(109, 163, 23, .35) !important;
  border-radius: 999px !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
  flex: 0 0 calc((100% - 48px) / 4) !important;
  min-width: 0 !important;
  scroll-snap-align: start !important;
}

@media (max-width: 1180px) {
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex-basis: calc((100% - 16px) / 2) !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    margin-left: -10px !important;
    margin-right: -10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex-basis: 82% !important;
  }

  .zh-home-v7 .zhv-price del {
    font-size: 12.5px !important;
  }

  .zh-home-v7 .zhv-price ins,
  .zh-home-v7 .zhv-price > .woocommerce-Price-amount,
  .zh-home-v7 .zhv-price > bdi {
    font-size: 15px !important;
  }
}

.zh-home-v7 .zhv-mini-banner {
  border: 1px solid rgba(109, 163, 23, .45) !important;
}

.zh-home-v7 .zhv-product-card {
  position: relative !important;
}

.zh-home-v7 .zhv-product-card .zhv-badge,
.zh-home-v7 .zhv-product-card .onsale,
.zh-home-v7 .zhv-product-card .badge,
.zh-home-v7 .zhv-product-card .nasa-badges-wrap,
.zh-home-v7 .zhv-product-card .nasa-badge {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.zh-home-v7 .zhv-badge--sale {
  position: absolute !important;
  top: 13px !important;
  left: 13px !important;
  z-index: 6 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 25px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  background: var(--zh-green) !important;
  color: #ffffff !important;
  border: 0 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 8px 18px rgba(109, 163, 23, .20) !important;
}

.zh-home-v7 .zhv-price,
.zh-home-v7 .zhv-price * {
  text-decoration-color: currentColor !important;
}

.zh-home-v7 .zhv-price {
  width: 100% !important;
  margin-top: auto !important;
  color: var(--zh-green-dark) !important;
  font-size: 16px !important;
  line-height: 1.28 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price--single {
  display: block !important;
  white-space: normal !important;
  color: var(--zh-green-dark) !important;
}

.zh-home-v7 .zhv-price--single .amount,
.zh-home-v7 .zhv-price--single bdi,
.zh-home-v7 .zhv-price--single .woo-bg--currency,
.zh-home-v7 .zhv-price--single small {
  display: inline !important;
  color: var(--zh-green-dark) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price--single .woo-bg--currency,
.zh-home-v7 .zhv-price--single small {
  font-size: .86em !important;
  margin-left: 4px !important;
}

.zh-home-v7 .zhv-price--sale {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
  white-space: normal !important;
}

.zh-home-v7 .zhv-price--sale del {
  display: block !important;
  color: #9b9b9b !important;
  opacity: 1 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  text-decoration-line: line-through !important;
  text-decoration-thickness: 1px !important;
}

.zh-home-v7 .zhv-price--sale del * {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price--sale ins {
  display: block !important;
  color: var(--zh-green-dark) !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price--sale ins * {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price--sale .woo-bg--currency,
.zh-home-v7 .zhv-price--sale small {
  display: inline !important;
  font-size: .84em !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-product-actions {
  border-radius: 13px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid rgba(109, 163, 23, .12) !important;
}

.zh-home-v7 .zhv-product-action:first-child { border-radius: 13px 0 0 13px !important; }
.zh-home-v7 .zhv-product-action:last-child { border-radius: 0 13px 13px 0 !important; }
.zh-home-v7 section[aria-labelledby="zhv-brand-title"] .zhv-container {
  overflow: hidden !important;
}

.zh-home-v7 .zhv-brand-marquee-wrap {
  display: grid !important;
  gap: 14px !important;
  overflow: hidden !important;
  width: 100% !important;
  padding: 2px 0 !important;
}

.zh-home-v7 .zhv-brand-lane {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 14px !important;
  width: max-content !important;
  grid-template-columns: none !important;
  overflow: visible !important;
  will-change: transform !important;
  animation-duration: 42s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

.zh-home-v7 .zhv-brand-lane--left {
  animation-name: zhBrandLaneLeft !important;
}

.zh-home-v7 .zhv-brand-lane--right {
  animation-name: zhBrandLaneRight !important;
}

.zh-home-v7 .zhv-brand-marquee-wrap:hover .zhv-brand-lane {
  animation-play-state: paused !important;
}

.zh-home-v7 .zhv-brand-lane .zhv-brand-card {
  flex: 0 0 164px !important;
  width: 164px !important;
  min-width: 164px !important;
  min-height: 104px !important;
  padding: 16px !important;
  border-radius: 18px !important;
}

.zh-home-v7 .zhv-brand-lane .zhv-brand-card img {
  max-width: 122px !important;
  max-height: 64px !important;
  object-fit: contain !important;
}

@keyframes zhBrandLaneLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes zhBrandLaneRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.zh-home-v7 .zhv-blog-carousel-wrap {
  position: relative !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding: 2px 2px 4px !important;
  margin: 0 -2px !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic]::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
  flex: 0 0 calc((100% - 48px) / 4) !important;
  min-width: 0 !important;
  scroll-snap-align: start !important;
}

.zh-home-v7 .zhv-blog-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.zh-home-v7 .zhv-blog-dots li {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
}

.zh-home-v7 .zhv-blog-dots button {
  width: 28px !important;
  height: 4px !important;
  min-width: 28px !important;
  min-height: 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(46,35,34,.18) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

.zh-home-v7 .zhv-blog-dots li.slick-active button,
.zh-home-v7 .zhv-blog-dots button.is-active {
  background: var(--zh-green) !important;
}

@media (max-width: 1180px) {
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex-basis: calc((100% - 16px) / 2) !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-brand-marquee-wrap { gap: 12px !important; }
  .zh-home-v7 .zhv-brand-lane { gap: 12px !important; animation-duration: 34s !important; }
  .zh-home-v7 .zhv-brand-lane .zhv-brand-card {
    flex-basis: 142px !important;
    width: 142px !important;
    min-width: 142px !important;
    min-height: 94px !important;
    padding: 14px !important;
  }
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    margin-left: -10px !important;
    margin-right: -10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex-basis: 82% !important;
  }
  .zh-home-v7 .zhv-price--single { font-size: 14px !important; }
  .zh-home-v7 .zhv-price--sale del { font-size: 12.5px !important; }
  .zh-home-v7 .zhv-price--sale ins { font-size: 15px !important; }
}

.zh-home-v7 .zhv-product-tooltip,
.zh-home-v7 .zhv-product-action-text,
.zh-home-v7 .zhv-product-action::before,
.zh-home-v7 .zhv-product-action::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.zh-home-v7 .zhv-product-actions {
  border-radius: 13px !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-product-action {
  font-size: 0 !important;
  line-height: 0 !important;
}

.zh-home-v7 .zhv-product-action-icon,
.zh-home-v7 .zhv-product-svg {
  font-size: initial !important;
  line-height: 1 !important;
}

.zh-home-v7 .zhv-price.zhv-price--single {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  width: 100% !important;
  color: var(--zh-green-dark) !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price.zhv-price--single *,
.zh-home-v7 .zhv-price.zhv-price--single .amount,
.zh-home-v7 .zhv-price.zhv-price--single bdi,
.zh-home-v7 .zhv-price.zhv-price--single small,
.zh-home-v7 .zhv-price.zhv-price--single .woocommerce-Price-amount,
.zh-home-v7 .zhv-price.zhv-price--single .woo-bg--currency {
  display: inline !important;
  color: var(--zh-green-dark) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price.zhv-price--single br {
  display: none !important;
}

.zh-home-v7 .zhv-price.zhv-price--sale {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
  white-space: normal !important;
}

.zh-home-v7 .zhv-price.zhv-price--sale del {
  display: block !important;
  color: #9b9b9b !important;
  opacity: 1 !important;
  text-decoration-line: line-through !important;
  text-decoration-thickness: 1px !important;
}

.zh-home-v7 .zhv-price.zhv-price--sale ins {
  display: block !important;
  color: var(--zh-green-dark) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-price.zhv-price--sale ins *,
.zh-home-v7 .zhv-price.zhv-price--sale del * {
  text-decoration: none !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-rail-nav {
    display: inline-flex !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-rail-nav {
    display: none !important;
  }
}

.zh-home-v7 .zhv-brand-lane > .zhv-brand-card[data-zh-clone="true"] {
  display: flex !important;
}

.zh-home-v7 .zhv-brand-view-all {
  display: inline-flex !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-brand-lane {
    display: flex !important;
    grid-template-columns: none !important;
    animation-play-state: running !important;
  }

  .zh-home-v7 .zhv-brand-lane > .zhv-brand-card,
  .zh-home-v7 .zhv-brand-lane > .zhv-brand-card[data-zh-clone="true"] {
    display: flex !important;
    flex: 0 0 164px !important;
    width: 164px !important;
    min-width: 164px !important;
  }
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic]:empty {
  min-height: 360px !important;
  position: relative !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic]:empty::before {
  content: "Зареждане на продукти..." !important;
  color: var(--zh-muted) !important;
  font-size: 14px !important;
}

.zh-home-v7 .zhv-blog-carousel-wrap {
  overflow: hidden !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
  scroll-behavior: smooth !important;
  overscroll-behavior-x: contain !important;
}

.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
  scroll-snap-align: start !important;
}

.zh-home-v7 .zhv-blog-dots button {
  width: 34px !important;
  height: 5px !important;
  min-width: 34px !important;
  min-height: 5px !important;
  border-radius: 999px !important;
  background: rgba(109, 163, 23, .22) !important;
}

.zh-home-v7 .zhv-blog-dots li.slick-active button,
.zh-home-v7 .zhv-blog-dots button.is-active {
  background: var(--zh-green) !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-blog-carousel-wrap {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    gap: 14px !important;
    margin: 0 !important;
    padding: 2px 9% 6px !important;
    scroll-padding-left: 9% !important;
    scroll-padding-right: 9% !important;
    scroll-snap-type: x mandatory !important;
    touch-action: pan-x pan-y !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex: 0 0 82% !important;
    width: 82% !important;
    min-width: 82% !important;
    scroll-snap-align: center !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-rail {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    touch-action: pan-x pan-y !important;
    scrollbar-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .zh-home-v7 .zhv-rail::-webkit-scrollbar {
    display: none !important;
  }

  .zh-home-v7 .zhv-rail-track {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    gap: 13px !important;
    transform: none !important;
    transition: none !important;
  }

  .zh-home-v7 .zhv-product-card {
    flex: 0 0 calc((100% - 13px) / 2) !important;
    width: calc((100% - 13px) / 2) !important;
    min-width: calc((100% - 13px) / 2) !important;
    max-width: calc((100% - 13px) / 2) !important;
    scroll-snap-align: start !important;
  }

  .zh-home-v7 .zhv-product-media {
    height: clamp(150px, 44vw, 190px) !important;
  }

  .zh-home-v7 .zhv-product-body {
    padding: 12px 10px 13px !important;
  }

  .zh-home-v7 .zhv-product-title {
    font-size: 12.5px !important;
    line-height: 1.2 !important;
    min-height: 45px !important;
  }
}

.zh-home-v7 .zhv-brand-marquee-wrap {
  overflow: hidden !important;
}

.zh-home-v7 .zhv-brand-lane,
.zh-home-v7 .zhv-brand-lane > .zhv-brand-card,
.zh-home-v7 .zhv-brand-lane > .zhv-brand-card[data-zh-clone="true"] {
  display: flex !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-brand-lane {
    flex-wrap: nowrap !important;
    width: max-content !important;
    grid-template-columns: none !important;
    animation-duration: 42s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }

  .zh-home-v7 .zhv-brand-lane--left { animation-name: zhBrandLaneLeft !important; }
  .zh-home-v7 .zhv-brand-lane--right { animation-name: zhBrandLaneRight !important; }
}

.zh-home-v7 .zhv-campaign[data-mode="sale"] .zhv-focus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-campaign[data-mode="sale"] .zhv-spotlight {
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
  }
}

.zh-home-v7 {
  background-image: url("https://i.imgur.com/YpezZxk.png") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.zh-home-v7 .zhv-section,
.zh-home-v7 .zhv-hero {
  background: transparent !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight {
  min-height: 520px !important;
  background: #ffffff !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight::before {
  background-size: min(58%, 420px) auto !important;
  background-position: right 32px center !important;
  opacity: 1 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy {
  max-width: 430px !important;
  padding: 42px !important;
  background: transparent !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-title {
  font-size: clamp(28px, 3.1vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-desc {
  font-size: 15px !important;
  line-height: 1.45 !important;
  max-width: 360px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-price {
  font-size: 19px !important;
  line-height: 1.22 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-content: start !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card {
  grid-template-columns: 82px minmax(0, 1fr) !important;
  gap: 10px !important;
  min-height: 124px !important;
  height: auto !important;
  max-height: none !important;
  padding: 10px !important;
  align-items: center !important;
  text-transform: none !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card img {
  width: 82px !important;
  height: 82px !important;
  padding: 4px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card span,
.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card strong,
.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card small {
  display: block !important;
  overflow: hidden !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card span {
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  color: var(--zh-green-dark) !important;
  margin-bottom: 4px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card strong {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
  margin-bottom: 5px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card small {
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  color: var(--zh-text) !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card:nth-child(n+6) {
  display: none !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-rail .zhv-rail-track {
    gap: 12px !important;
  }

  .zh-home-v7 .zhv-rail .zhv-product-card {
    flex: 0 0 calc((100vw - 44px) / 2) !important;
    width: calc((100vw - 44px) / 2) !important;
    min-width: calc((100vw - 44px) / 2) !important;
    max-width: calc((100vw - 44px) / 2) !important;
  }

  .zh-home-v7 .zhv-product-media {
    height: calc((100vw - 44px) / 2) !important;
    min-height: 150px !important;
    max-height: 205px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] {
    display: block !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-grid {
    display: none !important;
  }
}

.zh-home-v7 .zhv-brand-marquee-wrap {
  overflow: hidden !important;
  display: grid !important;
  gap: 14px !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-brand-grid.zhv-brand-lane {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    width: max-content !important;
    max-width: none !important;
    overflow: visible !important;
    transform: none;
    will-change: transform !important;
  }

  .zh-home-v7 .zhv-brand-grid.zhv-brand-lane > .zhv-brand-card,
  .zh-home-v7 .zhv-brand-grid.zhv-brand-lane > .zhv-brand-card[aria-hidden="true"],
  .zh-home-v7 .zhv-brand-grid.zhv-brand-lane > .zhv-brand-card[data-zh-clone="true"] {
    display: flex !important;
    flex: 0 0 178px !important;
    min-height: 112px !important;
  }

  .zh-home-v7 .zhv-brand-lane--left {
    animation: zhvBrandMoveLeftFinal 34s linear infinite !important;
  }

  .zh-home-v7 .zhv-brand-lane--right {
    animation: zhvBrandMoveRightFinal 34s linear infinite !important;
  }

  .zh-home-v7 .zhv-brand-marquee-wrap:hover .zhv-brand-lane {
    animation-play-state: paused !important;
  }
}

@keyframes zhvBrandMoveLeftFinal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes zhvBrandMoveRightFinal {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] {
  align-items: stretch !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight {
  min-height: 520px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy {
  min-height: 438px !important;
  height: 438px !important;
  max-width: 430px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-label {
  flex: 0 0 auto !important;
  max-width: 292px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-title {
  flex: 0 0 auto !important;
  height: 86px !important;
  min-height: 86px !important;
  max-height: 86px !important;
  margin: 0 !important;
  font-size: clamp(24px, 2.55vw, 34px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-desc {
  flex: 0 0 auto !important;
  height: 66px !important;
  min-height: 66px !important;
  max-height: 66px !important;
  margin: 14px 0 14px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-price {
  flex: 0 0 auto !important;
  min-height: 27px !important;
  margin: 0 0 18px !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy .zhv-button {
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  margin-top: auto !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-grid {
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

@media (min-width: 1181px) {
  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card {
  min-height: 104px !important;
  height: 104px !important;
  max-height: 104px !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card img {
  width: 72px !important;
  height: 72px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card strong {
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card small {
  height: 17px !important;
  min-height: 17px !important;
  max-height: 17px !important;
  font-size: 11px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.zh-home-v7 .zhv-price,
.zh-home-v7 .zhv-price--single {
  min-height: 22px !important;
  white-space: normal !important;
}

.zh-home-v7 .zhv-brand-marquee-wrap {
  overflow: hidden !important;
  display: grid !important;
  gap: 14px !important;
}

.zh-home-v7 .zhv-brand-grid.zhv-brand-lane {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  width: max-content !important;
  max-width: none !important;
  overflow: visible !important;
  will-change: transform !important;
  animation: none !important;
}

.zh-home-v7 .zhv-brand-grid.zhv-brand-lane > .zhv-brand-card,
.zh-home-v7 .zhv-brand-grid.zhv-brand-lane > .zhv-brand-card[aria-hidden="true"],
.zh-home-v7 .zhv-brand-grid.zhv-brand-lane > .zhv-brand-card[data-zh-clone="true"] {
  display: flex !important;
  flex: 0 0 176px !important;
  min-width: 176px !important;
  min-height: 108px !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-brand-grid,
  .zh-home-v7 .zhv-brand-grid.zhv-brand-lane {
    animation-duration: 70s !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-blog-carousel-wrap {
    overflow: hidden !important;
  }

  .zh-home-v7 .zhv-blog-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 2px 0 10px !important;
  }

  .zh-home-v7 .zhv-blog-grid::-webkit-scrollbar {
    display: none !important;
  }

  .zh-home-v7 .zhv-blog-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy {
    height: auto !important;
    min-height: 0 !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-title {
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    font-size: 24px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-desc {
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
  }
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-card .zhv-product-media,
.zh-home-v7 .zhv-rail .zhv-product-card .zhv-product-media {
  position: relative !important;
  overflow: visible !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-card .zhv-product-wishlist,
.zh-home-v7 .zhv-rail .zhv-product-card .zhv-product-wishlist {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 15 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.94) !important;
  color: #222 !important;
  box-shadow: 0 8px 18px rgba(46,35,34,.10) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-card .zhv-product-actions,
.zh-home-v7 .zhv-rail .zhv-product-card .zhv-product-actions {
  position: absolute !important;
  left: 50% !important;
  bottom: 16px !important;
  z-index: 14 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 42px !important;
  min-height: 42px !important;
  background: #ffffff !important;
  border: 1px solid rgba(109,163,23,.12) !important;
  border-radius: 13px !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.14) !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, 14px) !important;
  transition: all .22s ease !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-card:hover .zhv-product-actions,
.zh-home-v7 .zhv-rail .zhv-product-card:hover .zhv-product-actions {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-action,
.zh-home-v7 .zhv-rail .zhv-product-action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 42px !important;
  min-width: 46px !important;
  min-height: 42px !important;
  border: 0 !important;
  background: #ffffff !important;
  color: #222 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-action:hover,
.zh-home-v7 .zhv-rail .zhv-product-action:hover {
  background: var(--zh-green) !important;
  color: #ffffff !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-svg,
.zh-home-v7 .zhv-rail .zhv-product-svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
}

.zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-cart-svg,
.zh-home-v7 .zhv-rail .zhv-product-cart-svg {
  width: 18px !important;
  height: 18px !important;
  transform: rotate(180deg) !important;
  transform-origin: center !important;
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-blog-carousel-wrap {
    overflow: visible !important;
  }

  .zh-home-v7 .zhv-blog-grid,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
    scroll-snap-type: none !important;
  }

  .zh-home-v7 .zhv-blog-grid .zhv-blog-card,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    display: block !important;
    flex: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    scroll-snap-align: none !important;
  }

  .zh-home-v7 .zhv-blog-grid .zhv-blog-card:nth-child(n+9),
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card:nth-child(n+9) {
    display: none !important;
  }

  .zh-home-v7 .zhv-blog-dots {
    display: none !important;
  }
}

@media (max-width: 1180px) and (min-width: 861px) {
  .zh-home-v7 .zhv-blog-grid,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-blog-carousel-wrap {
    overflow: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .zh-home-v7 .zhv-blog-grid,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x pan-y !important;
    padding: 2px 0 10px !important;
    margin: 0 !important;
    scrollbar-width: none !important;
  }

  .zh-home-v7 .zhv-blog-grid::-webkit-scrollbar,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic]::-webkit-scrollbar {
    display: none !important;
  }

  .zh-home-v7 .zhv-blog-grid .zhv-blog-card,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important;
  }

  .zh-home-v7 .zhv-blog-dots {
    display: flex !important;
  }

  .zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-actions,
  .zh-home-v7 .zhv-rail .zhv-product-actions {
    bottom: 8px !important;
    height: 38px !important;
    min-height: 38px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }

  .zh-home-v7 .zhv-rail-track[data-zh-products-dynamic] .zhv-product-action,
  .zh-home-v7 .zhv-rail .zhv-product-action {
    width: 39px !important;
    height: 38px !important;
    min-width: 39px !important;
    min-height: 38px !important;
  }
}

.zh-home-v7 .zhv-brand-marquee-wrap {
  display: grid !important;
  gap: 14px !important;
  overflow: hidden !important;
  width: 100% !important;
}

.zh-home-v7 .zhv-brand-lane {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 14px !important;
  width: max-content !important;
  max-width: none !important;
  grid-template-columns: none !important;
  overflow: visible !important;
  will-change: transform !important;
  animation-duration: 42s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

.zh-home-v7 .zhv-brand-lane--left {
  animation-name: zhBrandLaneLeft !important;
}

.zh-home-v7 .zhv-brand-lane--right {
  animation-name: zhBrandLaneRight !important;
}

.zh-home-v7 .zhv-brand-marquee-wrap:hover .zhv-brand-lane {
  animation-play-state: paused !important;
}

.zh-home-v7 .zhv-brand-lane > .zhv-brand-card,
.zh-home-v7 .zhv-brand-lane > .zhv-brand-card[data-zh-clone="true"] {
  display: flex !important;
  flex: 0 0 164px !important;
  width: 164px !important;
  min-width: 164px !important;
  min-height: 104px !important;
  padding: 16px !important;
  border-radius: 18px !important;
}

.zh-home-v7 .zhv-brand-lane .zhv-brand-card img {
  max-width: 122px !important;
  max-height: 64px !important;
  object-fit: contain !important;
}

@keyframes zhBrandLaneLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes zhBrandLaneRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.zh-home-v7 .zhv-blog-carousel-wrap {
  position: relative !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-blog-grid,
.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding: 2px 2px 6px !important;
  margin: 0 -2px !important;
}

.zh-home-v7 .zhv-blog-grid::-webkit-scrollbar,
.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic]::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.zh-home-v7 .zhv-blog-grid .zhv-blog-card,
.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
  display: flex !important;
  flex: 0 0 calc((100% - 48px) / 4) !important;
  width: calc((100% - 48px) / 4) !important;
  min-width: calc((100% - 48px) / 4) !important;
  max-width: calc((100% - 48px) / 4) !important;
  scroll-snap-align: start !important;
}

.zh-home-v7 .zhv-blog-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.zh-home-v7 .zhv-blog-dots li {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
}

.zh-home-v7 .zhv-blog-dots button {
  width: 34px !important;
  height: 5px !important;
  min-width: 34px !important;
  min-height: 5px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(109, 163, 23, .22) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

.zh-home-v7 .zhv-blog-dots button.is-active {
  background: var(--zh-green) !important;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .zh-home-v7 .zhv-blog-grid .zhv-blog-card,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex-basis: calc((100% - 48px) / 4) !important;
    width: calc((100% - 48px) / 4) !important;
    min-width: calc((100% - 48px) / 4) !important;
    max-width: calc((100% - 48px) / 4) !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-brand-lane {
    gap: 12px !important;
    animation-duration: 34s !important;
  }

  .zh-home-v7 .zhv-brand-lane > .zhv-brand-card,
  .zh-home-v7 .zhv-brand-lane > .zhv-brand-card[data-zh-clone="true"] {
    flex-basis: 142px !important;
    width: 142px !important;
    min-width: 142px !important;
    min-height: 94px !important;
    padding: 14px !important;
  }

  .zh-home-v7 .zhv-blog-grid,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    gap: 14px !important;
    margin: 0 !important;
    padding: 2px 0 10px !important;
  }

  .zh-home-v7 .zhv-blog-grid .zhv-blog-card,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-cat-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    width: calc(100% + 20px) !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
    padding: 8px 10px 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    touch-action: pan-x pan-y !important;
    scroll-snap-type: x proximity !important;
    scroll-behavior: auto !important;
    scrollbar-width: none !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    contain: layout paint !important;
    animation: none !important;
  }

  .zh-home-v7 .zhv-cat-grid::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .zh-home-v7 .zhv-cat-grid.is-dragging {
    scroll-snap-type: none !important;
  }

  .zh-home-v7 .zhv-cat-card,
  .zh-home-v7 .zhv-cat-card--icon {
    flex: 0 0 calc((100% - 28px) / 3) !important;
    width: calc((100% - 28px) / 3) !important;
    min-width: calc((100% - 28px) / 3) !important;
    max-width: calc((100% - 28px) / 3) !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
    padding: 8px 2px 10px !important;
    gap: 8px !important;
    transform: translateZ(0) !important;
    transition: opacity .18s ease, color .18s ease !important;
    will-change: auto !important;
  }

  .zh-home-v7 .zhv-cat-card:hover,
  .zh-home-v7 .zhv-cat-card--icon:hover,
  .zh-home-v7 .zhv-cat-card:hover .zhv-cat-icon,
  .zh-home-v7 .zhv-cat-card--icon:hover .zhv-cat-icon {
    transform: translateZ(0) !important;
  }

  .zh-home-v7 .zhv-cat-media,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-media {
    width: 76px !important;
    height: 76px !important;
    margin: 0 auto !important;
  }

  .zh-home-v7 .zhv-cat-icon,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-icon {
    width: 70px !important;
    height: 70px !important;
    transform: translateZ(0) !important;
  }

  .zh-home-v7 .zhv-cat-content h3,
  .zh-home-v7 .zhv-cat-card--icon .zhv-cat-content h3 {
    font-size: 12.5px !important;
    line-height: 1.15 !important;
  }
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-cat-grid {
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .zh-home-v7 .zhv-cat-card[data-zh-cat-clone="true"] {
    display: none !important;
  }
}

.zh-home-v7 .zhv-blog-carousel-wrap {
  position: relative !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-blog-grid,
.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding: 2px 2px 4px !important;
  margin: 0 -2px !important;
}

.zh-home-v7 .zhv-blog-grid::-webkit-scrollbar,
.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic]::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.zh-home-v7 .zhv-blog-grid .zhv-blog-card,
.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
  flex: 0 0 calc((100% - 48px) / 4) !important;
  min-width: 0 !important;
  max-width: calc((100% - 48px) / 4) !important;
  scroll-snap-align: start !important;
}

.zh-home-v7 .zhv-blog-grid .zhv-blog-card:nth-child(n+9),
.zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card:nth-child(n+9) {
  display: none !important;
}

.zh-home-v7 .zhv-blog-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.zh-home-v7 .zhv-blog-dots li {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
}

.zh-home-v7 .zhv-blog-dots button {
  width: 30px !important;
  height: 4px !important;
  min-width: 30px !important;
  min-height: 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(46,35,34,.18) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  cursor: pointer !important;
}

.zh-home-v7 .zhv-blog-dots button.is-active {
  background: var(--zh-green) !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-blog-grid,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    gap: 14px !important;
    padding: 2px 0 6px !important;
    margin: 0 !important;
    touch-action: pan-x pan-y !important;
  }

  .zh-home-v7 .zhv-blog-grid .zhv-blog-card,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important;
  }
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] {
  align-items: stretch !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight {
  min-height: 540px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  height: auto !important;
  min-height: 430px !important;
  max-width: 440px !important;
  padding: 42px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-label {
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 12px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-title {
  flex: 0 0 auto !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  min-height: 66px !important;
  max-height: 76px !important;
  margin: 0 0 12px !important;
  font-size: clamp(24px, 2.3vw, 32px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-desc {
  flex: 0 0 auto !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;
  line-clamp: 4 !important;
  min-height: 78px !important;
  max-height: 88px !important;
  margin: 0 0 18px !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-price {
  flex: 0 0 auto !important;
  display: block !important;
  margin: auto 0 12px !important;
  color: var(--zh-green-dark) !important;
  font-size: 19px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy .zhv-button {
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  margin-top: 0 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-grid {
  align-content: start !important;
  gap: 10px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card {
  grid-template-columns: 76px minmax(0, 1fr) !important;
  gap: 10px !important;
  min-height: 112px !important;
  height: 112px !important;
  max-height: 112px !important;
  padding: 10px !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card img {
  width: 76px !important;
  height: 76px !important;
  padding: 4px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-width: 0 !important;
  height: 100% !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card span,
.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card strong,
.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card small {
  min-width: 0 !important;
  overflow: hidden !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card span {
  display: block !important;
  margin: 0 0 4px !important;
  font-size: 10.5px !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card strong {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  max-height: 33px !important;
  margin: 0 0 6px !important;
  font-size: 12px !important;
  line-height: 1.18 !important;
  font-weight: 750 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-focus-card small {
  display: block !important;
  margin-top: auto !important;
  color: var(--zh-green-dark) !important;
  font-size: 11.5px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight {
    min-height: 520px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    padding: 238px 20px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-title {
    min-height: 54px !important;
    max-height: 60px !important;
    font-size: 24px !important;
    line-height: 1.12 !important;
    margin-bottom: 10px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-desc {
    min-height: 54px !important;
    max-height: 74px !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
    margin-bottom: 12px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-price {
    margin: 0 0 12px !important;
    font-size: 17px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-campaign-dynamic] .zhv-spotlight-copy .zhv-button {
    width: 100% !important;
  }
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight {
  min-height: 680px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight::before {
  background-image: var(--spotlight-image) !important;
  background-size: min(58%, 460px) auto !important;
  background-position: right 36px center !important;
  background-repeat: no-repeat !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
  z-index: 0 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight::after {
  display: none !important;
  content: none !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-copy {
  position: relative !important;
  z-index: 2 !important;
  max-width: 430px !important;
  min-height: 100% !important;
  padding: 44px !important;
  display: flex !important;
  flex-direction: column !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-title {
  font-size: clamp(26px, 2.6vw, 38px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  margin: 0 0 14px !important;
  min-height: 0 !important;
  max-height: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-shadow: 0 2px 14px rgba(255,255,255,.96), 0 1px 2px rgba(255,255,255,.88) !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-desc,
.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-desc:empty {
  display: none !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-price {
  margin-top: auto !important;
  margin-bottom: 16px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-copy .zhv-button {
  width: fit-content !important;
  min-width: 170px !important;
  margin-top: 0 !important;
  text-shadow: none !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-content: stretch !important;
  align-items: stretch !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card {
  width: 100% !important;
  min-height: 88px !important;
  height: auto !important;
  max-height: none !important;
  display: grid !important;
  grid-template-columns: 76px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 9px !important;
  border: 1px solid var(--zh-line) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: var(--zh-text) !important;
  box-shadow: none !important;
  text-align: left !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card:hover,
.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card.is-active {
  border-color: rgba(109,163,23,.45) !important;
  box-shadow: 0 8px 18px rgba(46,35,34,.06) !important;
  transform: translateY(-1px) !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card img {
  width: 76px !important;
  height: 76px !important;
  object-fit: contain !important;
  padding: 4px !important;
  background: #ffffff !important;
  border-radius: 14px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card > div {
  min-width: 0 !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card span {
  display: block !important;
  margin: 0 0 3px !important;
  color: var(--zh-green-dark) !important;
  font-size: 10px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card strong {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  margin: 0 0 5px !important;
  color: var(--zh-text) !important;
  font-size: 12px !important;
  line-height: 1.18 !important;
  font-weight: 750 !important;
  overflow: hidden !important;
}

.zh-home-v7 .zhv-offer-price,
.zh-home-v7 .zhv-offer-price.price,
.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card small.zhv-offer-price {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
  margin: 0 !important;
  color: var(--zh-green-dark) !important;
  font-size: 14px !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  white-space: normal !important;
  text-shadow: none !important;
}

.zh-home-v7 .zhv-offer-price del {
  display: block !important;
  color: #9b9b9b !important;
  opacity: 1 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  text-decoration-line: line-through !important;
  text-decoration-thickness: 1px !important;
  white-space: nowrap !important;
}

.zh-home-v7 .zhv-offer-price ins {
  display: block !important;
  color: var(--zh-green-dark) !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.zh-home-v7 .zhv-offer-price del *,
.zh-home-v7 .zhv-offer-price ins * {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.zh-home-v7 .zhv-offer-price .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price {
  font-size: 12px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price del {
  font-size: 11px !important;
}

.zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins {
  font-size: 12.5px !important;
}

@media (max-width: 1180px) {
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] {
    grid-template-columns: 1fr !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight {
    min-height: 610px !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] {
    display: block !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight {
    min-height: 540px !important;
    border-radius: 24px !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight::before {
    background-size: 78% auto !important;
    background-position: center top 24px !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-copy {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    padding: 245px 22px 24px !important;
    justify-content: flex-end !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-title {
    font-size: 25px !important;
    line-height: 1.08 !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-price {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-copy .zhv-button {
    width: 100% !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 12px 10px 4px !important;
    margin: 0 -10px !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-grid::-webkit-scrollbar {
    display: none !important;
  }
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card {
    flex: 0 0 82% !important;
    min-width: 82% !important;
    scroll-snap-align: start !important;
    grid-template-columns: 72px minmax(0,1fr) !important;
  }
}

@media (min-width: 1181px) {
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] {
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr) !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight {
    min-height: 620px !important;
    height: 620px !important;
    border-radius: 24px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight::before {
    background-size: min(52%, 430px) auto !important;
    background-position: right 64px center !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-copy {
    max-width: 390px !important;
    min-height: 100% !important;
    padding: 92px 42px 40px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-label {
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-title {
    font-size: clamp(25px, 2.1vw, 34px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    max-width: 360px !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-price {
    margin-top: auto !important;
    margin-bottom: 15px !important;
    font-size: 15px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-price del {
    font-size: 13px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-spotlight-price ins {
    font-size: 18px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-content: stretch !important;
    align-items: stretch !important;
    height: 620px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 9px !important;
    padding: 9px !important;
    border-radius: 16px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card img {
    width: 58px !important;
    height: 58px !important;
    padding: 3px !important;
    border-radius: 12px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card > div {
    justify-content: center !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card span {
    font-size: 9px !important;
    line-height: 1.1 !important;
    margin-bottom: 3px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card strong {
    font-size: 10.5px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin-bottom: 5px !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price {
    gap: 1px !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price del,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins {
    max-width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price del {
    font-size: 9.5px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins {
    font-size: 11px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card:nth-child(7) {
    grid-column: 1 / -1 !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
  }
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card small.zhv-offer-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    line-height: 1.15 !important;
    text-shadow: none !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price del,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
    line-height: 1.15 !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price del {
    color: #2E2322 !important;
    opacity: .72 !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    text-decoration-line: line-through !important;
    text-decoration-color: currentColor !important;
    text-decoration-thickness: 1px !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins {
    color: var(--zh-green-dark) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price del *,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins *,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price .amount,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price .woocommerce-Price-amount,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price .woocommerce-Price-currencySymbol,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price .woo-bg--currency,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price .amount-bgn,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price bdi {
    display: inline !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    white-space: nowrap !important;
    text-decoration: inherit !important;
    vertical-align: baseline !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins *,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins bdi {
    text-decoration: none !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-grid {
    display: none !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] {
    display: block !important;
  }
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card span {
    font-size: 12px !important;
    line-height: 1.18 !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card strong {
    font-size: 15px !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
  }

  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card small.zhv-offer-price,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price del,
  .zh-home-v7 .zhv-campaign[data-zh-weekly-static] .zhv-focus-card .zhv-offer-price ins {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic],
  .zh-home-v7 .zhv-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    overflow: visible !important;
    transform: none !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card,
  .zh-home-v7 .zhv-blog-grid .zhv-blog-card {
    flex: none !important;
    width: auto !important;
    min-width: 0 !important;
    display: flex !important;
  }

  .zh-home-v7 .zhv-blog-grid .zhv-blog-card:nth-child(n+9),
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card:nth-child(n+9) {
    display: none !important;
  }

  .zh-home-v7 .zhv-blog-dots {
    display: none !important;
  }
}

.zh-home-v7 .zhv-newsletter-form input {
  min-height: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  padding: 0 22px !important;
  font-weight: 800 !important;
  line-height: 54px !important;
}

.zh-home-v7 .zhv-newsletter-form input::placeholder {
  font-weight: 800 !important;
  opacity: .78 !important;
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-newsletter-form input {
    min-height: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    border-radius: 16px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .zh-home-v7 .zhv-hero-title--cosmetics,
  .zh-home-v7 .zhv-hero-title--cosmetics + .zhv-hero-text {
    color: #ffffff !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.52) !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic],
  .zh-home-v7 .zhv-blog-grid {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 860px) {
  .zh-home-v7 .zhv-hero-slide:first-of-type .zhv-hero-kicker,
  .zh-home-v7 .zhv-hero-slide:first-of-type .zhv-hero-title,
  .zh-home-v7 .zhv-hero-slide:first-of-type .zhv-hero-title strong,
  .zh-home-v7 .zhv-hero-slide:first-of-type .zhv-hero-text {
    color: #ffffff !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.58) !important;
  }

  .zh-home-v7 .zhv-hero-slide:first-of-type .zhv-hero-kicker {
    background: rgba(0,0,0,.18) !important;
    backdrop-filter: blur(3px) !important;
  }

  .zh-home-v7 .zhv-hero-title--cosmetics,
  .zh-home-v7 .zhv-hero-title--cosmetics + .zhv-hero-text {
    color: var(--zh-text) !important;
    text-shadow: 0 2px 14px rgba(255,255,255,.90) !important;
  }
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-blog-carousel-wrap {
    position: relative !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic],
  .zh-home-v7 .zhv-blog-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    padding: 2px 2px 4px !important;
    margin: 0 -2px !important;
    transform: none !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic]::-webkit-scrollbar,
  .zh-home-v7 .zhv-blog-grid::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card,
  .zh-home-v7 .zhv-blog-grid .zhv-blog-card {
    flex: 0 0 calc((100% - 48px) / 4) !important;
    width: calc((100% - 48px) / 4) !important;
    min-width: calc((100% - 48px) / 4) !important;
    max-width: calc((100% - 48px) / 4) !important;
    scroll-snap-align: start !important;
    display: flex !important;
  }

  .zh-home-v7 .zhv-blog-grid .zhv-blog-card:nth-child(n+9),
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card:nth-child(n+9) {
    display: none !important;
  }

  .zh-home-v7 .zhv-blog-dots {
    display: flex !important;
  }
}

@media (min-width: 861px) {
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] .zhv-blog-card {
    flex: 0 0 calc((100% - 48px) / 4) !important;
    max-width: calc((100% - 48px) / 4) !important;
    min-width: 0 !important;
  }

  .zh-home-v7 .zhv-blog-dots {
    display: none !important;
  }
}
@media (max-width: 860px) {
  .zh-home-v7 .zhv-hero-slide--food-main .zhv-hero-kicker {
    color: var(--zh-green) !important;
  }

  .zh-home-v7 .zhv-hero-slide--food-main .zhv-hero-title strong {
    color: var(--zh-green) !important;
  }

  .zh-home-v7 .zhv-hero-slide--food-main .zhv-hero-text {
    display: inline-block !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.76) !important;
    color: #111111 !important;
    text-shadow: none !important;
    backdrop-filter: blur(3px) !important;
  }
}
@media (max-width: 860px) {
  .zh-home-v7 .zhv-hero-main > .zhv-hero-slide:first-of-type .zhv-hero-kicker {
    color: #6da317 !important;
    background: rgba(255, 255, 255, 0.78) !important;
    text-shadow: none !important;
  }

  .zh-home-v7 .zhv-hero-main > .zhv-hero-slide:first-of-type .zhv-hero-title strong {
    color: #6da317 !important;
    text-shadow: none !important;
  }

  .zh-home-v7 .zhv-hero-main > .zhv-hero-slide:first-of-type .zhv-hero-text {
    display: inline-block !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    color: #111111 !important;
    text-shadow: none !important;
    backdrop-filter: blur(3px) !important;
  }
}
@media (max-width: 860px) {
  .zh-home-v7 .zhv-rail,
  .zh-home-v7 .zhv-mini-banners,
  .zh-home-v7 .zhv-cat-grid,
  .zh-home-v7 .zhv-blog-grid,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    touch-action: pan-x pan-y !important;
    overscroll-behavior-x: auto !important;
  }

  .zh-home-v7 .zhv-rail-track,
  .zh-home-v7 .zhv-product-card,
  .zh-home-v7 .zhv-product-media,
  .zh-home-v7 .zhv-product-body,
  .zh-home-v7 .zhv-mini-banner,
  .zh-home-v7 .zhv-cat-card,
  .zh-home-v7 .zhv-blog-card {
    touch-action: pan-x pan-y !important;
  }

  .zh-home-v7 .zhv-rail,
  .zh-home-v7 .zhv-mini-banners,
  .zh-home-v7 .zhv-cat-grid,
  .zh-home-v7 .zhv-blog-grid,
  .zh-home-v7 .zhv-blog-grid[data-zh-blog-dynamic] {
    scroll-snap-type: x proximity !important;
  }
}
.zh-home-v7 .zhv-cat-section-head {
  justify-content: center !important;
  text-align: center !important;
}

.zh-home-v7 #zhv-categories-title {
  width: 100% !important;
  text-align: center !important;
}
.zh-home-v7 #zhv-categories-title {
  font-size: 32px !important;
  text-align: center !important;
}
@media (max-width: 860px) {
  .zh-home-v7 #zhv-categories-title {
    font-size: 22px !important;
  }
}
.zhv-klaviyo-native-form {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  left: -9999px !important;
  top: auto !important;
}
