/* Plants Vivero storefront template */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #F3F7F2;
  --bg2: #fff;
  --bg3: #E6EDE4;
  --ink: #1F3B2C;
  --ink2: #3A5A48;
  --ink3: #65856E;
  --bo: rgba(31, 59, 44, .13);
  --bo2: rgba(31, 59, 44, .06);
  --ac: #3C7A5C;
  --ac2: #D97C4A;
  --hero-fallback: #2D6A4F;
  --vv-hero-overlay-start: rgba(10, 20, 14, .56);
  --vv-hero-overlay-end: rgba(10, 20, 14, .22);
  --vv-hero-watermark-opacity: .15;
  --vv-hero-title-shadow: 0 4px 16px rgba(0, 0, 0, .22);
  --wa: #25D366;
  --fd: 'Outfit', sans-serif;
  --fb: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.vv-ico {
  width: 18px;
  height: 18px;
  display: block
}

.vv-ico path,
.vv-ico polyline,
.vv-ico line,
.vv-ico circle {
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.vv-ico-solid path {
  fill: currentColor;
  stroke: none
}

.wa-ico {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0
}

.wa-ico path {
  fill: currentColor;
  stroke: none
}

.vv-ann {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ac2);
  color: #fff;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .25)
}

.vv-ann-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.vv-ann-sep {
  opacity: .45
}

.vv-header {
  position: sticky;
  top: 0;
  z-index: 210;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bo)
}

.vv-header-inner {
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap
}

.vv-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0
}

.vv-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ac);
  min-height: 44px
}

.vv-logo-img {
  display: block;
  max-width: 220px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain
}

.vv-logo-name {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1
}

.vv-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink3);
  font-size: 12px;
  border-left: 1px solid var(--bo);
  padding-left: 12px
}

.vv-location .vv-ico {
  width: 14px;
  height: 14px
}

.vv-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.vv-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink2);
  font-size: 12px;
  font-weight: 500
}

.vv-action-link .vv-ico {
  width: 14px;
  height: 14px
}

.vv-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bo);
  background: var(--bg3);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all .15s
}

.vv-cart-btn:hover {
  border-color: var(--ac);
  transform: translateY(-1px)
}

.cart-c {
  background: var(--ac);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  min-width: 20px;
  text-align: center
}

.vv-nav {
  padding: 0 5vw 8px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none
}

.vv-nav::-webkit-scrollbar {
  display: none
}

.vv-nav-link {
  text-decoration: none;
  color: var(--ink2);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  white-space: nowrap
}

.vv-nav-link.active {
  color: var(--ac);
  border-bottom-color: var(--ac)
}

.vv-hero {
  margin: 0 0 10px;
  padding: 0 5vw
}

.vv-hero-media {
  position: relative;
  min-height: 290px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(130deg, var(--hero-fallback), var(--ac));
  transition: min-height .2s ease
}

.vv-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--vv-hero-overlay-start), var(--vv-hero-overlay-end));
  pointer-events: none
}

.vv-hero-media.has-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.vv-hero-media.is-banner {
  min-height: 336px
}

.vv-hero-media.is-fallback {
  background: linear-gradient(130deg, var(--hero-fallback), var(--ac));
  min-height: 286px
}

.vv-hero-media.is-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 10% 100%, rgba(255, 255, 255, .12), transparent 65%),
    radial-gradient(70% 90% at 90% 0%, rgba(255, 255, 255, .08), transparent 62%),
    repeating-linear-gradient(-35deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 26px);
  pointer-events: none
}

.vv-hero-watermark {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-family: var(--fd);
  font-size: clamp(32px, 8vw, 74px);
  font-weight: 700;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, var(--vv-hero-watermark-opacity));
  line-height: .88;
  pointer-events: none;
  text-align: right;
  max-width: 80%;
  text-transform: uppercase;
  text-wrap: balance
}

.vv-hero-watermark.is-long {
  font-size: clamp(26px, 6vw, 56px)
}

.vv-hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 26px 28px;
  max-width: 620px;
  color: #fff
}

.vv-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .84);
  margin-bottom: 10px
}

.vv-hero-eyebrow .vv-ico {
  width: 14px;
  height: 14px
}

.vv-hero-title {
  font-family: var(--fd);
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.03em;
  margin-bottom: 10px;
  text-wrap: balance;
  text-shadow: var(--vv-hero-title-shadow)
}

.vv-hero-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .9);
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2)
}

.vv-hero-media.has-long-copy .vv-hero-content {
  max-width: 700px
}

.vv-hero-media.has-long-copy .vv-hero-sub {
  max-width: 660px
}

.vv-toolbar {
  position: sticky;
  top: 112px;
  z-index: 200;
  background: var(--bg);
  border-top: 1px solid var(--bo2);
  border-bottom: 1px solid var(--bo);
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.vv-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1
}

