/* Static preview adapter: keep the original hero animation when the theme
   runtime succeeds, but provide a final-state fallback for offline previews. */
:root {
  --vv-bg: #07080d;
  --vv-surface: rgba(18, 20, 31, .76);
  --vv-surface-strong: rgba(12, 14, 23, .92);
  --vv-panel-border: rgba(255, 255, 255, .12);
  --vv-panel-shadow: 0 22px 80px rgba(0, 0, 0, .45);
  --vv-glow-green: rgba(191, 238, 22, .32);
  --vv-glow-cyan: rgba(72, 197, 255, .22);
  --vv-copy: #f3f5f7;
  --vv-copy-muted: rgba(228, 231, 236, .72);
  --vv-radius-xl: 32px;
  --vv-radius-lg: 24px;
  --vv-radius-md: 18px;
}

html {
  background:
    radial-gradient(circle at top, rgba(191, 238, 22, .08), transparent 28%),
    linear-gradient(180deg, #090b12 0%, #07080d 38%, #08080d 100%);
  color: var(--vv-copy);
}

body {
  background:
    radial-gradient(circle at 14% 14%, rgba(191, 238, 22, .08), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(72, 197, 255, .07), transparent 20%),
    linear-gradient(180deg, #08090f 0%, #090b11 42%, #07080d 100%);
  color: var(--vv-copy);
}

body.vv-home-preload {
  visibility: hidden;
  opacity: 0;
}

body.vv-home-ready {
  visibility: visible;
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 85%);
}

::selection {
  background: rgba(191, 238, 22, .28);
  color: #fff;
}

body.vv-hero-fallback .nav,
body.vv-hero-fallback .hero-video-container,
body.vv-hero-fallback .hero-cta-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body.vv-hero-fallback .nav {
  top: 18px !important;
  bottom: auto !important;
}

body.vv-hero-fallback .hero-video-container {
  width: 100% !important;
  height: 100svh !important;
  border-radius: 0 !important;
  background: #0d0b14 url("vv-assets/sticker.pg_.jpg") center / cover no-repeat;
}

body.vv-hero-fallback .hero-video-container video {
  opacity: 1 !important;
  background: #0d0b14 url("vv-assets/sticker.pg_.jpg") center / cover no-repeat;
}

body.vv-hero-fallback .hero-cta-panel {
  bottom: 88px !important;
}

@media (min-width: 769px) {
  body.vv-hero-fallback .hero-cta-panel {
    bottom: 40px !important;
  }
}

#product-nav-widget {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.hero-index {
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 238, 22, .16), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(72, 197, 255, .13), transparent 18%),
    linear-gradient(180deg, #090b11 0%, #06070b 100%);
}

.hero-index::before,
.hero-index::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.hero-index::before {
  width: 38vw;
  height: 38vw;
  top: 6%;
  left: -10%;
  background: radial-gradient(circle, rgba(191, 238, 22, .2), transparent 70%);
}

.hero-index::after {
  width: 34vw;
  height: 34vw;
  right: -8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(72, 197, 255, .17), transparent 72%);
}

.hero-video-container {
  box-shadow:
    0 30px 120px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(255, 255, 255, .08);
}

.hero-video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 11, .1) 0%, rgba(6, 7, 11, .4) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 36%);
  pointer-events: none;
}

.hero-cta-panel {
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--vv-radius-xl);
  background:
    linear-gradient(180deg, rgba(20, 24, 36, .78), rgba(12, 14, 23, .92));
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .38);
}

.hero-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
}

.hero-cta-panel .grey-panel-header {
  border-color: rgba(255, 255, 255, .09) !important;
}

.hero-cta-panel .hero-cta-content .h1 {
  text-shadow: 0 12px 28px rgba(0, 0, 0, .26);
}

.hero-cta-panel .button-primary {
  min-height: 60px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d5ff49 0%, #bfee16 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .65),
    0 14px 32px rgba(191, 238, 22, .2);
}

.hero-cta-panel .button-primary .button-text {
  letter-spacing: .08em;
}

#HeroIndexCta.hero-cta-panel.grey-panel {
  background: rgba(16, 20, 29, .18) !important;
  backdrop-filter: blur(3px) saturate(118%) !important;
  -webkit-backdrop-filter: blur(3px) saturate(118%) !important;
  box-shadow: 0 14px 42px rgba(0, 0, 0, .22) !important;
}

#HeroIndexCta.hero-cta-panel.grey-panel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .3),
    transparent
  ) !important;
}