.vv-filters::-webkit-scrollbar {
  display: none
}

.vv-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid var(--bo);
  border-radius: 999px;
  background: var(--bg2);
  color: var(--ink2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap
}

.vv-chip.active {
  background: var(--ac);
  color: #fff;
  border-color: var(--ac)
}

.vv-counter {
  font-size: 12px;
  color: var(--ink3);
  white-space: nowrap
}

.vv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 5vw 48px;
  max-width: 1400px;
  margin: 0 auto
}

@media(max-width:1100px) {
  .vv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:620px) {
  .vv-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 34px
  }
}

.vv-card {
  background: var(--bg2);
  border: 1px solid var(--bo2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 34px -24px rgba(10, 20, 14, .35);
  cursor: pointer;
  transition: transform .18s, box-shadow .2s, border-color .2s;
  animation: fadeUp .3s ease both
}

.vv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px -20px rgba(10, 20, 14, .38);
  border-color: rgba(31, 59, 44, .2)
}

.vv-card-media {
  aspect-ratio: 1/1.04;
  position: relative;
  overflow: hidden;
  background: var(--bg3)
}

.vv-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s
}

.vv-card:hover .vv-card-image {
  transform: scale(1.04)
}

.vv-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 32px;
  color: rgba(255, 255, 255, .92)
}

.vv-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ac2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

.vv-card-badge.is-off {
  background: rgba(31, 59, 44, .8)
}

.vv-card-footer {
  position: absolute;
  inset: auto 10px 10px 10px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none
}

.vv-card-cta {
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer
}

.vv-card-cta .vv-ico {
  width: 14px;
  height: 14px
}

.vv-card-info {
  padding: 14px 14px 16px
}

.vv-card-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ac);
  font-weight: 600;
  margin-bottom: 4px
}

.vv-card-name {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 8px
}

.vv-card-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px dashed var(--bo);
  padding-top: 8px
}

.vv-card-price strong {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink)
}

.vv-card-price span {
  font-size: 11px;
  color: var(--ink3)
}

.vv-detail-view {
  display: none;
  min-height: 100vh;
  animation: fadeIn .28s ease both
}

.vv-detail-view.active {
  display: block
}

.vv-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bo);
  background: var(--bg2);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer
}

.vv-back .vv-ico {
  width: 14px;
  height: 14px
}

.vv-detail-shell {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 5vw 44px
}

.vv-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px
}

.vv-detail-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink2);
  font-size: 12px
}

.vv-detail-brand .vv-ico {
  width: 15px;
  height: 15px;
  color: var(--ac)
}

.vv-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 24px
}

@media(max-width:940px) {
  .vv-detail-grid {
    grid-template-columns: 1fr
  }
}

.vv-gallery {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr;
  gap: 10px
}

@media(max-width:760px) {
  .vv-gallery {
    grid-template-columns: 1fr 1fr
  }
}

.vv-gallery-main {
  grid-row: span 2;
  min-height: 420px
}

@media(max-width:760px) {
  .vv-gallery-main {
    grid-column: 1/-1;
    min-height: 280px
  }
}

.vv-gallery-item,
.vv-gallery-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg3)
}

.vv-gallery-item img,
.vv-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.vv-gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 28px;
  color: rgba(255, 255, 255, .9)
}

.vv-detail-card {
  background: var(--bg2);
  border: 1px solid var(--bo2);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 30px -24px rgba(10, 20, 14, .35)
}

.vv-detail-cat {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ac);
  font-weight: 700;
  margin-bottom: 8px
}

.vv-detail-name {
  font-family: var(--fd);
  font-size: 44px;
  line-height: .94;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 10px
}

.vv-detail-price {
  font-family: var(--fd);
  font-size: 52px;
  line-height: .95;
  color: var(--ac);
  margin-bottom: 14px
}

.vv-detail-copy {
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px
}

.vv-detail-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.vv-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--bo);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--ink3);
  background: var(--bg)
}

.vv-detail-tag .vv-ico {
  width: 13px;
  height: 13px
}

.vv-detail-actions {
  display: grid;
  gap: 8px
}

.vv-cta-wa,
.vv-cta-add {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

.vv-cta-wa {
  background: var(--wa);
  color: #fff;
  text-decoration: none
}

.vv-cta-add {
  background: var(--ac2);
  color: #fff
}

.vv-cta-wa .vv-ico,
.vv-cta-add .vv-ico {
  width: 15px;
  height: 15px
}

.vv-cta-wa .wa-ico,
.cp-wa .wa-ico,
.wa-fab .wa-ico,
.vv-footer-link .wa-ico {
  width: 14px;
  height: 14px
}

.vv-cta-off {
  padding: 12px;
  border: 1px solid var(--bo);
  border-radius: 12px;
  background: var(--bg3);
  text-align: center;
  color: var(--ink3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

.vv-related {
  margin-top: 18px
}

.vv-related-title {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 700;
  margin-bottom: 10px
}

.vv-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px
}

.vv-related-card {
  cursor: pointer
}

.vv-related-media {
  aspect-ratio: 1/1;
  background: var(--bg3);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.vv-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.vv-related-ph {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--ink3)
}

.vv-related-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1.3
}

.vv-related-price {
  font-size: 12px;
  color: var(--ac);
  font-weight: 700
}

.cart-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .38);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s
}

.cart-ov.open {
  opacity: 1;
  pointer-events: all
}

.cpanel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  max-width: 100vw;
  background: #fff;
  z-index: 300;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  border-left: 1px solid var(--bo);
  display: flex;
  flex-direction: column
}

.cpanel.open {
  transform: translateX(0)
}

.cp-hd {
  padding: 18px 20px;
  border-bottom: 1px solid var(--bo);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cp-lbl {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink)
}

.cp-x {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--bg3);
  color: var(--ink3);
  border: 0;
  cursor: pointer
}

.cp-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px
}

.cp-empty {
  text-align: center;
  padding: 36px 0;
  color: var(--ink3);
  font-size: 13px
}

.ci {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bo2)
}

.ci-img {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center
}

.ci-ph {
  font-family: var(--fd);
  font-size: 20px;
  color: var(--ink3)
}

.ci-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3
}

.ci-var {
  font-size: 11px;
  color: var(--ink3);
  margin: 2px 0
}

.ci-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ac)
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px
}

.qb {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--bo);
  background: #fff;
  cursor: pointer;
  color: var(--ink)
}

.qv {
  min-width: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink)
}

.cp-ft {
  padding: 14px 20px 20px;
  border-top: 1px solid var(--bo)
}

.cp-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px
}

.cp-tl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 700
}

.cp-tn {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink)
}

.cp-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

.cp-wa .vv-ico {
  width: 14px;
  height: 14px
}

.wa-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 305;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .3)
}

.wa-fab .vv-ico {
  width: 20px;
  height: 20px
}

.wa-fab .wa-ico {
  width: 20px;
  height: 20px
}

@media(max-width:900px) {
  .wa-fab {
    display: inline-flex
  }
}

.vv-sentinel {
  height: 1px
}

.vv-spin {
  display: none;
  text-align: center;
  padding: 16px 0;
  color: var(--ink3);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase
}

.vv-spin.on {
  display: block
}

.vv-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  padding: 28px 5vw 22px;
  border-top: 6px solid var(--ac2)
}

.vv-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

@media(max-width:760px) {
  .vv-footer-grid {
    grid-template-columns: 1fr
  }
}

.vv-footer-logo {
  font-family: var(--fd);
  font-size: 26px;
  color: #fff;
  line-height: 1.1
}

.vv-footer-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin-top: 6px
}

.vv-footer-h {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  font-weight: 700;
  margin-bottom: 8px
}

.vv-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  margin-bottom: 5px
}

.vv-footer-link .vv-ico {
  width: 14px;
  height: 14px
}

.vv-footer-bottom {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, .45)
}

.vv-footer-bottom a {
  color: rgba(255, 255, 255, .62);
  text-decoration: none
}

.wa-ref {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

@media(max-width:920px) {
  .vv-header-inner {
    padding: 10px 16px
  }

  .vv-nav,
  .vv-hero,
  .vv-toolbar,
  .vv-grid,
  .vv-detail-shell,
  .vv-footer {
    padding-left: 16px;
    padding-right: 16px
  }

  .vv-location {
    display: none
  }

  .vv-actions {
    gap: 8px
  }
}

@media(max-width:760px) {
  .vv-ann {
    padding: 7px 10px;
    font-size: 10px
  }

  .vv-hero-media {
    min-height: 248px;
    border-radius: 20px
  }

  .vv-hero-media.is-banner {
    min-height: 282px
  }

  .vv-hero-media.is-fallback {
    min-height: 238px
  }

  .vv-hero-media.has-long-copy.is-banner {
    min-height: 304px
  }

  .vv-hero-content {
    padding: 20px 16px 20px
  }

  .vv-hero-title {
    font-size: clamp(28px, 9vw, 42px)
  }

  .vv-hero-sub {
    font-size: 13px;
    line-height: 1.55
  }

  .vv-hero-watermark {
    right: 12px;
    bottom: 10px;
    font-size: clamp(24px, 11vw, 40px);
    max-width: 92%
  }

  .vv-hero-watermark.is-long {
    font-size: clamp(20px, 8vw, 32px)
  }

  .vv-toolbar {
    top: 104px;
    padding-top: 8px;
    padding-bottom: 8px
  }
}