#HeroIndexCta.hero-cta-panel.grey-panel .hero-cta-body {
  padding-top: 18px !important;
  padding-bottom: 0 !important;
}

@media (min-width: 769px) {
  #HeroIndexCta.hero-cta-panel.grey-panel .hero-cta-body {
    padding-top: 18px !important;
    column-gap: 1.5rem !important;
  }
}

@media (min-width: 769px) {
  #product-nav-widget {
    display: block !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: 999;
    position: fixed;
    top: 2.5rem;
    right: 19.6rem;
    max-width: none;
    overflow: visible;
    padding: .375rem;
    height: 4.25rem;
    border-radius: 8px;
    background-color: var(--grey-9-60);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
  }

  #product-nav-widget::-webkit-scrollbar {
    display: none;
  }

  #product-nav-widget.vv-widget-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 768px) {
  #product-nav-widget {
    display: none !important;
  }
}

.showcase-product-img {
  object-fit: cover;
}

.product-showcase-frontpage {
  min-height: 100svh;
  background:
    radial-gradient(circle at top, rgba(191, 238, 22, .12), transparent 24%),
    linear-gradient(180deg, #06070b 0%, #090c16 100%);
}

.showcase-background-overlay {
  background-image: url("vv-assets/Nicole.jpg");
}

.showcase-background-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .46);
}

.showcase-stack-container,
.showcase-card,
.showcase-grid,
.showcase-column,
.showcase-details-content {
  visibility: visible !important;
}

.showcase-card {
  opacity: 1 !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

.showcase-card.is-vv-active {
  z-index: 50 !important;
}

.product-showcase-nav-thumb {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: .6;
  transition: opacity .3s ease;
}

.product-showcase-nav-thumb.active {
  opacity: 1;
}

.product-showcase-nav-thumb:hover,
.product-showcase-nav-thumb:focus-visible {
  opacity: 1;
}

.product-showcase-nav-img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.showcase-grid {
  background:
    linear-gradient(180deg, rgba(18, 21, 32, .94), rgba(10, 12, 20, .98));
}

.showcase-content-wrapper,
.showcase-details-content {
  position: relative;
  z-index: 1;
}

.showcase-heading {
  max-width: 13ch;
  line-height: .96;
}

.showcase-product-brand,
.showcase-price-stock-wrapper,
.showcase-button-group,
.showcase-variants-wrapper {
  position: relative;
  z-index: 1;
}

.showcase-product-description .d-body,
.showcase-product-description p {
  color: var(--vv-copy-muted);
}

.showcase-product-title {
  font-size: clamp(28px, 2.5vw, 40px);
}

.showcase-product-price {
  color: #fff;
  font-weight: 600;
}

.showcase-stock-status {
  color: #bfee16;
}

.showcase-button-group .button-primary {
  border-radius: 999px;
}

.showcase-button-group .button-primary--white {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 14px 28px rgba(191, 238, 22, .16);
}

.showcase-button-group .button-primary--grey {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.showcase-button-group .button-primary--grey .button-text {
  color: #fff;
}

.variant-color-button {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 0 rgba(191, 238, 22, 0);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.variant-color-button.selected {
  transform: scale(1.08);
  border-color: rgba(191, 238, 22, .8);
  box-shadow: 0 0 0 5px rgba(191, 238, 22, .12);
}

@media (max-width: 768px) {
  .hero-video-container {
    height: 100svh !important;
  }

  .product-showcase-frontpage {
    height: auto !important;
    overflow: visible !important;
    padding: 28px 0;
  }

  .showcase-background-container {
    display: none;
  }

  .showcase-stack-container {
    position: static !important;
    display: grid !important;
    gap: 16px;
    height: auto !important;
    padding: 0 14px;
  }

  .showcase-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    border-radius: 24px;
  }
}

.index-text-scroll {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(191, 238, 22, .14), transparent 20%),
    linear-gradient(180deg, #0a0b11 0%, #08080d 100%) !important;
}

.index-text-scroll::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 13, .28), rgba(7, 8, 13, .72)),
    url("vv-assets/sticker.pg_.jpg") center / cover no-repeat;
  opacity: .24;
}

.index-text-scroll-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  padding: 0 20px;
}

.index-text-scroll .big-text {
  line-height: .92;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.index-text-scroll video {
  display: inline-block;
  width: clamp(92px, 14vw, 168px);
  height: clamp(58px, 8vw, 94px);
  margin: 0 .18em;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .26);
}

.vv-live-store {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(191, 238, 22, .12), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(72, 197, 255, .12), transparent 18%),
    linear-gradient(180deg, #0a0b12 0%, #090a11 100%);
  color: #ffffff;
  min-height: 100vh;
  padding: 112px 20px;
}

.vv-live-store::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: .16;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
}

.vv-live-store-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.vv-live-store-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.vv-live-store-heading .d-eyebrow {
  color: var(--yellow, #bfee16);
  margin: 0;
}

.vv-live-store-heading .h2 {
  max-width: 840px;
  margin: 0;
  line-height: .96;
}

.vv-live-store-heading .button-primary {
  justify-self: start;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 18px 36px rgba(191, 238, 22, .16);
}

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

.vv-category-tile {
  position: relative;
  display: flex;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  color: #ffffff;
  text-decoration: none;
  background: #202020;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  transform: translateY(0);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.vv-category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.vv-category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 11, 20, .04) 16%, rgba(13, 11, 20, .86) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 35%);
}

.vv-category-tile:hover img {
  transform: scale(1.04);
}

.vv-category-tile:hover,
.vv-category-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(191, 238, 22, .26);
  box-shadow: 0 28px 56px rgba(0, 0, 0, .34);
}

.vv-category-name,
.vv-category-count {
  position: absolute;
  z-index: 1;
  left: 16px;
}

.vv-category-name {
  bottom: 48px;
  font-size: 24px;
  font-weight: 500;
}

.vv-category-count {
  bottom: 22px;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vv-review-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.vv-review-heading,
.vv-review-tile {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(22, 24, 33, .92), rgba(14, 16, 24, .96));
  margin: 0;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.vv-review-heading {
  color: var(--yellow, #bfee16);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.vv-review-tile blockquote {
  margin: 0 0 18px;
  color: #f2f4f7;
  font-size: 20px;
  line-height: 1.35;
}

.vv-review-tile figcaption {
  color: #bdbec0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vv-review-tile span {
  color: var(--yellow, #bfee16);
}

@media (min-width: 768px) {
  .vv-live-store-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .vv-live-store-heading .d-eyebrow {
    grid-column: 1 / -1;
  }

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

  .vv-category-tile {
    min-height: 340px;
  }

  .vv-review-row {
    grid-template-columns: .8fr repeat(3, 1fr);
  }
}

.logo img {
  object-fit: contain;
}

.index-faq-section,
.newsletter-footer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(191, 238, 22, .08), transparent 20%),
    linear-gradient(180deg, #080910 0%, #090b11 100%);
}

.index-faq-section::before,
.newsletter-footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 13, .18), rgba(7, 8, 13, .72));
  z-index: 0;
}

.index-faq-content-wrapper,
.newsletter-section-content-wrapper {
  position: relative;
  z-index: 1;
}

.index-faq-content-wrapper .grey-panel,
.newsletter-section-content-wrapper .grey-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(18, 21, 32, .78), rgba(11, 14, 23, .92));
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--vv-panel-shadow);
}

.index-faq-content-wrapper .grey-panel::before,
.newsletter-section-content-wrapper .grey-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
}

.index-faq-block.grey-panel {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: rgba(15, 17, 26, .84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.index-faq-answer .d-body-large,
.newsletter-intro-text p {
  color: var(--vv-copy-muted);
}

.newsletter-input-wrapper {
  gap: 14px;
}

.newsletter-form-element-wrap.left-round,
.newsletter-form-element-wrap.right-round {
  border-radius: 999px !important;
}

.newsletter-form-element-wrap.left-round {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.newsletter-form-element-wrap.right-round .button-secondary {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8ff57 0%, #bfee16 100%);
  color: #0d0b14;
  letter-spacing: .1em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .7),
    0 18px 36px rgba(191, 238, 22, .14);
}

.field__input {
  color: #fff;
}

.field__input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.checkbox-container label {
  color: rgba(255, 255, 255, .68);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 54px 20px 96px;
  background:
    radial-gradient(circle at top, rgba(191, 238, 22, .08), transparent 26%),
    linear-gradient(180deg, #08090f 0%, #05060b 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .18;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 86%, transparent);
}

.footer-content,
.footer-copyright,
.go-to-top,
.big-footer-logo {
  position: relative;
  z-index: 1;
}

.go-to-top a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .82);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1480px;
  margin: 28px auto 24px;
}

.footer-section {
  position: relative;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 21, 32, .78), rgba(11, 14, 23, .9));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent);
  pointer-events: none;
}

.footer-section.introductory-text {
  grid-column: span 2;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 28px 24px;
  background:
    radial-gradient(circle at top left, rgba(191, 238, 22, .08), transparent 34%),
    linear-gradient(180deg, rgba(18, 21, 32, .82), rgba(11, 14, 23, .94));
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
}

.footer-section h3 {
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: .96;
}

.footer-section h4 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .08em;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, .72);
}

.footer-section a:hover,
.footer-section a:focus-visible {
  color: #fff;
}

.footer-lead {
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
}

.footer-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.footer-section ul {
  display: grid;
  gap: 10px;
}

.footer-section li {
  position: relative;
}

.footer-section li + li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-section ul a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  line-height: 1.45;
}

.footer-section.column-1,
.footer-section.column-2,
.footer-section.column-3,
.footer-section.column-4 {
  min-height: 100%;
}

.footer-copyright {
  margin-top: 20px;
  color: rgba(255, 255, 255, .56);
}

.big-footer-logo {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 28px;
  min-height: 680px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(18, 21, 32, .58), rgba(11, 14, 23, .78));
}

.big-footer-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 11, 0) 0%,
      rgba(5, 6, 11, .05) 34%,
      rgba(5, 6, 11, .24) 48%,
      rgba(5, 6, 11, .66) 68%,
      rgba(5, 6, 11, .9) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.big-footer-logo img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: left center;
  opacity: .52;
  filter: blur(.2px) drop-shadow(0 18px 46px rgba(191, 238, 22, .08));
}

.discord-footer-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(44%, 500px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
  z-index: 2;
}

.discord-footer-panel {
  width: 100%;
  max-width: 420px;
  margin: 24px 24px 24px 0;
  padding: 22px 20px 18px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-self: stretch;
  border-left: 1px solid rgba(255, 255, 255, .12);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(18, 22, 34, .76), rgba(8, 10, 18, .94));
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .36),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  pointer-events: auto;
}

.discord-footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.discord-footer-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(88, 101, 242, .18);
  border: 1px solid rgba(88, 101, 242, .32);
  color: #dbe2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.discord-footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.discord-footer-copy {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.discord-footer-kicker {
  margin: 0 0 6px;
  color: #bfee16;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.discord-footer-copy h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 30px);
  line-height: .98;
}

.discord-footer-text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.45;
}

.discord-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.discord-footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 600;
}

.discord-footer-widget {
  width: 100%;
  min-height: 0;
  padding: 10px;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 9, 15, .9), rgba(10, 12, 18, .98));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

.discord-footer-widget iframe {
  display: block;
  flex: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 470px;
  border: 0;
  border-radius: 14px;
}

.vv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.vv-reveal.vv-inview {
  opacity: 1;
  transform: translateY(0);
}

.vv-skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  background: #bfee16;
  color: #0d0b14;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.vv-skip-link:focus {
  position: fixed !important;
  overflow: visible !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  clip: auto !important;
  transform: translateY(0);
}

body.vv-dialog-open {
  overflow: hidden;
}

:where(a, button, [role="button"], input, select, textarea):focus-visible {
  outline: 2px solid #bfee16;
  outline-offset: 3px;
}

#product-showcase-frontpage,
.showcase-card,
#vv-live-store,
.index-faq-section,
.footer,
#MainContent {
  scroll-margin-top: 108px;
}

#closeProductsPopup,
#closeCartDrawerPopup,
#closeVariantPopup {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .vv-reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .footer-section.introductory-text {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-cta-panel {
    left: 14px;
    right: 14px;
    border-radius: 24px;
  }

  .hero-cta-panel .hero-cta-button .button-primary {
    width: 100%;
  }

  .index-text-scroll .big-text {
    font-size: clamp(44px, 10vw, 84px);
  }

  .index-text-scroll video {
    width: 104px;
    height: 64px;
  }

  .vv-live-store,
  .footer {
    padding-inline: 14px;
  }

  .vv-category-grid,
  .vv-review-row,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section.introductory-text {
    grid-column: auto;
  }

  .footer-section {
    padding: 18px;
  }

  .footer-section.introductory-text {
    padding: 22px 18px 18px;
  }

  .big-footer-logo,
  .big-footer-logo img {
    min-height: 560px;
  }

  .discord-footer-overlay {
    left: 0;
    justify-content: center;
    width: 100%;
    padding: 18px;
    align-items: flex-end;
  }

  .discord-footer-panel {
    width: min(100%, 400px);
    max-width: 400px;
    margin: 0;
    padding: 16px 14px 14px;
  }

  .discord-footer-widget iframe {
    min-height: 390px;
  }
}
