/*
 * Custom home redesign inspired by the provided dark/blue reference.
 * You can safely edit this file to change spacing, colors, animations, and hero visuals.
*/

:root {
  --edge-blue: rgb(var(--cl-accent, 0, 169, 255));
  --edge-blue-soft: rgba(var(--cl-accent, 0, 169, 255), 0.22);
  --edge-bg: #03070d;
  --edge-card: rgba(7, 17, 29, 0.82);
  --edge-border: rgba(255, 255, 255, 0.08);
  --edge-muted: rgba(248, 251, 255, 0.68);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--cl-accent), 0.10), transparent 38rem),
    radial-gradient(circle at 0% 30%, rgba(var(--cl-accent), 0.06), transparent 30rem),
    var(--edge-bg) !important;
  overflow-x: hidden;
}

#particles-js {
  opacity: 0.28;
  pointer-events: none;
}

/* Full-width glass navbar */
nav[data-component-id="navbar"] {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1rem;
  margin-bottom: 1.25rem;
}

nav[data-component-id="navbar"] > div {
  width: 100%;
  background: rgba(3, 7, 13, 0.92) !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 !important;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: visible;
}

nav[data-component-id="navbar"] > div > div {
  max-width: 85rem;
  min-height: 4.15rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

nav[data-component-id="navbar"] > div > div > div:first-child {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

nav[data-component-id="navbar"] [x-ref="menu"] > div {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

nav[data-component-id="navbar"] a,
nav[data-component-id="navbar"] button {
  border-radius: 9px !important;
}

@media (min-width: 768px) {
  nav[data-component-id="navbar"] {
    margin-top: -1.5rem;
  }
}

@media (min-width: 1024px) {
  nav[data-component-id="navbar"] {
    margin-top: -2rem;
  }
}

/* Full-bleed hero */
.edge-home-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -0.25rem;
  position: relative;
}

.edge-hero-frame {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.edge-hero-background,
.edge-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.edge-hero-background {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(3, 7, 13, 0.35) 0%, rgba(3, 7, 13, 0.76) 70%, rgba(3, 7, 13, 0.98) 100%),
    radial-gradient(circle at 20% 45%, rgba(var(--cl-accent), 0.21), transparent 23rem),
    radial-gradient(circle at 80% 40%, rgba(var(--cl-accent), 0.18), transparent 23rem),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 25rem),
    #02050a;
}

.edge-hero-grid {
  z-index: -3;
  opacity: 0.75;
  background-image:
    radial-gradient(circle, rgba(var(--cl-accent), 0.45) 1px, transparent 1.4px),
    linear-gradient(90deg, rgba(var(--cl-accent), 0.10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(var(--cl-accent), 0.08) 1px, transparent 1px);
  background-size: 20px 20px, 88px 88px, 88px 88px;
  mask-image: radial-gradient(ellipse at center, black 0%, black 38%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 38%, transparent 75%);
  transform: perspective(900px) rotateX(58deg) scale(1.35) translateY(-7%);
  transform-origin: center top;
  animation: edgeGridDrift 18s linear infinite;
}

.edge-hero-frame::before,
.edge-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.edge-hero-frame::before {
  z-index: -2;
  opacity: 0.22;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 255, 255, 0.05) 8px),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(var(--cl-accent), 0.05) 31px);
  mix-blend-mode: screen;
}

.edge-hero-frame::after {
  z-index: 4;
  background: linear-gradient(180deg, transparent 72%, var(--edge-bg) 100%);
}

.edge-hero-glow {
  position: absolute;
  width: clamp(16rem, 24vw, 30rem);
  aspect-ratio: 1;
  border-radius: 999px;
  z-index: -1;
  filter: blur(50px);
  opacity: 0.38;
  background: var(--edge-blue);
  animation: edgePulse 5.5s ease-in-out infinite;
}

.edge-hero-glow-left {
  left: 4%;
  top: 20%;
}

.edge-hero-glow-right {
  right: 4%;
  top: 18%;
  animation-delay: 1.1s;
}

.edge-hero-content {
  width: min(92vw, 980px);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 9rem) 1.25rem clamp(5rem, 8vw, 7rem);
  position: relative;
  z-index: 5;
  text-align: center;
}

.edge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(var(--cl-accent), 0.32);
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.82);
  background: rgba(5, 12, 22, 0.66);
  box-shadow: 0 0 30px rgba(var(--cl-accent), 0.13);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edge-eyebrow i {
  color: var(--edge-blue);
}

.edge-hero-title {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(3rem, 8vw, 6.85rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.55);
}

.edge-gradient-text {
  color: var(--edge-blue);
  background: linear-gradient(135deg, #6ee4ff 0%, var(--edge-blue) 42%, #0077ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(var(--cl-accent), 0.36));
}

.edge-hero-subtitle {
  width: min(92vw, 620px);
  margin: 1.25rem auto 0;
  color: var(--edge-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
  font-weight: 600;
}

.edge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.edge-hero-actions a {
  min-height: 3.15rem;
  padding: 0.9rem 1.45rem !important;
  border-radius: 12px !important;
  border-color: rgba(var(--cl-accent), 0.86) !important;
  background: linear-gradient(135deg, rgba(var(--cl-accent), 1), rgba(0, 102, 255, 1)) !important;
  color: #ffffff !important;
  box-shadow: 0 1rem 2.5rem rgba(var(--cl-accent), 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease !important;
}

.edge-hero-actions a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 1.35rem 3rem rgba(var(--cl-accent), 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.edge-hero-search {
  width: min(92vw, 560px);
  margin: 1.5rem auto 0;
}

.edge-agent {
  position: absolute;
  z-index: 2;
  top: 15%;
  width: clamp(190px, 21vw, 360px);
  height: clamp(360px, 48vw, 620px);
  opacity: 0.88;
  pointer-events: none;
  filter: drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.65));
}

.edge-agent-left {
  left: max(1rem, calc((100vw - 92rem) / 2));
}

.edge-agent-right {
  right: max(1rem, calc((100vw - 92rem) / 2));
}

.edge-agent-card {
  position: absolute;
  inset: 5% 12% 0;
  border-radius: 48% 48% 8% 8% / 18% 18% 8% 8%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), transparent 22%),
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.20) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(var(--cl-accent), 0.28), rgba(255, 255, 255, 0.04) 48%, rgba(var(--cl-accent), 0.18));
  border: 1px solid rgba(var(--cl-accent), 0.25);
  box-shadow: inset 0 0 60px rgba(var(--cl-accent), 0.12);
  animation: edgeFloat 6s ease-in-out infinite;
}

.edge-agent-left .edge-agent-card {
  transform: rotate(-5deg);
}

.edge-agent-right .edge-agent-card {
  transform: rotate(5deg);
  animation-delay: 0.8s;
}

.edge-agent-card::before {
  content: "";
  position: absolute;
  inset: 23% 18% auto;
  height: 18%;
  border-radius: 999px 999px 24px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(var(--cl-accent),0.18));
}

.edge-agent-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 82%;
  height: 58%;
  transform: translateX(-50%);
  border-radius: 42% 42% 8px 8px / 28% 28% 8px 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(var(--cl-accent),0.26) 50%, transparent 51%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.18)),
    rgba(7, 17, 29, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
}

.edge-agent-badge {
  position: absolute;
  left: 50%;
  top: 9%;
  transform: translateX(-50%);
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--edge-blue);
  background: rgba(2, 5, 10, 0.82);
  border: 1px solid rgba(var(--cl-accent), 0.28);
  box-shadow: 0 0 26px rgba(var(--cl-accent), 0.22);
}

.edge-agent-line {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--cl-accent), 0.9), transparent);
}

.edge-agent-line-one {
  left: 16%;
  right: 16%;
  top: 49%;
}

.edge-agent-line-two {
  left: 25%;
  right: 25%;
  top: 57%;
  opacity: 0.62;
}

.edge-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 6;
  width: 1.65rem;
  height: 2.7rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.45rem;
  opacity: 0.7;
}

.edge-scroll-cue span {
  width: 0.28rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--edge-blue);
  animation: edgeScrollCue 1.35s ease-in-out infinite;
}

.edge-benefit-strip {
  width: min(92rem, calc(100vw - 2rem));
  margin: -1.45rem auto 3rem;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.edge-benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: rgba(5, 12, 22, 0.82);
  border: 1px solid var(--edge-border);
  border-radius: 16px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.edge-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--cl-accent), 0.42);
  background: rgba(7, 17, 29, 0.94);
}

.edge-benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--edge-blue);
  background: rgba(var(--cl-accent), 0.10);
  border: 1px solid rgba(var(--cl-accent), 0.24);
  box-shadow: inset 0 0 22px rgba(var(--cl-accent), 0.08);
}

.edge-benefit-card h3 {
  margin: 0 0 0.15rem;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 850;
}

.edge-benefit-card p {
  margin: 0;
  color: var(--edge-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

/* Make the content below feel like sections that appear while scrolling. */
.components > .component:not([data-component-id="hero"]) {
  width: min(85rem, calc(100vw - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.components > .component:not([data-component-id="hero"]) > div {
  padding-top: clamp(2rem, 5vw, 4rem) !important;
  padding-bottom: clamp(2rem, 5vw, 4rem) !important;
}

.components > .component:not([data-component-id="hero"]) h1,
.components > .component:not([data-component-id="hero"]) h2 {
  letter-spacing: -0.04em;
}

[data-component-id="products"] a,
[data-component-id="categories"] a,
[data-component-id="features"] .bg-card\/75,
[data-component-id="stats"] .border-b-2 {
  border-radius: 18px !important;
  background: rgba(7, 17, 29, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 1rem 3rem rgba(0,0,0,0.18);
  overflow: hidden;
}

[data-component-id="products"] a:hover,
[data-component-id="categories"] a:hover,
[data-component-id="features"] .bg-card\/75:hover {
  border-color: rgba(var(--cl-accent), 0.45) !important;
  transform: translateY(-3px);
}

[data-component-id="products"] a,
[data-component-id="categories"] a,
[data-component-id="features"] .bg-card\/75 {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease !important;
}

/* Reveal animation. By default everything stays visible if JS does not run. */
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready .smooth-reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition:
      opacity 760ms ease,
      transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-ready .smooth-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes edgeGridDrift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 120px 180px, 88px 0, 0 88px; }
}

@keyframes edgePulse {
  0%, 100% { transform: scale(1); opacity: 0.28; }
  50% { transform: scale(1.12); opacity: 0.45; }
}

@keyframes edgeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

@keyframes edgeScrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(0.95rem); opacity: 0.05; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1180px) {
  .edge-agent {
    opacity: 0.34;
    filter: blur(0.2px) drop-shadow(0 2rem 4rem rgba(0,0,0,0.65));
  }

  .edge-agent-left {
    left: -4rem;
  }

  .edge-agent-right {
    right: -4rem;
  }
}

@media (max-width: 900px) {
  .edge-hero-frame {
    min-height: 680px;
  }

  .edge-agent {
    opacity: 0.18;
    width: 220px;
  }

  .edge-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -0.75rem;
  }
}

@media (max-width: 620px) {
  nav[data-component-id="navbar"] {
    top: 0;
  }

  .edge-home-hero {
    margin-top: 0.5rem;
  }

  .edge-hero-frame {
    min-height: 620px;
    border-radius: 0;
  }

  .edge-hero-content {
    padding-top: 5rem;
  }

  .edge-hero-title {
    font-size: clamp(2.7rem, 16vw, 4.25rem);
  }

  .edge-agent {
    display: none;
  }

  .edge-benefit-strip {
    grid-template-columns: 1fr;
    width: min(100% - 1.5rem, 35rem);
    margin-bottom: 1rem;
  }

  .edge-benefit-card {
    padding: 1rem;
  }
}

/* Scroll sections inspired by the reference: categories + feedback row. */
.edge-purple-text {
  color: #8992ff;
  background: linear-gradient(135deg, #b9bdff 0%, #7f86ff 42%, var(--edge-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(var(--cl-accent), 0.18));
}

.edge-section-inner {
  padding-top: clamp(3.5rem, 6vw, 6rem) !important;
  padding-bottom: clamp(3rem, 5.5vw, 5rem) !important;
}

.edge-categories-section,
[data-component-id="feedbacks"] {
  width: min(72rem, calc(100vw - 2rem)) !important;
}

.edge-split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.edge-section-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.2vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.edge-section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.05rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(4, 9, 16, 0.70);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 1rem 2.5rem rgba(0,0,0,0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.edge-section-button:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--cl-accent), 0.42);
  background: rgba(var(--cl-accent), 0.12);
}

.edge-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.edge-category-card {
  position: relative;
  display: block;
  min-height: clamp(17rem, 24vw, 23rem);
  border-radius: 14px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(5, 12, 22, 0.92) !important;
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.32), 0 0 2.5rem rgba(var(--cl-accent), 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  isolation: isolate;
  transform: translateZ(0);
}

.edge-category-card:hover {
  border-color: rgba(var(--cl-accent), 0.46) !important;
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow: 0 1.8rem 4.5rem rgba(0, 0, 0, 0.38), 0 0 3rem rgba(var(--cl-accent), 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.edge-category-media,
.edge-category-media img,
.edge-category-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.edge-category-media img {
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  transform: scale(1.03);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease, filter 520ms ease;
}

.edge-category-card:hover .edge-category-media img {
  transform: scale(1.09);
  opacity: 1;
  filter: saturate(1.14) contrast(1.06);
}

.edge-category-placeholder {
  display: grid;
  place-items: center;
  color: rgba(var(--cl-accent), 0.62);
  background:
    radial-gradient(circle at 50% 35%, rgba(var(--cl-accent), 0.24), transparent 40%),
    linear-gradient(180deg, rgba(9, 20, 34, 0.94), rgba(4, 9, 16, 0.98));
}

.edge-category-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2,5,10,0.03) 0%, rgba(2,5,10,0.20) 45%, rgba(2,5,10,0.86) 100%),
    radial-gradient(circle at 50% 86%, rgba(var(--cl-accent), 0.28), transparent 35%);
}

.edge-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.52;
  background-image:
    linear-gradient(90deg, rgba(var(--cl-accent), 0.10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(var(--cl-accent), 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, black 32%, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 32%, black 78%, transparent 100%);
  pointer-events: none;
}

.edge-category-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  text-align: left;
}

.edge-category-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0.7rem 1.8rem rgba(0,0,0,0.65);
}

.edge-category-content p {
  max-width: 14rem;
  margin: 0.55rem 0 0;
  color: rgba(248,251,255,0.68);
  font-size: 0.78rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.edge-category-content span {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--edge-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.edge-category-dot {
  position: absolute;
  z-index: 3;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 2px;
  background: #6570ff;
  box-shadow: 0 0 1rem rgba(101, 112, 255, 0.55);
  animation: edgeDotFloat 4s ease-in-out infinite;
}

.edge-category-dot-one { left: 17%; top: 16%; }
.edge-category-dot-two { right: 13%; top: 24%; animation-delay: .6s; }
.edge-category-dot-three { left: 10%; top: 47%; animation-delay: 1.1s; }
.edge-category-dot-four { right: 17%; top: 58%; animation-delay: 1.7s; }

.edge-empty-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2rem;
  color: rgba(248,251,255,0.62);
  background: rgba(5,12,22,0.72);
}

/* Make the benefit row under the hero feel closer to the reference. */
.edge-benefit-strip {
  width: min(72rem, calc(100vw - 2rem));
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  gap: 1.35rem;
}

.edge-benefit-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0.55rem 0.25rem;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.edge-benefit-card:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-2px);
}

.edge-benefit-icon {
  width: 2.9rem;
  height: 2.9rem;
  background: rgba(18, 22, 45, 0.82);
  border-color: rgba(137, 146, 255, 0.22);
  color: #8992ff;
}

.edge-benefit-card h3 {
  font-size: 0.95rem;
}

.edge-benefit-card p {
  font-size: 0.78rem;
  color: rgba(190, 198, 226, 0.70);
}

/* Feedback section: wide title, dark review cards, and 4-card desktop row. */
[data-component-id="feedbacks"] > div {
  padding-top: clamp(2.5rem, 5vw, 5rem) !important;
}

[data-component-id="feedbacks"] .inline-block {
  display: block !important;
  width: 100%;
}

[data-component-id="feedbacks"] h1 {
  text-align: left !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.075em !important;
  font-weight: 950 !important;
}

[data-component-id="feedbacks"] hr {
  display: none !important;
}

[data-component-id="feedbacks"] .flex.items-center.justify-center {
  justify-content: flex-start !important;
  margin-bottom: clamp(1.4rem, 2.6vw, 2rem) !important;
}

[data-component-id="feedbacks"] .grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

[data-component-id="feedbacks"] .cursor-pointer > div {
  min-height: 10.75rem;
  border-radius: 14px;
  background: rgba(9, 14, 22, 0.88) !important;
  border: 1px solid rgba(255,255,255,0.065) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 1.2rem 3rem rgba(0,0,0,0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

[data-component-id="feedbacks"] .cursor-pointer:hover > div {
  transform: translateY(-4px);
  border-color: rgba(137,146,255,0.28) !important;
  background: rgba(12, 18, 28, 0.96) !important;
}

[data-component-id="feedbacks"] .cursor-pointer p {
  color: rgba(190, 198, 226, 0.82) !important;
}

[data-component-id="feedbacks"] .cursor-pointer .border-t {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.055) !important;
}

/* Push stats below the more visual sections and make them less bulky. */
[data-component-id="stats"] {
  width: min(72rem, calc(100vw - 2rem)) !important;
}

[data-component-id="stats"] .grid {
  gap: 0.8rem !important;
}

[data-component-id="stats"] .border-b-2 {
  border-bottom: 0 !important;
  border-radius: 14px !important;
  padding: 1.35rem 1rem !important;
  background: rgba(5,12,22,0.76) !important;
}

@keyframes edgeDotFloat {
  0%, 100% { transform: translateY(0); opacity: .78; }
  50% { transform: translateY(-9px); opacity: 1; }
}

@media (max-width: 1040px) {
  .edge-category-grid,
  [data-component-id="feedbacks"] .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .edge-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .edge-split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .edge-category-grid,
  [data-component-id="feedbacks"] .grid {
    grid-template-columns: 1fr !important;
  }

  .edge-category-card {
    min-height: 20rem;
  }

  .edge-benefit-strip {
    width: min(100% - 1.5rem, 35rem);
    gap: 0.8rem;
  }
}

/* --- June update: tighter benefit strip spacing + image-only category cards --- */
.edge-benefit-strip {
  width: min(74rem, calc(100vw - 2rem));
  margin-top: 0.85rem !important;
  margin-bottom: 2.25rem !important;
  padding-top: 0.45rem;
  row-gap: 1rem;
  column-gap: 1.15rem;
  align-items: stretch;
}

.edge-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 0.8rem 0.4rem !important;
}

.edge-benefit-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.edge-benefit-card h3 {
  margin: 0;
  line-height: 1.15;
}

.edge-benefit-card p {
  margin: 0;
  line-height: 1.45;
}

.edge-categories-section {
  padding-top: 1.2rem;
}

.edge-category-grid--image-only {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  align-items: start;
}

.edge-category-grid--image-only .edge-category-card {
  position: relative;
  display: block;
  min-height: 0 !important;
  aspect-ratio: 2 / 3;
  border-radius: 18px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(5, 12, 22, 0.94) !important;
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.32), 0 0 2.5rem rgba(var(--cl-accent), 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.edge-category-grid--image-only .edge-category-card:hover {
  border-color: rgba(var(--cl-accent), 0.46) !important;
  transform: translateY(-6px) scale(1.012) !important;
  box-shadow: 0 1.8rem 4.5rem rgba(0, 0, 0, 0.38), 0 0 3rem rgba(var(--cl-accent), 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.edge-category-grid--image-only .edge-category-media,
.edge-category-grid--image-only .edge-category-media img,
.edge-category-grid--image-only .edge-category-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.edge-category-grid--image-only .edge-category-media img {
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
  transform: scale(1.001);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.edge-category-grid--image-only .edge-category-card:hover .edge-category-media img {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.03);
}

.edge-category-grid--image-only .edge-category-placeholder {
  display: grid;
  place-items: center;
  color: rgba(var(--cl-accent), 0.62);
  background:
    radial-gradient(circle at 50% 35%, rgba(var(--cl-accent), 0.24), transparent 40%),
    linear-gradient(180deg, rgba(9, 20, 34, 0.94), rgba(4, 9, 16, 0.98));
}

.edge-category-grid--image-only .edge-category-card::before,
.edge-category-grid--image-only .edge-category-card::after,
.edge-category-grid--image-only .edge-category-shade,
.edge-category-grid--image-only .edge-category-content,
.edge-category-grid--image-only .edge-category-dot {
  display: none !important;
  content: none !important;
}

@media (max-width: 1040px) {
  .edge-category-grid--image-only {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .edge-benefit-strip {
    width: min(calc(100vw - 1.5rem), 35rem) !important;
    margin-top: 0.5rem !important;
    margin-bottom: 1.65rem !important;
    gap: 0.8rem;
  }

  .edge-category-grid--image-only {
    grid-template-columns: 1fr !important;
  }

  .edge-category-grid--image-only .edge-category-card {
    aspect-ratio: 2 / 3;
    border-radius: 16px !important;
  }
}

/* --- Hero text + benefit-card fix --- */
.edge-hero-content {
  width: min(94vw, 1040px) !important;
  padding-left: clamp(1rem, 3vw, 2rem) !important;
  padding-right: clamp(1rem, 3vw, 2rem) !important;
}

.edge-hero-title {
  font-size: clamp(3rem, 7vw, 6.15rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -0.065em !important;
  max-width: 12ch;
  margin-left: auto !important;
  margin-right: auto !important;
  text-wrap: balance;
}

.edge-hero-title .edge-gradient-text {
  display: inline-block;
}

.edge-hero-subtitle {
  margin-top: 1.15rem !important;
  max-width: 680px;
}

.edge-benefit-strip {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: min(74rem, calc(100vw - 2rem)) !important;
  margin: 1.35rem auto 2.8rem !important;
  gap: 1rem !important;
  padding: 0 !important;
  align-items: stretch !important;
}

.edge-benefit-card {
  display: flex !important;
  align-items: center !important;
  gap: 0.95rem !important;
  min-width: 0 !important;
  min-height: 5.3rem !important;
  padding: 1rem 1.05rem !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(10, 17, 31, 0.88), rgba(5, 10, 19, 0.78)) !important;
  border: 1px solid rgba(137, 146, 255, 0.16) !important;
  box-shadow:
    0 1rem 2.8rem rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.edge-benefit-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(var(--cl-accent), 0.34) !important;
  background: linear-gradient(180deg, rgba(13, 22, 40, 0.94), rgba(7, 13, 24, 0.86)) !important;
}

.edge-benefit-card > div:not(.edge-benefit-icon) {
  min-width: 0 !important;
  display: block !important;
}

.edge-benefit-icon {
  flex: 0 0 2.9rem !important;
  width: 2.9rem !important;
  height: 2.9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  border-radius: 12px !important;
  background: rgba(35, 42, 85, 0.82) !important;
  border: 1px solid rgba(137, 146, 255, 0.30) !important;
  color: #8992ff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 0 1.4rem rgba(137,146,255,0.12) !important;
}

.edge-benefit-icon i {
  display: block !important;
  line-height: 1 !important;
  font-size: 1rem !important;
}

.edge-benefit-card h3 {
  margin: 0 0 0.18rem !important;
  font-size: 0.95rem !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  white-space: normal !important;
}

.edge-benefit-card p {
  margin: 0 !important;
  font-size: 0.78rem !important;
  line-height: 1.38 !important;
  color: rgba(190, 198, 226, 0.72) !important;
}

@media (max-width: 1040px) {
  .edge-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .edge-hero-title {
    font-size: clamp(2.8rem, 14vw, 4.7rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.055em !important;
    max-width: 9ch;
  }
}

@media (max-width: 620px) {
  .edge-benefit-strip {
    grid-template-columns: 1fr !important;
    width: min(calc(100vw - 1.5rem), 35rem) !important;
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .edge-benefit-card {
    min-height: auto !important;
  }
}

/* --- hero copy polish + shiny gradient text + benefit row restyle --- */
.edge-hero-content {
  width: min(92vw, 1080px);
}

.edge-hero-title {
  font-size: clamp(3rem, 7.3vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.078em;
  text-wrap: balance;
  max-width: 11.5ch;
  margin-inline: auto;
}

.edge-hero-subtitle {
  width: min(92vw, 720px);
}

.edge-shiny-text {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(110deg, #5bd2ff 0%, #14a7ff 32%, #ffffff 45%, #39c2ff 57%, #057cff 78%, #5bd2ff 100%);
  background-size: 240% auto;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(var(--cl-accent), 0.28));
  animation: edgeSlowShine 8.5s linear infinite;
}

.edge-benefit-strip {
  width: min(76rem, calc(100vw - 3rem)) !important;
  margin-top: 0.9rem !important;
  margin-bottom: 1.8rem !important;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  gap: 1.7rem !important;
  align-items: start;
}

.edge-benefit-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
}

.edge-benefit-card:hover {
  background: transparent !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.edge-benefit-icon {
  flex: 0 0 3.15rem;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 10px;
  background: rgba(16, 22, 46, 0.78) !important;
  border: 1px solid rgba(145, 150, 255, 0.22) !important;
  color: #8c93ff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.edge-benefit-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.edge-benefit-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 850;
}

.edge-benefit-card p {
  margin: 0;
  color: rgba(191, 199, 228, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
  max-width: 16rem;
}

@keyframes edgeSlowShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (max-width: 1200px) {
  .edge-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.2rem !important;
  }
}

@media (max-width: 760px) {
  .edge-hero-title {
    max-width: 10.2ch;
    font-size: clamp(2.8rem, 12vw, 4.6rem);
    line-height: 0.94;
  }

  .edge-benefit-strip {
    width: min(calc(100vw - 1.5rem), 35rem) !important;
    grid-template-columns: 1fr !important;
    gap: 0.95rem !important;
    margin-top: 0.55rem !important;
  }
}

/* --- refinements: lower hero side shapes, move benefit strip down, new hero copy, smoother shiny --- */
.edge-agent {
  top: 20%;
  height: clamp(340px, 45vw, 590px);
}

.edge-agent-card {
  inset: 7% 12% 0;
}

.edge-hero-title {
  font-size: clamp(3.2rem, 6.5vw, 5.9rem);
  max-width: 8.6ch;
  line-height: 0.94;
}

.edge-benefit-strip {
  margin-top: 1.75rem !important;
  margin-bottom: 1.85rem !important;
  padding-top: 0.2rem;
}

.edge-shiny-text {
  background-image: linear-gradient(
    100deg,
    #0a83ff 0%,
    #49c7ff 18%,
    #ffffff 32%,
    #33bfff 45%,
    #0a83ff 58%,
    #49c7ff 74%,
    #ffffff 88%,
    #0a83ff 100%
  );
  background-size: 300% 100%;
  background-position: 0% 50%;
  animation: edgeFastShine 4.2s linear infinite;
  will-change: background-position;
}

@keyframes edgeFastShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

@media (max-width: 980px) {
  .edge-agent {
    top: 22%;
  }

  .edge-hero-title {
    font-size: clamp(2.9rem, 9.8vw, 4.9rem);
    max-width: 8.3ch;
  }

  .edge-benefit-strip {
    margin-top: 1.35rem !important;
  }
}

@media (max-width: 760px) {
  .edge-hero-title {
    max-width: 7.5ch;
    font-size: clamp(2.75rem, 12vw, 4.35rem);
    line-height: 0.96;
  }

  .edge-shiny-text {
    animation-duration: 3.8s;
  }

  .edge-benefit-strip {
    margin-top: 1.1rem !important;
  }
}

/* --- palette shiny for purple/blue titles + fix clipped benefit icon boxes --- */
.edge-purple-text {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(
    110deg,
    #c9baff 0%,
    #a58eff 16%,
    #8b8dff 32%,
    #6d9eff 48%,
    #35b7ff 66%,
    #79d2ff 82%,
    #a58eff 100%
  );
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(93, 131, 255, 0.2));
  animation: edgePaletteShine 3.8s linear infinite;
  will-change: background-position;
}

@keyframes edgePaletteShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 240% 50%; }
}

.edge-benefit-strip {
  width: min(76rem, calc(100vw - 2rem)) !important;
  padding-inline: 0.8rem !important;
  box-sizing: border-box;
  overflow: visible;
}

.edge-benefit-card {
  overflow: visible;
}

.edge-benefit-icon {
  flex: 0 0 3.35rem;
  width: 3.35rem;
  height: 3.35rem;
  margin-left: 0.1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 25, 52, 0.96), rgba(10, 15, 32, 0.94)) !important;
  border: 1px solid rgba(132, 140, 255, 0.26) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(91, 100, 205, 0.08),
    0 0.9rem 2rem rgba(0,0,0,0.18);
}

.edge-benefit-icon i {
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .edge-purple-text {
    animation-duration: 3.3s;
  }

  .edge-benefit-strip {
    width: min(calc(100vw - 1rem), 35rem) !important;
    padding-inline: 0.45rem !important;
  }

  .edge-benefit-icon {
    flex-basis: 3.1rem;
    width: 3.1rem;
    height: 3.1rem;
    margin-left: 0;
  }
}

/* --- fix: smooth palette color cycle + no clipped headings/icons --- */
.edge-purple-text {
  position: relative !important;
  display: inline-block !important;
  padding: 0.08em 0.16em 0.08em 0.08em !important;
  margin: -0.08em -0.16em -0.08em -0.08em !important;
  line-height: 1.12 !important;
  overflow: visible !important;
  background-image: linear-gradient(135deg, #a994ff 0%, #838cff 35%, #4fa8ff 68%, #22c3ff 100%) !important;
  background-size: 180% 180% !important;
  background-position: 0% 50% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 0 15px rgba(96, 135, 255, 0.18)) !important;
  animation: edgeSoftPaletteCycle 5.8s ease-in-out infinite alternate !important;
  will-change: background-position;
}

.edge-section-title,
[data-component-id="feedbacks"] h1 {
  line-height: 1.12 !important;
  overflow: visible !important;
  padding-block: 0.05em !important;
}

@keyframes edgeSoftPaletteCycle {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 42% 50%;
  }
}

.edge-benefit-strip {
  width: min(76rem, calc(100vw - 4rem)) !important;
  padding-inline: 1.6rem !important;
  margin-inline: auto !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.edge-benefit-card {
  overflow: visible !important;
  padding-left: 0 !important;
}

.edge-benefit-icon {
  flex: 0 0 3.25rem !important;
  width: 3.25rem !important;
  height: 3.25rem !important;
  margin-left: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, rgba(18, 24, 48, 0.94), rgba(10, 14, 29, 0.96)) !important;
  border: 1px solid rgba(136, 143, 255, 0.30) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0.75rem 1.8rem rgba(0,0,0,0.18) !important;
  transform: none !important;
}

@media (max-width: 760px) {
  .edge-benefit-strip {
    width: min(calc(100vw - 1rem), 35rem) !important;
    padding-inline: 0.8rem !important;
  }

  .edge-purple-text {
    animation-duration: 5s !important;
  }
}

/* --- spacing + soft category palette animation refinements --- */
.edge-benefit-strip {
  margin-top: 2.35rem !important;
  padding-top: 0.35rem !important;
}

.edge-categories-section,
.edge-categories-section .edge-section-inner,
.edge-section-heading {
  overflow: visible !important;
}

.edge-section-title {
  display: inline-block;
  padding-left: 0.08em;
  margin-left: -0.02em;
  letter-spacing: -0.055em !important;
  line-height: 1.04 !important;
}

.edge-purple-text {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(
    135deg,
    #c7bbff 0%,
    #b19cff 18%,
    #8f91ff 38%,
    #719cff 58%,
    #43b4ff 78%,
    #77d4ff 100%
  ) !important;
  background-size: 190% 190% !important;
  background-position: 0% 50% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 0 14px rgba(96, 126, 255, 0.16));
  animation: edgePaletteDrift 6.5s ease-in-out infinite !important;
  will-change: background-position, filter;
}

@keyframes edgePaletteDrift {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 12px rgba(140, 122, 255, 0.14));
  }
  35% {
    background-position: 55% 40%;
    filter: drop-shadow(0 0 14px rgba(104, 122, 255, 0.16));
  }
  68% {
    background-position: 100% 55%;
    filter: drop-shadow(0 0 15px rgba(67, 180, 255, 0.18));
  }
  100% {
    background-position: 35% 100%;
    filter: drop-shadow(0 0 13px rgba(150, 130, 255, 0.16));
  }
}

@media (max-width: 980px) {
  .edge-benefit-strip {
    margin-top: 1.85rem !important;
  }
}

@media (max-width: 760px) {
  .edge-benefit-strip {
    margin-top: 1.45rem !important;
  }

  .edge-section-title {
    padding-left: 0.06em;
    letter-spacing: -0.045em !important;
  }

  .edge-purple-text {
    animation-duration: 5.4s !important;
  }
}

/* --- vixen benefit hover smooth restore --- */
.edge-benefit-strip .edge-benefit-card {
  translate: 0 0;
  transition:
    translate 280ms cubic-bezier(0.16, 1, 0.3, 1),
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    filter 280ms ease !important;
  will-change: translate, background, border-color, box-shadow, filter;
}

.edge-benefit-strip .edge-benefit-card:hover {
  translate: 0 -5px;
  background: rgba(13, 20, 37, 0.22) !important;
  border-color: rgba(137, 146, 255, 0.18) !important;
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.18) !important;
  filter: brightness(1.06);
}

.edge-benefit-strip .edge-benefit-icon {
  scale: 1;
  transition:
    scale 280ms cubic-bezier(0.16, 1, 0.3, 1),
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    color 280ms ease !important;
  will-change: scale, background, border-color, box-shadow;
}

.edge-benefit-strip .edge-benefit-card:hover .edge-benefit-icon {
  scale: 1.06;
  background: linear-gradient(180deg, rgba(25, 32, 67, 0.96), rgba(13, 18, 40, 0.96)) !important;
  border-color: rgba(137, 146, 255, 0.46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 1.6rem rgba(137, 146, 255, 0.18) !important;
}

.edge-benefit-strip .edge-benefit-card h3,
.edge-benefit-strip .edge-benefit-card p {
  transition: color 260ms ease, opacity 260ms ease !important;
}

.edge-benefit-strip .edge-benefit-card:hover p {
  color: rgba(213, 220, 245, 0.84) !important;
}

/* --- vixen stable hover: keep hover animation, remove edge flicker --- */
.edge-benefit-strip .edge-benefit-card,
.edge-benefit-strip .edge-benefit-card * {
  -webkit-user-select: none !important;
  user-select: none !important;
  cursor: default !important;
}

.edge-benefit-strip .edge-benefit-card.vx-hover-active {
  translate: 0 -5px;
  background: rgba(13, 20, 37, 0.22) !important;
  border-color: rgba(137, 146, 255, 0.18) !important;
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.18) !important;
  filter: brightness(1.06);
}

.edge-benefit-strip .edge-benefit-card.vx-hover-active .edge-benefit-icon {
  scale: 1.06;
  background: linear-gradient(180deg, rgba(25, 32, 67, 0.96), rgba(13, 18, 40, 0.96)) !important;
  border-color: rgba(137, 146, 255, 0.46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 1.6rem rgba(137, 146, 255, 0.18) !important;
}

.edge-benefit-strip .edge-benefit-card.vx-hover-active p {
  color: rgba(213, 220, 245, 0.84) !important;
}

.edge-category-card.vx-hover-active {
  border-color: rgba(var(--cl-accent), 0.46) !important;
  transform: translateY(-6px) scale(1.012) !important;
  box-shadow: 0 1.8rem 4.5rem rgba(0, 0, 0, 0.38), 0 0 3rem rgba(var(--cl-accent), 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.edge-category-card.vx-hover-active .edge-category-media img {
  transform: scale(1.03) !important;
  filter: saturate(1.08) contrast(1.03) !important;
}

.edge-hero-actions a.vx-hover-active {
  transform: translateY(-3px) !important;
  filter: brightness(1.08) !important;
}

.edge-section-button.vx-hover-active {
  transform: translateY(-2px) !important;
  border-color: rgba(var(--cl-accent), 0.42) !important;
  background: rgba(var(--cl-accent), 0.12) !important;
}

[data-component-id="feedbacks"] .cursor-pointer.vx-hover-active > div {
  transform: translateY(-4px) !important;
  border-color: rgba(137,146,255,0.28) !important;
  background: rgba(12, 18, 28, 0.96) !important;
}

/* --- vixen hover jitter final fix: never move the pointer target itself --- */
/*
  Moving the hovered element with translate/transform makes the cursor fall in and out
  of the hitbox at the edges. Keep the hitbox fixed and animate only color, glow,
  brightness, inner icons, and inner media.
*/
.edge-benefit-strip .edge-benefit-card,
.edge-category-card,
.edge-hero-actions a,
.edge-section-button,
[data-component-id="feedbacks"] .cursor-pointer > div {
  transform-origin: center !important;
  backface-visibility: hidden;
}

.edge-benefit-strip .edge-benefit-card:hover,
.edge-benefit-strip .edge-benefit-card.vx-hover-active {
  translate: 0 0 !important;
  transform: none !important;
  background: rgba(13, 20, 37, 0.24) !important;
  border-color: rgba(137, 146, 255, 0.20) !important;
  box-shadow: 0 0.85rem 2.2rem rgba(0, 0, 0, 0.15), 0 0 1.6rem rgba(137, 146, 255, 0.055) !important;
  filter: brightness(1.045);
}

.edge-benefit-strip .edge-benefit-card:hover .edge-benefit-icon,
.edge-benefit-strip .edge-benefit-card.vx-hover-active .edge-benefit-icon {
  scale: 1.06;
  transform: translateZ(0) !important;
  background: linear-gradient(180deg, rgba(25, 32, 67, 0.96), rgba(13, 18, 40, 0.96)) !important;
  border-color: rgba(137, 146, 255, 0.46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 1.6rem rgba(137, 146, 255, 0.18) !important;
}

.edge-benefit-strip .edge-benefit-card:hover p,
.edge-benefit-strip .edge-benefit-card.vx-hover-active p {
  color: rgba(213, 220, 245, 0.84) !important;
}

.edge-category-card:hover,
.edge-category-card.vx-hover-active {
  transform: translateZ(0) !important;
  border-color: rgba(var(--cl-accent), 0.46) !important;
  box-shadow: 0 1.3rem 3.8rem rgba(0, 0, 0, 0.34), 0 0 2.7rem rgba(var(--cl-accent), 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.edge-category-card:hover .edge-category-media img,
.edge-category-card.vx-hover-active .edge-category-media img {
  transform: scale(1.035) !important;
  filter: saturate(1.08) contrast(1.03) !important;
}

.edge-hero-actions a:hover,
.edge-hero-actions a.vx-hover-active,
.edge-section-button:hover,
.edge-section-button.vx-hover-active {
  transform: none !important;
  translate: 0 0 !important;
  filter: brightness(1.08) !important;
}

[data-component-id="feedbacks"] .cursor-pointer:hover > div,
[data-component-id="feedbacks"] .cursor-pointer.vx-hover-active > div {
  transform: none !important;
  border-color: rgba(137,146,255,0.28) !important;
  background: rgba(12, 18, 28, 0.96) !important;
}

.edge-benefit-strip .edge-benefit-card,
.edge-benefit-strip .edge-benefit-card * {
  -webkit-user-select: none !important;
  user-select: none !important;
  cursor: default !important;
}

/* --- vixen category hover jitter fix: keep clickable card hitbox fixed --- */
.edge-category-card,
.edge-category-grid .edge-category-card,
.edge-category-grid--image-only .edge-category-card {
  transform: none !important;
  translate: 0 0 !important;
  cursor: pointer !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease,
    background 260ms ease !important;
  will-change: border-color, box-shadow, filter;
}

.edge-category-card:hover,
.edge-category-card:focus-visible,
.edge-category-grid .edge-category-card:hover,
.edge-category-grid .edge-category-card:focus-visible,
.edge-category-grid--image-only .edge-category-card:hover,
.edge-category-grid--image-only .edge-category-card:focus-visible {
  transform: none !important;
  translate: 0 0 !important;
  border-color: rgba(var(--cl-accent), 0.46) !important;
  box-shadow:
    0 1.3rem 3.8rem rgba(0, 0, 0, 0.34),
    0 0 2.7rem rgba(var(--cl-accent), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  filter: brightness(1.035);
}

.edge-category-card *,
.edge-category-card::before,
.edge-category-card::after {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.edge-category-media {
  transform: translateZ(0) scale(1.001) !important;
  transform-origin: center center !important;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease,
    opacity 520ms ease !important;
  will-change: transform, filter;
  backface-visibility: hidden;
}

.edge-category-card:hover .edge-category-media,
.edge-category-card:focus-visible .edge-category-media {
  transform: translateZ(0) scale(1.018) !important;
}

.edge-category-media img {
  transform: translateZ(0) scale(1.001) !important;
  transform-origin: center center !important;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms ease,
    opacity 620ms ease !important;
  will-change: transform, filter;
  backface-visibility: hidden;
}

.edge-category-card:hover .edge-category-media img,
.edge-category-card:focus-visible .edge-category-media img {
  transform: translateZ(0) scale(1.035) !important;
  filter: saturate(1.08) contrast(1.04) !important;
}

/* --- Vixen comparison slider replaces Featured Products section --- */
.edge-comparison-section {
  width: min(78rem, calc(100vw - 2rem)) !important;
  margin: 0 auto !important;
  padding: clamp(3.5rem, 6vw, 6rem) 0 !important;
}

.edge-comparison-inner {
  width: 100%;
}

.edge-comparison-heading {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3vw, 3.25rem);
}

.edge-comparison-eyebrow {
  display: inline-block;
  color: rgb(var(--cl-accent));
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.edge-comparison-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.edge-comparison-subtitle {
  width: min(100%, 48rem);
  margin: 1rem auto 0;
  color: rgba(210, 216, 235, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.edge-compare-frame {
  position: relative;
  width: 100%;
  border-radius: 22px;
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(var(--cl-accent), 0.48), rgba(139, 146, 255, 0.18), rgba(var(--cl-accent), 0.30));
  box-shadow:
    0 2rem 5.5rem rgba(0, 0, 0, 0.42),
    0 0 3rem rgba(var(--cl-accent), 0.12);
  overflow: hidden;
}

.edge-compare-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 20rem;
  overflow: hidden;
  border-radius: 21px;
  background: rgba(5, 10, 18, 0.96);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  isolation: isolate;
}

.edge-compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.edge-compare-before {
  filter: saturate(0.72) contrast(0.92) brightness(0.72);
}

.edge-compare-after-wrap {
  position: absolute;
  inset: 0;
  width: var(--compare-pos, 50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.edge-compare-after {
  filter: saturate(1.1) contrast(1.06) brightness(1.02);
}

.edge-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos, 50%);
  z-index: 4;
  width: 1px;
  transform: translateX(-0.5px);
  background: rgba(var(--cl-accent), 0.95);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 32px rgba(var(--cl-accent), 0.75);
  pointer-events: none;
}

.edge-compare-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--cl-accent), 0.95), rgba(var(--cl-accent), 0.22));
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 0 0 7px rgba(var(--cl-accent), 0.10),
    0 0 32px rgba(var(--cl-accent), 0.52);
}

.edge-compare-label {
  position: absolute;
  z-index: 5;
  bottom: 1.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgb(var(--cl-accent));
  background: rgba(5, 12, 22, 0.76);
  border: 1px solid rgba(var(--cl-accent), 0.35);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.edge-compare-label-before {
  left: 1.5rem;
}

.edge-compare-label-after {
  right: 1.5rem;
}

.edge-compare-range {
  position: absolute;
  inset: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

@media (max-width: 760px) {
  .edge-comparison-section {
    width: min(100% - 1rem, 42rem) !important;
    padding: 3rem 0 !important;
  }

  .edge-compare-stage {
    aspect-ratio: 4 / 3;
    min-height: 18rem;
    border-radius: 17px;
  }

  .edge-compare-frame {
    border-radius: 18px;
  }

  .edge-compare-label {
    bottom: 0.85rem;
    font-size: 0.74rem;
    padding: 0.52rem 0.8rem;
  }

  .edge-compare-label-before {
    left: 0.85rem;
  }

  .edge-compare-label-after {
    right: 0.85rem;
  }
}

/* --- Comparison slider fixed-image mask behavior --- */
.edge-compare-after-wrap {
  width: 100% !important;
  clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0) !important;
  -webkit-clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0) !important;
  overflow: hidden !important;
}

.edge-compare-after-wrap .edge-compare-after,
.edge-compare-after {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

.edge-compare-before {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* --- Comparison slider autoplay + cleaner tapered divider --- */
.edge-compare-stage {
  --divider-glow: rgba(var(--cl-accent), 0.78);
}

.edge-compare-divider {
  width: 1.25rem !important;
  transform: translateX(-50%) !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}

.edge-compare-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--cl-accent), 0.08) 12%,
    rgba(var(--cl-accent), 0.34) 28%,
    rgba(var(--cl-accent), 0.82) 46%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(var(--cl-accent), 0.82) 54%,
    rgba(var(--cl-accent), 0.34) 72%,
    rgba(var(--cl-accent), 0.08) 88%,
    transparent 100%
  );
  box-shadow: 0 0 18px var(--divider-glow);
}

.edge-compare-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: min(34%, 15rem);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--cl-accent), 0.25) 18%,
    rgba(var(--cl-accent), 0.95) 48%,
    rgba(255, 255, 255, 0.94) 50%,
    rgba(var(--cl-accent), 0.95) 52%,
    rgba(var(--cl-accent), 0.25) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(var(--cl-accent), 0.72),
    0 0 32px rgba(var(--cl-accent), 0.32);
}

.edge-compare-handle {
  width: 1.72rem !important;
  height: 2.05rem !important;
  z-index: 2;
  color: rgba(17, 25, 44, 0.72) !important;
  background: rgba(248, 251, 255, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  box-shadow:
    0 0 0 5px rgba(var(--cl-accent), 0.12),
    0 0 26px rgba(var(--cl-accent), 0.42),
    0 0.9rem 2.4rem rgba(0, 0, 0, 0.25) !important;
}

.edge-compare-handle i {
  display: none !important;
}

.edge-compare-handle::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 6px 0 currentColor,
    0 12px 0 currentColor,
    6px 0 0 currentColor,
    6px 6px 0 currentColor,
    6px 12px 0 currentColor;
  opacity: 0.72;
}

.edge-compare-stage:hover .edge-compare-handle {
  box-shadow:
    0 0 0 7px rgba(var(--cl-accent), 0.16),
    0 0 34px rgba(var(--cl-accent), 0.52),
    0 1rem 2.5rem rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 760px) {
  .edge-compare-handle {
    width: 1.55rem !important;
    height: 1.9rem !important;
  }

  .edge-compare-divider::after {
    height: min(30%, 10rem);
  }
}

/* --- Slider polish: smoother autoplay cursor + cleaner handle/bar --- */
.edge-compare-stage,
.edge-compare-range,
.edge-compare-divider,
.edge-compare-handle {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M9 16h14' stroke='white' stroke-width='4' stroke-linecap='round' opacity='.9'/%3E%3Cpath d='M9 16h14M9 16l4-4M9 16l4 4M23 16l-4-4M23 16l-4 4M16 8v16' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 16 16, col-resize !important;
}

.edge-compare-stage {
  --divider-glow: rgba(var(--cl-accent), 0.64);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.edge-compare-after-wrap {
  will-change: clip-path;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.edge-compare-img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.edge-compare-divider {
  width: 1.35rem !important;
  transform: translate3d(-50%, 0, 0) !important;
  will-change: left;
}

.edge-compare-divider::before {
  width: 1px !important;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--cl-accent), 0.02) 7%,
    rgba(var(--cl-accent), 0.12) 22%,
    rgba(var(--cl-accent), 0.42) 38%,
    rgba(255, 255, 255, 0.82) 50%,
    rgba(var(--cl-accent), 0.42) 62%,
    rgba(var(--cl-accent), 0.12) 78%,
    rgba(var(--cl-accent), 0.02) 93%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 10px rgba(var(--cl-accent), 0.38),
    0 0 22px rgba(var(--cl-accent), 0.18) !important;
}

.edge-compare-divider::after {
  width: 2px !important;
  height: min(30%, 13rem) !important;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--cl-accent), 0.18) 18%,
    rgba(var(--cl-accent), 0.82) 45%,
    rgba(255, 255, 255, 0.94) 50%,
    rgba(var(--cl-accent), 0.82) 55%,
    rgba(var(--cl-accent), 0.18) 82%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 10px rgba(var(--cl-accent), 0.55),
    0 0 24px rgba(var(--cl-accent), 0.24) !important;
}

.edge-compare-handle {
  width: 1.86rem !important;
  height: 2.14rem !important;
  color: rgba(178, 230, 255, 0.92) !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.20), transparent 38%),
    linear-gradient(180deg, rgba(12, 35, 54, 0.96), rgba(4, 16, 29, 0.96)) !important;
  border: 1px solid rgba(var(--cl-accent), 0.68) !important;
  box-shadow:
    0 0 0 5px rgba(var(--cl-accent), 0.08),
    0 0 22px rgba(var(--cl-accent), 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(var(--cl-accent), 0.22),
    0 0.9rem 2.2rem rgba(0, 0, 0, 0.28) !important;
  transition:
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms ease !important;
}

.edge-compare-handle::before {
  content: "";
  width: 14px !important;
  height: 20px !important;
  border-radius: 0 !important;
  background-image: radial-gradient(circle, currentColor 1.7px, transparent 2.1px) !important;
  background-size: 7px 7px !important;
  background-position: center !important;
  background-repeat: repeat !important;
  box-shadow: none !important;
  opacity: 0.86 !important;
}

.edge-compare-stage:hover .edge-compare-handle {
  border-color: rgba(var(--cl-accent), 0.92) !important;
  box-shadow:
    0 0 0 6px rgba(var(--cl-accent), 0.10),
    0 0 30px rgba(var(--cl-accent), 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(var(--cl-accent), 0.26),
    0 1rem 2.4rem rgba(0, 0, 0, 0.30) !important;
}

@media (max-width: 760px) {
  .edge-compare-handle {
    width: 1.66rem !important;
    height: 1.96rem !important;
  }

  .edge-compare-divider::after {
    height: min(26%, 9rem) !important;
  }
}

/* --- Vixen comparison slider: blue dot cursor + cleaner dotted handle --- */
.edge-compare-stage,
.edge-compare-range {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='5' fill='%2300aaff' stroke='%23b9f0ff' stroke-width='1.4'/%3E%3Ccircle cx='7' cy='7' r='2' fill='%23e8fbff' fill-opacity='.8'/%3E%3C/svg%3E") 7 7, ew-resize !important;
}

.edge-compare-divider {
  width: 1px !important;
  transform: translateX(-0.5px) !important;
  background: linear-gradient(
    180deg,
    rgba(var(--cl-accent), 0.10) 0%,
    rgba(var(--cl-accent), 0.46) 28%,
    rgba(var(--cl-accent), 0.96) 50%,
    rgba(var(--cl-accent), 0.46) 72%,
    rgba(var(--cl-accent), 0.10) 100%
  ) !important;
  box-shadow:
    0 0 10px rgba(var(--cl-accent), 0.36),
    0 0 28px rgba(var(--cl-accent), 0.26) !important;
}

.edge-compare-handle {
  width: 1.18rem !important;
  height: 1.58rem !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.98), rgba(232, 250, 255, 0.94) 48%, rgba(151, 225, 255, 0.92) 100%) !important;
  border: 1px solid rgba(210, 247, 255, 0.96) !important;
  box-shadow:
    0 0 0 5px rgba(var(--cl-accent), 0.11),
    0 0 18px rgba(var(--cl-accent), 0.58),
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -4px 10px rgba(var(--cl-accent),0.16) !important;
  overflow: hidden;
}

.edge-compare-handle i {
  display: none !important;
}

.edge-compare-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(22, 42, 60, 0.78);
  box-shadow:
    -4px -4px 0 rgba(22, 42, 60, 0.72),
     0  -4px 0 rgba(22, 42, 60, 0.72),
     4px -4px 0 rgba(22, 42, 60, 0.72),
    -4px  4px 0 rgba(22, 42, 60, 0.72),
     0   4px 0 rgba(22, 42, 60, 0.72),
     4px  4px 0 rgba(22, 42, 60, 0.72);
}

.edge-compare-handle::after {
  content: "";
  position: absolute;
  inset: 1px 2px auto;
  height: 38%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.75), transparent);
  pointer-events: none;
}

.edge-compare-stage:hover .edge-compare-handle {
  box-shadow:
    0 0 0 6px rgba(var(--cl-accent), 0.14),
    0 0 24px rgba(var(--cl-accent), 0.68),
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -4px 10px rgba(var(--cl-accent),0.16) !important;
}

/* --- Vixen comparison slider: keep handle shape, refine only inner dots --- */
.edge-compare-handle {
  overflow: hidden !important;
}

.edge-compare-handle::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 8px !important;
  height: 12px !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 2px 2px, rgba(14, 39, 58, 0.9) 0 1.35px, transparent 1.45px),
    radial-gradient(circle at 6px 2px, rgba(14, 39, 58, 0.9) 0 1.35px, transparent 1.45px),
    radial-gradient(circle at 2px 6px, rgba(14, 39, 58, 0.9) 0 1.35px, transparent 1.45px),
    radial-gradient(circle at 6px 6px, rgba(14, 39, 58, 0.9) 0 1.35px, transparent 1.45px),
    radial-gradient(circle at 2px 10px, rgba(14, 39, 58, 0.9) 0 1.35px, transparent 1.45px),
    radial-gradient(circle at 6px 10px, rgba(14, 39, 58, 0.9) 0 1.35px, transparent 1.45px) !important;
  background-repeat: no-repeat !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

/* --- Vixen comparison section: royal-blue pill eyebrow --- */
.edge-comparison-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  width: fit-content !important;
  margin: 0 auto 1rem !important;
  padding: 0.48rem 1rem !important;
  border-radius: 999px !important;
  color: #69d4ff !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--cl-accent), 0.24), transparent 42%),
    linear-gradient(180deg, rgba(27, 19, 60, 0.86), rgba(10, 13, 32, 0.76)) !important;
  border: 1px solid rgba(116, 105, 255, 0.44) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(var(--cl-accent), 0.04),
    0 0 22px rgba(42, 143, 255, 0.12) !important;
  text-shadow: 0 0 12px rgba(var(--cl-accent), 0.24);
}

.edge-comparison-eyebrow-icon {
  width: 0.92rem !important;
  height: 0.92rem !important;
  flex: 0 0 auto !important;
  color: #8f91ff !important;
  filter: drop-shadow(0 0 10px rgba(var(--cl-accent), 0.36));
}

/* --- Vixen hero glow settle fix: keep side glow stable after intro --- */
.edge-home-hero .edge-hero-glow,
.edge-home-hero .edge-hero-glow-left,
.edge-home-hero .edge-hero-glow-right {
  animation: none !important;
  opacity: 0.34 !important;
  transform: translateZ(0) scale(1.04) !important;
  filter: blur(50px) !important;
  will-change: auto !important;
  transition: none !important;
}

.edge-home-hero .edge-hero-glow-left {
  opacity: 0.28 !important;
}

.edge-home-hero .edge-hero-glow-right {
  opacity: 0.36 !important;
}

html.vixen-motion-ready.vixen-motion-loaded .edge-home-hero .edge-hero-glow,
html.vixen-motion-ready.vixen-motion-settled .edge-home-hero .edge-hero-glow {
  animation: none !important;
  transform: translateZ(0) scale(1.04) !important;
  transition: none !important;
}

/* --- Vixen categories: Best Sellers pill + smoother title palette drift --- */
.edge-category-heading-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.edge-category-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  min-height: 2.15rem;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  color: #9f8cff;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 20% 0%, rgba(116, 93, 255, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(26, 22, 55, 0.72), rgba(15, 18, 38, 0.72));
  border: 1px solid rgba(140, 121, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(70, 132, 255, 0.06),
    0 0.9rem 2rem rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.edge-category-eyebrow-icon {
  width: 0.94rem;
  height: 0.94rem;
  color: #9f8cff;
  filter: drop-shadow(0 0 10px rgba(116, 93, 255, 0.36));
}

.edge-category-title-animated .edge-purple-text {
  background-image: linear-gradient(
    135deg,
    #c4b4ff 0%,
    #a58eff 20%,
    #8d93ff 42%,
    #629fff 64%,
    #27b9ff 84%,
    #9d8cff 100%
  ) !important;
  background-size: 210% 210% !important;
  animation: edgeCategoryColorFlow 5.2s ease-in-out infinite !important;
  filter: drop-shadow(0 0 16px rgba(108, 131, 255, 0.16));
}

@keyframes edgeCategoryColorFlow {
  0% {
    background-position: 0% 48%;
    filter: drop-shadow(0 0 12px rgba(157, 140, 255, 0.16));
  }
  33% {
    background-position: 58% 40%;
    filter: drop-shadow(0 0 15px rgba(111, 139, 255, 0.18));
  }
  66% {
    background-position: 100% 58%;
    filter: drop-shadow(0 0 17px rgba(39, 185, 255, 0.18));
  }
  100% {
    background-position: 0% 48%;
    filter: drop-shadow(0 0 12px rgba(157, 140, 255, 0.16));
  }
}

@media (max-width: 760px) {
  .edge-category-heading-copy {
    gap: 0.72rem;
  }

  .edge-category-eyebrow {
    min-height: 2rem;
    padding: 0.43rem 0.82rem;
    font-size: 0.8rem;
  }
}

/* --- Vixen categories: match Comparison pill + more noticeable clean title color cycle --- */
.edge-category-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  width: fit-content !important;
  min-height: 2.15rem !important;
  padding: 0.48rem 1rem !important;
  border-radius: 999px !important;
  color: #69d4ff !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--cl-accent), 0.24), transparent 42%),
    linear-gradient(180deg, rgba(27, 19, 60, 0.86), rgba(10, 13, 32, 0.76)) !important;
  border: 1px solid rgba(116, 105, 255, 0.44) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(var(--cl-accent), 0.04),
    0 0 22px rgba(42, 143, 255, 0.12) !important;
  text-shadow: 0 0 12px rgba(var(--cl-accent), 0.24) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.edge-category-eyebrow-icon {
  width: 0.92rem !important;
  height: 0.92rem !important;
  flex: 0 0 auto !important;
  color: #8f91ff !important;
  filter: drop-shadow(0 0 10px rgba(var(--cl-accent), 0.36)) !important;
}

.edge-category-title-animated .edge-purple-text {
  background-image: linear-gradient(
    110deg,
    #b999ff 0%,
    #9a8cff 18%,
    #7b94ff 34%,
    #38bdff 50%,
    #6bd7ff 62%,
    #9b8cff 78%,
    #35aaff 100%
  ) !important;
  background-size: 260% 100% !important;
  background-position: 0% 50% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: edgeCategoryReadableColorShift 4.4s ease-in-out infinite alternate !important;
  filter: drop-shadow(0 0 15px rgba(116, 137, 255, 0.18));
  will-change: background-position, filter;
}

@keyframes edgeCategoryReadableColorShift {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 13px rgba(168, 142, 255, 0.19)) saturate(1.05);
  }
  45% {
    background-position: 70% 50%;
    filter: drop-shadow(0 0 17px rgba(96, 146, 255, 0.22)) saturate(1.18);
  }
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 18px rgba(47, 186, 255, 0.21)) saturate(1.12);
  }
}

/* --- Center Featured Categories heading block only --- */
.edge-categories-section .edge-split-heading {
  position: relative !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.edge-categories-section .edge-category-heading-copy {
  align-items: center !important;
  text-align: center !important;
  margin-inline: auto !important;
}

.edge-categories-section .edge-category-eyebrow {
  margin-inline: auto !important;
}

.edge-categories-section .edge-section-title {
  text-align: center !important;
}

.edge-categories-section .edge-section-button {
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 860px) {
  .edge-categories-section .edge-split-heading {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .edge-categories-section .edge-section-button {
    position: static !important;
    transform: none !important;
    margin-inline: auto !important;
  }
}


/* --- categories subtitle + delayed card reveal refinements --- */
.edge-category-subtitle {
  margin: 0.65rem auto 0;
  max-width: 44rem;
  color: rgba(190, 199, 228, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

html.vx-sections-prep .edge-categories-section .edge-category-card {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985) !important;
  filter: blur(10px);
  pointer-events: none;
}

.edge-categories-section .edge-category-card.vx-category-card-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: blur(0) !important;
  pointer-events: auto;
  transition:
    opacity 950ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 950ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease !important;
  transition-delay: var(--vx-card-delay, 0ms) !important;
}

.edge-categories-section .edge-category-card.vx-category-card-visible:hover,
.edge-categories-section .edge-category-card.vx-category-card-visible:focus-visible {
  transform: translate3d(0, 0, 0) scale(1) !important;
}

@media (max-width: 760px) {
  .edge-category-subtitle {
    margin-top: 0.55rem;
    font-size: 0.95rem;
  }
}

/* --- Categories heading subtitle: match the cleaner How it works subtitle spacing/weight --- */
.edge-categories-section .edge-category-heading-copy {
  gap: 0.62rem !important;
}

.edge-categories-section .edge-category-subtitle {
  width: min(100%, 48rem) !important;
  max-width: 48rem !important;
  margin: 0.18rem auto 0 !important;
  color: rgba(210, 216, 235, 0.70) !important;
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: -0.01em !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .edge-categories-section .edge-category-heading-copy {
    gap: 0.52rem !important;
  }

  .edge-categories-section .edge-category-subtitle {
    margin-top: 0.12rem !important;
    font-size: 0.98rem !important;
  }
}

/* --- Vixen royal-blue Why Choose section replacing default feature cards --- */
.edge-why-section {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 1rem;
  overflow: hidden;
}

.edge-why-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 58%;
  background:
    radial-gradient(circle at 28% 48%, rgba(0, 153, 255, 0.13), transparent 34%),
    radial-gradient(circle at 72% 35%, rgba(52, 191, 255, 0.11), transparent 32%);
  pointer-events: none;
  opacity: 0.95;
}

.edge-why-inner {
  position: relative;
  z-index: 1;
  width: min(72rem, calc(100vw - 2rem));
  margin: 0 auto;
}

.edge-why-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.edge-why-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.05rem;
  padding: 0.44rem 0.95rem;
  border-radius: 999px;
  color: #65d3ff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 157, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(5, 34, 76, 0.84), rgba(7, 14, 32, 0.78));
  border: 1px solid rgba(55, 174, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 157, 255, 0.06),
    0 0 24px rgba(0, 157, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.edge-why-eyebrow i {
  color: #30b9ff;
  font-size: 0.82rem;
  filter: drop-shadow(0 0 10px rgba(0, 174, 255, 0.35));
}

.edge-why-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.45rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.edge-why-title span {
  background: linear-gradient(110deg, #8edfff 0%, #3dbaff 38%, #0a83ff 76%, #67d8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(0, 157, 255, 0.16));
}

.edge-why-subtitle {
  width: min(100%, 44rem);
  margin: 0;
  color: rgba(210, 216, 235, 0.70);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.6;
  font-weight: 400;
}

.edge-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.edge-why-featured-card,
.edge-why-mini-card {
  border: 1px solid rgba(67, 178, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 16, 31, 0.88), rgba(6, 10, 20, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 1.5rem 4rem rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 157, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.edge-why-featured-card {
  position: relative;
  min-height: 25.5rem;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 157, 255, 0.24), transparent 34%),
    radial-gradient(circle at 5% 80%, rgba(0, 99, 255, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(6, 12, 28, 0.92), rgba(7, 21, 48, 0.76) 46%, rgba(5, 9, 20, 0.95));
}

.edge-why-card-glow {
  position: absolute;
  inset: auto auto -30% -14%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.28), transparent 64%);
  pointer-events: none;
}

.edge-why-product-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 21rem;
}

.edge-why-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-bottom: 0.95rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  color: #77dcff;
  background: rgba(0, 124, 255, 0.16);
  border: 1px solid rgba(72, 187, 255, 0.26);
  font-size: 0.76rem;
  font-weight: 800;
}

.edge-why-product-badge i {
  color: #2abaff;
}

.edge-why-product-copy h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.edge-why-product-copy p {
  margin: 0 0 1.25rem;
  color: rgba(207, 216, 235, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

.edge-why-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 2.65rem;
  padding: 0 1.05rem;
  border-radius: 0.65rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0a83ff, #05b8ff);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 137, 255, 0.22);
  font-weight: 850;
  font-size: 0.86rem;
  text-decoration: none;
  transition: filter 240ms ease, box-shadow 240ms ease;
}

.edge-why-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 1rem 2.2rem rgba(0, 157, 255, 0.30);
}

.edge-why-product-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.edge-why-product-box {
  position: relative;
  width: min(15rem, 100%);
  aspect-ratio: 0.72;
  border-radius: 1.1rem;
  transform: rotate(-7deg);
  background:
    linear-gradient(145deg, rgba(0, 149, 255, 0.18), rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(12, 25, 52, 0.9), rgba(3, 7, 16, 0.94));
  border: 1px solid rgba(91, 190, 255, 0.20);
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.36),
    0 0 4rem rgba(0, 149, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.edge-why-product-box::before {
  content: "";
  position: absolute;
  inset: 12% 12% auto;
  height: 48%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(83, 210, 255, 0.28), transparent 70%);
  filter: blur(10px);
}

.edge-why-product-box::after {
  content: "PREMIUM\\A DIGITAL ACCESS";
  white-space: pre;
  position: absolute;
  left: 12%;
  bottom: 12%;
  color: rgba(214, 240, 255, 0.46);
  font-size: 0.82rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.edge-why-v-mark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  color: rgba(94, 213, 255, 0.22);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 950;
  line-height: 1;
  filter: drop-shadow(0 0 22px rgba(0, 157, 255, 0.16));
}

.edge-why-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.edge-why-mini-card {
  position: relative;
  min-height: 12.15rem;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 1.05rem;
}

.edge-why-mini-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.edge-why-mini-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(193, 205, 229, 0.72);
  font-size: 0.86rem;
  line-height: 1.48;
}

.edge-why-icon-ring {
  display: grid;
  place-items: center;
  width: 5.8rem;
  height: 5.8rem;
  margin: 0 auto 1.15rem;
  color: #ffffff;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(59, 203, 255, 0.35), rgba(10, 131, 255, 0.08) 44%, transparent 45%),
    repeating-radial-gradient(circle, rgba(77, 178, 255, 0.12) 0 1px, transparent 1px 1.1rem);
  border: 1px solid rgba(68, 186, 255, 0.18);
}

.edge-why-icon-ring i {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a83ff, #40cdff);
  box-shadow: 0 0 1.6rem rgba(0, 157, 255, 0.34);
}

.edge-why-mini-card-delivery::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(0deg, rgba(89, 189, 255, 0.04) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 50% 33%, rgba(0, 210, 255, 0.13), transparent 34%);
  opacity: 0.95;
}

.edge-why-delivery-circle {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 0.2rem;
  width: 6.3rem;
  height: 6.3rem;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  color: #77dcff;
  background: rgba(3, 10, 22, 0.76);
  border: 0.38rem solid rgba(0, 207, 255, 0.78);
  box-shadow: 0 0 2.2rem rgba(0, 187, 255, 0.18), inset 0 0 1.5rem rgba(0, 177, 255, 0.10);
}

.edge-why-delivery-circle span {
  font-size: 0.62rem;
  font-weight: 800;
  color: rgba(218, 245, 255, 0.82);
}

.edge-why-delivery-circle i {
  font-size: 1rem;
}

.edge-why-payments-card {
  grid-column: span 2;
  min-height: 10.3rem;
  background:
    radial-gradient(circle at 88% 70%, rgba(0, 157, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(10, 16, 31, 0.88), rgba(6, 10, 20, 0.92));
}

.edge-why-payment-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.edge-why-payment-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.7rem;
  height: 2.35rem;
  padding: 0 0.65rem;
  border-radius: 0.42rem;
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(107, 196, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .edge-why-layout {
    grid-template-columns: 1fr;
  }

  .edge-why-featured-card {
    min-height: 22rem;
  }
}

@media (max-width: 700px) {
  .edge-why-section {
    padding: 3.3rem 0.85rem;
  }

  .edge-why-featured-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .edge-why-product-visual {
    min-height: 13rem;
  }

  .edge-why-side-grid {
    grid-template-columns: 1fr;
  }

  .edge-why-payments-card {
    grid-column: auto;
  }
}

/* --- Vixen Why section polish: hover cards, animated delivery, payment image placeholders --- */
.edge-why-featured-card,
.edge-why-mini-card {
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease,
    filter 280ms ease !important;
  will-change: border-color, box-shadow, filter;
}

.edge-why-featured-card:hover,
.edge-why-mini-card:hover {
  border-color: rgba(44, 186, 255, 0.36) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 1.8rem 4.7rem rgba(0, 0, 0, 0.28),
    0 0 3.4rem rgba(0, 157, 255, 0.15) !important;
  filter: brightness(1.035);
}

.edge-why-featured-card::after,
.edge-why-mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(71, 202, 255, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.edge-why-featured-card:hover::after,
.edge-why-mini-card:hover::after {
  opacity: 1;
}

.edge-why-mini-card-delivery {
  isolation: isolate;
}

.edge-why-delivery-circle {
  border: 0 !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 25, 45, 0.92), rgba(3, 10, 22, 0.76) 70%) !important;
  box-shadow:
    0 0 2.4rem rgba(0, 187, 255, 0.18),
    inset 0 0 1.5rem rgba(0, 177, 255, 0.11) !important;
  overflow: visible;
}

.edge-why-delivery-ring {
  position: absolute;
  inset: -0.22rem;
  width: calc(100% + 0.44rem);
  height: calc(100% + 0.44rem);
  transform: rotate(-90deg);
  pointer-events: none;
}

.edge-why-delivery-ring-track,
.edge-why-delivery-ring-progress {
  fill: none;
  stroke-width: 7.5;
}

.edge-why-delivery-ring-track {
  stroke: rgba(71, 202, 255, 0.14);
}

.edge-why-delivery-ring-progress {
  stroke: url(#edge-delivery-gradient);
  stroke: #12c8ff;
  stroke-linecap: round;
  stroke-dasharray: 263.9;
  stroke-dashoffset: 263.9;
  filter: drop-shadow(0 0 8px rgba(0, 190, 255, 0.54));
  animation: edgeDeliveryLoad 4.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.edge-why-delivery-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.2rem;
  transform: translateZ(0);
}

.edge-why-delivery-status span {
  font-size: 0.62rem;
  font-weight: 850;
  color: rgba(218, 245, 255, 0.88);
}

.edge-why-delivery-status i {
  color: #5bdcff;
  font-size: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 190, 255, 0.35));
}

.edge-why-delivery-loading {
  animation: edgeDeliveryLoadingText 4.8s ease-in-out infinite;
}

.edge-why-delivery-loading i {
  animation: edgeDeliverySpinner 1.05s linear infinite;
}

.edge-why-delivery-done {
  opacity: 0;
  transform: scale(0.92);
  animation: edgeDeliveryDoneText 4.8s ease-in-out infinite;
}

@keyframes edgeDeliveryLoad {
  0% {
    stroke-dashoffset: 263.9;
    opacity: 0.58;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  88% {
    stroke-dashoffset: 0;
    opacity: 0.72;
  }
  100% {
    stroke-dashoffset: 263.9;
    opacity: 0.48;
  }
}

@keyframes edgeDeliveryLoadingText {
  0%, 45% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  55%, 82% {
    opacity: 0;
    transform: scale(0.96);
    filter: blur(4px);
  }
  92%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes edgeDeliveryDoneText {
  0%, 48% {
    opacity: 0;
    transform: scale(0.92) translateY(4px);
    filter: blur(4px);
  }
  58%, 76% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  88%, 100% {
    opacity: 0;
    transform: scale(0.94) translateY(-3px);
    filter: blur(5px);
  }
}

@keyframes edgeDeliverySpinner {
  to { transform: rotate(360deg); }
}

.edge-why-payments-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 62%, rgba(0, 153, 255, 0.20), transparent 36%),
    linear-gradient(180deg, rgba(8, 28, 54, 0.84), rgba(5, 11, 23, 0.94)) !important;
}

.edge-why-payment-ghost-card {
  position: absolute;
  right: -4.2rem;
  bottom: -2.7rem;
  width: 18rem;
  height: 11.2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(104, 203, 255, 0.12);
  background:
    linear-gradient(16deg, transparent 0 35%, rgba(75, 205, 255, 0.08) 36% 46%, transparent 47% 100%),
    linear-gradient(135deg, rgba(41, 127, 255, 0.16), rgba(255, 255, 255, 0.025) 50%, rgba(0, 0, 0, 0.20));
  opacity: 0.42;
  transform: rotate(-10deg);
  filter: blur(0.2px);
  pointer-events: none;
}

.edge-why-payment-ghost-card::before,
.edge-why-payment-ghost-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  height: 0.78rem;
  border-radius: 99px;
  background: rgba(133, 212, 255, 0.10);
}

.edge-why-payment-ghost-card::before {
  top: 2.2rem;
}

.edge-why-payment-ghost-card::after {
  top: 4rem;
  width: 56%;
  right: auto;
}

.edge-why-payment-row {
  gap: 0.62rem !important;
  align-items: center;
}

.edge-why-payment-row .edge-why-pay-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.35rem;
  height: 2.55rem;
  padding: 0.25rem;
  border-radius: 0.55rem;
  overflow: hidden;
  background: rgba(8, 18, 34, 0.72) !important;
  border: 1px solid rgba(107, 196, 255, 0.23) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.055),
    0 0 0 rgba(0, 157, 255, 0);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    filter 240ms ease,
    background 240ms ease;
}

.edge-why-payment-row .edge-why-pay-logo:hover {
  border-color: rgba(57, 202, 255, 0.55) !important;
  background: rgba(10, 32, 61, 0.88) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 1.4rem rgba(0, 157, 255, 0.18);
  filter: brightness(1.08);
}

.edge-why-payment-row .edge-why-pay-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.36rem;
  pointer-events: none;
}

.edge-why-payment-row span:not(.edge-why-pay-logo) {
  display: none !important;
}

@media (max-width: 700px) {
  .edge-why-payment-ghost-card {
    width: 14rem;
    height: 9rem;
    right: -4.8rem;
  }

  .edge-why-payment-row .edge-why-pay-logo {
    width: 4rem;
  }
}

/* --- delivery loop cooldown: clean empty fade between delivered and delivering --- */
.edge-why-delivery-ring-progress {
  animation: edgeDeliveryLoad 6.4s cubic-bezier(0.65, 0, 0.35, 1) infinite !important;
}

.edge-why-delivery-loading {
  animation: edgeDeliveryLoadingText 6.4s ease-in-out infinite !important;
}

.edge-why-delivery-done {
  animation: edgeDeliveryDoneText 6.4s ease-in-out infinite !important;
}

@keyframes edgeDeliveryLoad {
  0% {
    stroke-dashoffset: 263.9;
    opacity: 0.56;
  }
  44% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  66% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  76% {
    stroke-dashoffset: 0;
    opacity: 0.28;
  }
  82% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  88% {
    stroke-dashoffset: 263.9;
    opacity: 0;
  }
  94% {
    stroke-dashoffset: 263.9;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 263.9;
    opacity: 0.56;
  }
}

@keyframes edgeDeliveryLoadingText {
  0%, 39% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  49%, 88% {
    opacity: 0;
    transform: scale(0.96);
    filter: blur(4px);
  }
  96%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes edgeDeliveryDoneText {
  0%, 48% {
    opacity: 0;
    transform: scale(0.92) translateY(4px);
    filter: blur(4px);
  }
  56%, 68% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  78%, 100% {
    opacity: 0;
    transform: scale(0.94) translateY(-3px);
    filter: blur(5px);
  }
}

/* --- Vixen Why polish: unclipped delivery glow + secure payments radar pulse --- */
.edge-why-mini-card-delivery,
.edge-why-mini-card-radar {
  isolation: isolate;
}

.edge-why-delivery-circle {
  overflow: visible !important;
  contain: none !important;
}

.edge-why-delivery-circle::before {
  content: "";
  position: absolute;
  inset: -1.35rem;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(22, 207, 255, 0.26) 0%, rgba(22, 207, 255, 0.12) 34%, rgba(22, 207, 255, 0.04) 55%, transparent 72%);
  filter: blur(14px);
  opacity: 0.72;
  pointer-events: none;
}

.edge-why-delivery-ring {
  inset: -0.9rem !important;
  width: calc(100% + 1.8rem) !important;
  height: calc(100% + 1.8rem) !important;
  overflow: visible !important;
  filter: drop-shadow(0 0 10px rgba(0, 190, 255, 0.42));
}

.edge-why-delivery-ring-progress {
  filter: none !important;
}

.edge-why-delivery-ring-track,
.edge-why-delivery-ring-progress {
  transform-origin: 50% 50%;
}

.edge-why-mini-card-radar .edge-why-icon-ring {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 192, 255, 0.16), transparent 38%),
    repeating-radial-gradient(circle, rgba(82, 185, 255, 0.16) 0 1px, transparent 1px 1.05rem) !important;
  border-color: rgba(62, 198, 255, 0.22) !important;
}

.edge-why-mini-card-radar .edge-why-icon-ring::before,
.edge-why-mini-card-radar .edge-why-icon-ring::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 207, 255, 0.34);
  box-shadow: 0 0 1.15rem rgba(0, 174, 255, 0.18);
  pointer-events: none;
  transform: scale(0.72);
  opacity: 0;
  animation: edgeRadarPulse 3.4s ease-out infinite;
}

.edge-why-mini-card-radar .edge-why-icon-ring::after {
  animation-delay: 1.15s;
}

.edge-why-mini-card-radar .edge-why-icon-ring i {
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at 50% 38%, #48d7ff, #0b91ff 58%, #096dd7 100%) !important;
  box-shadow:
    0 0 1.1rem rgba(0, 174, 255, 0.32),
    0 0 2.4rem rgba(0, 132, 255, 0.18) !important;
  animation: edgeShieldCorePulse 3.4s ease-in-out infinite;
}

.edge-why-mini-card-radar .edge-why-icon-ring::marker {
  display: none;
}

@keyframes edgeRadarPulse {
  0% {
    transform: scale(0.58);
    opacity: 0;
  }
  18% {
    opacity: 0.65;
  }
  74% {
    opacity: 0.08;
  }
  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@keyframes edgeShieldCorePulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  48% {
    transform: scale(1.045);
    filter: brightness(1.1);
  }
}

/* --- delivery circle size restore: keep old proportions, fix glow without oversized ring --- */
.edge-why-delivery-circle {
  width: 6.3rem !important;
  height: 6.3rem !important;
  margin: 0 auto 1.1rem !important;
  overflow: visible !important;
  contain: none !important;
  box-shadow:
    0 0 1.65rem rgba(0, 187, 255, 0.18),
    inset 0 0 1.35rem rgba(0, 177, 255, 0.10) !important;
}

.edge-why-delivery-circle::before {
  inset: -0.62rem !important;
  background:
    radial-gradient(circle, rgba(22, 207, 255, 0.20) 0%, rgba(22, 207, 255, 0.09) 44%, rgba(22, 207, 255, 0.025) 62%, transparent 76%) !important;
  filter: blur(10px) !important;
  opacity: 0.6 !important;
}

.edge-why-delivery-ring {
  inset: -0.22rem !important;
  width: calc(100% + 0.44rem) !important;
  height: calc(100% + 0.44rem) !important;
  overflow: visible !important;
  filter: none !important;
}

.edge-why-delivery-ring-track,
.edge-why-delivery-ring-progress {
  stroke-width: 7.5 !important;
}

.edge-why-delivery-ring-progress {
  filter: none !important;
}

/* --- Why Choose Vixen: wider full-page section polish --- */
.edge-why-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: clamp(4.8rem, 7.5vw, 7.8rem) clamp(1rem, 3vw, 2.25rem) !important;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 132, 255, 0.075), transparent 38%),
    radial-gradient(circle at 17% 58%, rgba(0, 173, 255, 0.055), transparent 30%),
    radial-gradient(circle at 83% 50%, rgba(0, 173, 255, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(2, 7, 15, 0.08), rgba(1, 5, 12, 0.22));
}

.edge-why-section::before {
  inset: 0 !important;
  height: 100% !important;
  background:
    radial-gradient(circle at 50% 52%, rgba(0, 132, 255, 0.13), transparent 34%),
    radial-gradient(circle at 28% 54%, rgba(0, 194, 255, 0.075), transparent 30%),
    radial-gradient(circle at 72% 48%, rgba(0, 194, 255, 0.065), transparent 31%) !important;
  opacity: 0.95 !important;
}

.edge-why-section::after {
  content: "";
  position: absolute;
  inset: 10% 0 8%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 124, 255, 0.025) 18%, rgba(0, 184, 255, 0.04) 50%, rgba(0, 124, 255, 0.025) 82%, transparent 100%);
  pointer-events: none;
  opacity: 0.9;
}

.edge-why-inner {
  width: min(92rem, calc(100vw - 3.2rem)) !important;
}

.edge-why-heading {
  margin-bottom: clamp(2.25rem, 3.8vw, 3.35rem) !important;
}

.edge-why-layout {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.96fr) !important;
  gap: clamp(1.15rem, 1.6vw, 1.45rem) !important;
}

.edge-why-featured-card {
  min-height: clamp(26.5rem, 32vw, 31rem) !important;
  padding: clamp(1.55rem, 2.25vw, 2.35rem) !important;
}

.edge-why-side-grid {
  gap: clamp(1.15rem, 1.6vw, 1.45rem) !important;
}

.edge-why-mini-card {
  min-height: clamp(12.3rem, 14.5vw, 13.8rem) !important;
  padding: clamp(1.25rem, 1.45vw, 1.48rem) !important;
}

.edge-why-payments-card {
  min-height: clamp(10.7rem, 12vw, 12.2rem) !important;
}

.edge-why-product-box {
  width: min(16.2rem, 100%) !important;
}

.edge-why-card-glow {
  width: 38rem !important;
  height: 38rem !important;
  inset: auto auto -38% -18% !important;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.34), rgba(0, 132, 255, 0.14) 38%, transparent 68%) !important;
}

@media (max-width: 980px) {
  .edge-why-inner {
    width: min(54rem, calc(100vw - 2rem)) !important;
  }

  .edge-why-layout {
    grid-template-columns: 1fr !important;
  }

  .edge-why-featured-card {
    min-height: 23rem !important;
  }
}

@media (max-width: 700px) {
  .edge-why-section {
    padding: 3.8rem 0.85rem !important;
  }

  .edge-why-inner {
    width: min(100%, calc(100vw - 1.35rem)) !important;
  }

  .edge-why-mini-card,
  .edge-why-payments-card {
    min-height: auto !important;
  }
}

/* --- Vixen flexible payments layout polish: larger placeholders + calmer vertical spacing --- */
.edge-why-payments-card {
  padding: clamp(2rem, 2.25vw, 2.35rem) clamp(1.8rem, 2.4vw, 2.35rem) !important;
  min-height: clamp(13.2rem, 14.2vw, 14.9rem) !important;
  align-content: start !important;
}

.edge-why-payments-card h3 {
  margin: 0 0 0.78rem !important;
  line-height: 1.08 !important;
}

.edge-why-payments-card p {
  max-width: 34rem !important;
  margin: 0 !important;
  line-height: 1.58 !important;
}

.edge-why-payment-row {
  margin-top: clamp(1.25rem, 1.75vw, 1.75rem) !important;
  gap: clamp(0.78rem, 1vw, 1rem) !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  position: relative !important;
  z-index: 2 !important;
}

.edge-why-payment-row .edge-why-pay-logo {
  width: clamp(5.2rem, 5.4vw, 6.15rem) !important;
  height: clamp(3.05rem, 3.12vw, 3.55rem) !important;
  padding: 0.3rem !important;
  border-radius: 0.58rem !important;
  background: rgba(6, 15, 29, 0.82) !important;
  border-color: rgba(82, 190, 255, 0.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0.45rem 1.2rem rgba(0, 0, 0, 0.22) !important;
}

.edge-why-payment-row .edge-why-pay-logo img {
  border-radius: 0.42rem !important;
}

.edge-why-payment-ghost-card {
  width: clamp(19rem, 23vw, 25.5rem) !important;
  height: clamp(11.3rem, 13vw, 14rem) !important;
  right: clamp(-7.2rem, -5.2vw, -4.8rem) !important;
  bottom: clamp(-3.5rem, -2.4vw, -2.4rem) !important;
  opacity: 0.34 !important;
}

@media (max-width: 980px) {
  .edge-why-payments-card {
    padding: 1.85rem !important;
  }

  .edge-why-payment-row {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 700px) {
  .edge-why-payment-row .edge-why-pay-logo {
    width: 4.9rem !important;
    height: 2.92rem !important;
  }

  .edge-why-payment-row {
    gap: 0.7rem !important;
  }
}

/* --- Why section gradient cleanup: keep one stronger blue glow only --- */
.edge-why-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 15, 0.04) 0%, rgba(2, 8, 18, 0.10) 48%, rgba(2, 7, 15, 0.04) 100%) !important;
}

.edge-why-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 160, 255, 0.15) 0%, rgba(0, 132, 255, 0.10) 34%, rgba(0, 132, 255, 0.045) 58%, transparent 76%) !important;
  opacity: 0.95 !important;
}

.edge-why-section::after {
  display: none !important;
  content: none !important;
}

/* --- Flexible Payments logo strip: tighter frames + smooth left marquee --- */
.edge-why-payment-marquee {
  position: relative;
  z-index: 3;
  width: min(100%, 42rem);
  margin-top: clamp(1.28rem, 1.7vw, 1.72rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
}

.edge-why-payment-marquee::before,
.edge-why-payment-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 4;
  pointer-events: none;
}

.edge-why-payment-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 12, 24, 0.86), transparent);
}

.edge-why-payment-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 12, 24, 0.86), transparent);
}

.edge-why-payment-row.edge-why-payment-track {
  width: max-content !important;
  margin-top: 0 !important;
  gap: clamp(0.58rem, 0.8vw, 0.78rem) !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  animation: edgePaymentMarquee 18s linear infinite;
  will-change: transform;
}

.edge-why-payment-marquee:hover .edge-why-payment-track {
  animation-play-state: paused;
}

.edge-why-payment-row.edge-why-payment-track .edge-why-pay-logo {
  width: auto !important;
  min-width: 0 !important;
  height: clamp(2.68rem, 2.72vw, 3.05rem) !important;
  padding: 0.22rem !important;
  border-radius: 0.42rem !important;
  background: rgba(7, 15, 29, 0.74) !important;
  border-color: rgba(92, 196, 255, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0.45rem 1.2rem rgba(0, 0, 0, 0.20) !important;
  flex: 0 0 auto !important;
}

.edge-why-payment-row.edge-why-payment-track .edge-why-pay-logo:hover {
  border-color: rgba(55, 205, 255, 0.62) !important;
  background: rgba(9, 26, 48, 0.92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 0 1.35rem rgba(0, 174, 255, 0.20) !important;
  filter: brightness(1.08);
}

.edge-why-payment-row.edge-why-payment-track .edge-why-pay-logo img {
  width: auto !important;
  max-width: clamp(5.15rem, 5.4vw, 6.2rem) !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0.32rem !important;
}

@keyframes edgePaymentMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - clamp(0.29rem, 0.4vw, 0.39rem)), 0, 0);
  }
}

@media (max-width: 700px) {
  .edge-why-payment-marquee {
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 90%, transparent 100%);
  }

  .edge-why-payment-row.edge-why-payment-track {
    animation-duration: 15s;
  }

  .edge-why-payment-row.edge-why-payment-track .edge-why-pay-logo img {
    max-width: 5.15rem !important;
  }
}

/* --- Seamless payment logo marquee: no blank space and no hard reset --- */
.edge-why-payment-row.edge-why-payment-track {
  display: flex !important;
  width: max-content !important;
  margin-top: 0 !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  animation: edgePaymentMarqueeSeamless 22s linear infinite !important;
  will-change: transform;
}

.edge-why-payment-group {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: clamp(0.58rem, 0.8vw, 0.78rem) !important;
  padding-right: clamp(0.58rem, 0.8vw, 0.78rem) !important;
}

.edge-why-payment-group .edge-why-pay-logo {
  width: auto !important;
  min-width: 0 !important;
  height: clamp(2.68rem, 2.72vw, 3.05rem) !important;
  padding: 0.22rem !important;
  border-radius: 0.42rem !important;
  background: rgba(7, 15, 29, 0.74) !important;
  border-color: rgba(92, 196, 255, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0.45rem 1.2rem rgba(0, 0, 0, 0.20) !important;
  flex: 0 0 auto !important;
}

.edge-why-payment-group .edge-why-pay-logo:hover {
  border-color: rgba(55, 205, 255, 0.62) !important;
  background: rgba(9, 26, 48, 0.92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 0 1.35rem rgba(0, 174, 255, 0.20) !important;
  filter: brightness(1.08);
}

.edge-why-payment-group .edge-why-pay-logo img {
  width: auto !important;
  max-width: clamp(5.15rem, 5.4vw, 6.2rem) !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0.32rem !important;
}

@keyframes edgePaymentMarqueeSeamless {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 700px) {
  .edge-why-payment-row.edge-why-payment-track {
    animation-duration: 18s !important;
  }

  .edge-why-payment-group .edge-why-pay-logo img {
    max-width: 5.15rem !important;
  }
}

/* --- Vixen color unification: use Why Vixen royal-blue palette on comparison/categories --- */
.edge-comparison-eyebrow,
.edge-category-eyebrow {
  color: #65d3ff !important;
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 157, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(5, 34, 76, 0.84), rgba(7, 14, 32, 0.78)) !important;
  border: 1px solid rgba(55, 174, 255, 0.44) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 157, 255, 0.06),
    0 0 24px rgba(0, 157, 255, 0.14) !important;
  text-shadow: 0 0 12px rgba(0, 174, 255, 0.26) !important;
}

.edge-comparison-eyebrow-icon,
.edge-category-eyebrow-icon,
.edge-comparison-eyebrow i,
.edge-category-eyebrow i {
  color: #30b9ff !important;
  filter: drop-shadow(0 0 10px rgba(0, 174, 255, 0.35)) !important;
}

.edge-comparison-title .edge-purple-text,
.edge-category-title-animated .edge-purple-text {
  background-image: linear-gradient(
    110deg,
    #8edfff 0%,
    #58caff 18%,
    #3dbaff 38%,
    #0a83ff 68%,
    #67d8ff 100%
  ) !important;
  background-size: 220% 100% !important;
  background-position: 0% 50% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 0 16px rgba(0, 157, 255, 0.16)) !important;
  animation: edgeRoyalBlueTextFlow 4.6s ease-in-out infinite alternate !important;
}

@keyframes edgeRoyalBlueTextFlow {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 13px rgba(0, 157, 255, 0.14)) saturate(1.02);
  }
  50% {
    background-position: 72% 50%;
    filter: drop-shadow(0 0 17px rgba(0, 174, 255, 0.20)) saturate(1.14);
  }
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 16px rgba(10, 131, 255, 0.18)) saturate(1.08);
  }
}

/* --- Vixen Why gradient position polish: smaller and closer to comparison slider --- */
.edge-why-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 15, 0.035) 0%, rgba(2, 8, 18, 0.085) 48%, rgba(2, 7, 15, 0.035) 100%) !important;
}

.edge-why-section::before {
  content: "" !important;
  position: absolute !important;
  inset: -3.2rem 0 18% !important;
  height: auto !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0, 160, 255, 0.16) 0%, rgba(0, 132, 255, 0.105) 26%, rgba(0, 132, 255, 0.042) 45%, transparent 64%) !important;
  opacity: 0.96 !important;
}

.edge-why-section::after {
  display: none !important;
  content: none !important;
}

/* --- Why Choose Vixen gradient correction: previous look + smaller top glow + subtle bottom glow --- */
.edge-why-section {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    linear-gradient(180deg,
      rgba(2, 7, 15, 0.03) 0%,
      rgba(2, 8, 18, 0.075) 48%,
      rgba(2, 7, 15, 0.03) 100%
    ) !important;
}

.edge-why-section::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -2.25rem !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  height: clamp(10rem, 18vw, 16rem) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background:
    radial-gradient(ellipse at 50% 92%,
      rgba(0, 170, 255, 0.13) 0%,
      rgba(0, 132, 255, 0.075) 28%,
      rgba(0, 132, 255, 0.032) 48%,
      transparent 68%
    ) !important;
  opacity: 0.82 !important;
}

.edge-why-section::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: auto !important;
  right: 0 !important;
  bottom: -2.5rem !important;
  left: 0 !important;
  height: clamp(9rem, 16vw, 14rem) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background:
    radial-gradient(ellipse at 50% 8%,
      rgba(0, 170, 255, 0.11) 0%,
      rgba(0, 132, 255, 0.062) 30%,
      rgba(0, 132, 255, 0.026) 50%,
      transparent 69%
    ) !important;
  opacity: 0.68 !important;
}

.edge-why-inner {
  position: relative !important;
  z-index: 2 !important;
}

/* --- Why Choose Vixen continuous section glow repair ---
   Keep one clean blue section glow across the whole area instead of separated top/bottom bands. */
.edge-why-section {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(0, 160, 255, 0.105) 0%,
      rgba(0, 132, 255, 0.078) 30%,
      rgba(0, 94, 190, 0.045) 56%,
      rgba(0, 44, 96, 0.020) 76%,
      transparent 100%
    ),
    linear-gradient(180deg,
      rgba(2, 7, 15, 0.025) 0%,
      rgba(0, 38, 78, 0.075) 18%,
      rgba(0, 75, 138, 0.085) 50%,
      rgba(0, 38, 78, 0.075) 82%,
      rgba(2, 7, 15, 0.025) 100%
    ) !important;
}

.edge-why-section::before,
.edge-why-section::after {
  content: none !important;
  display: none !important;
}

.edge-why-inner {
  position: relative !important;
  z-index: 2 !important;
}

/* --- Vixen Why section glow compact position fix ---
   Keep the same clean continuous glow, but make the illuminated section shorter
   and lift it slightly closer to the comparison slider. */
.edge-why-section {
  margin-top: -1.15rem !important;
  padding-top: clamp(3.25rem, 5.2vw, 5.45rem) !important;
  padding-bottom: clamp(3.35rem, 5.4vw, 5.7rem) !important;
  background:
    radial-gradient(ellipse at 50% 42%,
      rgba(0, 160, 255, 0.082) 0%,
      rgba(0, 132, 255, 0.060) 28%,
      rgba(0, 92, 190, 0.034) 54%,
      rgba(0, 44, 96, 0.014) 74%,
      transparent 95%
    ),
    linear-gradient(180deg,
      rgba(2, 7, 15, 0.018) 0%,
      rgba(0, 38, 78, 0.052) 22%,
      rgba(0, 75, 138, 0.062) 48%,
      rgba(0, 38, 78, 0.052) 76%,
      rgba(2, 7, 15, 0.018) 100%
    ) !important;
}

.edge-why-section::before,
.edge-why-section::after {
  content: none !important;
  display: none !important;
}

.edge-why-heading {
  margin-bottom: clamp(1.9rem, 3.2vw, 2.75rem) !important;
}

@media (max-width: 700px) {
  .edge-why-section {
    margin-top: -0.65rem !important;
    padding-top: 3rem !important;
    padding-bottom: 3.35rem !important;
  }
}

/* --- Fix Flexible Payments logo frame bottom clipping --- */
.edge-why-payment-marquee {
  padding-top: 0.24rem !important;
  padding-bottom: 0.34rem !important;
  overflow: hidden !important;
}

.edge-why-payment-row.edge-why-payment-track,
.edge-why-payment-group {
  align-items: center !important;
}

.edge-why-payment-row.edge-why-payment-track .edge-why-pay-logo,
.edge-why-payment-group .edge-why-pay-logo {
  box-sizing: border-box !important;
  overflow: visible !important;
  transform: translateZ(0) !important;
}

.edge-why-payment-row.edge-why-payment-track .edge-why-pay-logo img,
.edge-why-payment-group .edge-why-pay-logo img {
  display: block !important;
}

/* --- Vixen final CTA polish: category button bottom + hero discord button --- */
.edge-categories-section .edge-split-heading {
  justify-content: center !important;
}

.edge-category-bottom-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: clamp(1.8rem, 3vw, 2.55rem);
}

.edge-section-button--category-bottom {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem !important;
  min-height: 3rem !important;
  padding: 0.82rem 1.55rem !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  border: 1px solid rgba(86, 210, 255, 0.62) !important;
  background: linear-gradient(135deg, #009dff 0%, #00b7ff 46%, #006dff 100%) !important;
  box-shadow:
    0 1rem 2.6rem rgba(0, 157, 255, 0.24),
    0 0 1.8rem rgba(86, 210, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  transition:
    filter 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease !important;
}

.edge-section-button--category-bottom i {
  font-size: 0.95em;
  transition: transform 220ms ease;
}

.edge-section-button--category-bottom:hover,
.edge-section-button--category-bottom.vx-hover-active {
  transform: none !important;
  filter: brightness(1.08) !important;
  border-color: rgba(118, 224, 255, 0.82) !important;
  box-shadow:
    0 1.15rem 3rem rgba(0, 157, 255, 0.32),
    0 0 2.4rem rgba(86, 210, 255, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

.edge-section-button--category-bottom:hover i,
.edge-section-button--category-bottom.vx-hover-active i {
  transform: translateX(3px);
}

.edge-hero-actions--with-discord {
  gap: 0.9rem !important;
}

.edge-hero-actions--with-discord > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.edge-hero-actions--with-discord > a i {
  order: -1;
  margin-inline: 0 !important;
}

.edge-hero-actions--with-discord > a:not(.edge-discord-button) {
  gap: 0.62rem !important;
}

.edge-discord-button {
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem !important;
  border-radius: 12px !important;
  gap: 0.62rem !important;
  color: rgba(255, 255, 255, 0.94) !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(13, 18, 28, 0.72) !important;
  box-shadow:
    0 1rem 2.4rem rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition:
    filter 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease !important;
}

.edge-discord-button i {
  font-size: 1.05rem;
  color: #ffffff;
}

.edge-discord-button:hover,
.edge-discord-button.vx-hover-active {
  transform: none !important;
  filter: brightness(1.08) !important;
  border-color: rgba(86, 210, 255, 0.46) !important;
  background:
    linear-gradient(180deg, rgba(0, 183, 255, 0.13), rgba(0, 109, 255, 0.06)),
    rgba(13, 18, 28, 0.78) !important;
  box-shadow:
    0 1.15rem 2.8rem rgba(0, 0, 0, 0.28),
    0 0 1.6rem rgba(0, 183, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

@media (max-width: 760px) {
  .edge-category-bottom-action {
    margin-top: 1.6rem;
  }

  .edge-hero-actions--with-discord {
    gap: 0.72rem !important;
  }

  .edge-hero-actions--with-discord > a {
    width: min(100%, 230px);
  }
}

/* --- Vixen fix: category CTA truly centered below cards + equal hero buttons --- */
.edge-categories-section .edge-split-heading > .edge-section-button,
.edge-categories-section .edge-split-heading > a.edge-section-button {
  display: none !important;
}

.edge-categories-section .edge-category-bottom-action {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: clamp(2rem, 3.2vw, 2.85rem) auto 0 !important;
  padding: 0 !important;
  grid-column: 1 / -1 !important;
  text-align: center !important;
}

.edge-categories-section .edge-category-bottom-action .edge-section-button,
.edge-categories-section .edge-category-bottom-action .edge-section-button--category-bottom,
.edge-categories-section .edge-section-button--category-bottom {
  position: static !important;
  inset: auto !important;
  right: auto !important;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 auto !important;
  transform: none !important;
  translate: none !important;
}

.edge-categories-section .edge-section-button--category-bottom {
  min-height: 3.05rem !important;
  padding: 0.86rem 1.75rem !important;
  border-radius: 999px !important;
  border-color: rgba(72, 202, 255, 0.72) !important;
  background: linear-gradient(135deg, #00b8ff 0%, #168cff 48%, #006dff 100%) !important;
  color: #fff !important;
  box-shadow:
    0 1.05rem 2.8rem rgba(0, 157, 255, 0.25),
    0 0 2.1rem rgba(72, 202, 255, 0.17),
    inset 0 1px 0 rgba(255,255,255,0.24) !important;
}

.edge-categories-section .edge-section-button--category-bottom:hover,
.edge-categories-section .edge-section-button--category-bottom.vx-hover-active {
  transform: none !important;
  filter: brightness(1.08) !important;
}

.edge-hero-actions--with-discord {
  align-items: center !important;
  justify-content: center !important;
  gap: 0.85rem !important;
}

.edge-hero-actions--with-discord > a,
.edge-hero-actions--with-discord > .button,
.edge-hero-actions--with-discord > .btn {
  width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  min-width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  max-width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  min-height: 3.35rem !important;
  padding: 0.92rem 1.05rem !important;
  box-sizing: border-box !important;
  gap: 0.62rem !important;
  white-space: nowrap !important;
}

.edge-hero-actions--with-discord .edge-discord-button {
  color: #ffffff !important;
  border: 1px solid rgba(132, 164, 255, 0.58) !important;
  background: linear-gradient(135deg, #5865f2 0%, #377dff 48%, #00aaff 100%) !important;
  box-shadow:
    0 1rem 2.8rem rgba(0, 139, 255, 0.24),
    0 0 2rem rgba(88, 101, 242, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.24) !important;
}

.edge-hero-actions--with-discord .edge-discord-button:hover,
.edge-hero-actions--with-discord .edge-discord-button.vx-hover-active {
  filter: brightness(1.08) !important;
  border-color: rgba(151, 182, 255, 0.78) !important;
  background: linear-gradient(135deg, #6874ff 0%, #328dff 48%, #00b7ff 100%) !important;
  box-shadow:
    0 1.2rem 3.2rem rgba(0, 139, 255, 0.32),
    0 0 2.4rem rgba(88, 101, 242, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

.edge-hero-actions--with-discord .edge-discord-button i {
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .edge-hero-actions--with-discord > a,
  .edge-hero-actions--with-discord > .button,
  .edge-hero-actions--with-discord > .btn {
    width: min(100%, 13rem) !important;
    min-width: min(100%, 13rem) !important;
    max-width: min(100%, 13rem) !important;
  }
}


/* --- Vixen final fix: Discord CTA exact sizing + distinct Discord/royal gradient --- */
.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button,
.edge-hero-actions--with-discord > a.edge-discord-button,
a.edge-discord-button {
  width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  min-width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  max-width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  min-height: 3.35rem !important;
  padding: 0.92rem 1.05rem !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.62rem !important;
  white-space: nowrap !important;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  color: #ffffff !important;
  border: 1px solid rgba(142, 154, 255, 0.78) !important;
  background:
    linear-gradient(135deg, #5865f2 0%, #6b5cff 42%, #159dff 100%) !important;
  box-shadow:
    0 1rem 2.8rem rgba(21, 157, 255, 0.25),
    0 0 2.15rem rgba(88, 101, 242, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button i,
.edge-hero-actions--with-discord > a.edge-discord-button i,
a.edge-discord-button i {
  font-size: 0.92rem !important;
  width: 1rem !important;
  height: 1rem !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  flex: 0 0 auto !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button span,
.edge-hero-actions--with-discord > a.edge-discord-button span,
a.edge-discord-button span {
  font-size: inherit !important;
  line-height: 1 !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button:hover,
.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button.vx-hover-active,
.edge-hero-actions--with-discord > a.edge-discord-button:hover,
.edge-hero-actions--with-discord > a.edge-discord-button.vx-hover-active,
a.edge-discord-button:hover,
a.edge-discord-button.vx-hover-active {
  background:
    linear-gradient(135deg, #6874ff 0%, #7a64ff 42%, #20b6ff 100%) !important;
  border-color: rgba(176, 184, 255, 0.88) !important;
  filter: brightness(1.06) !important;
  box-shadow:
    0 1.2rem 3.2rem rgba(21, 157, 255, 0.34),
    0 0 2.55rem rgba(88, 101, 242, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.29) !important;
}

@media (max-width: 760px) {
  .edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button,
  .edge-hero-actions--with-discord > a.edge-discord-button,
  a.edge-discord-button {
    width: min(100%, 13rem) !important;
    min-width: min(100%, 13rem) !important;
    max-width: min(100%, 13rem) !important;
  }
}

/* --- Vixen final Discord button glass match: 1:1 with Browse Products --- */
.edge-hero-actions.edge-hero-actions--with-discord {
  align-items: center !important;
  justify-content: center !important;
  gap: 0.85rem !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a,
.edge-hero-actions.edge-hero-actions--with-discord > .button,
.edge-hero-actions.edge-hero-actions--with-discord > .btn {
  width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  min-width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  max-width: clamp(11.75rem, 12.2vw, 12.9rem) !important;
  height: 3.35rem !important;
  min-height: 3.35rem !important;
  max-height: 3.35rem !important;
  padding: 0 1.05rem !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.62rem !important;
  white-space: nowrap !important;
  font-size: 0.875rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a i,
.edge-hero-actions.edge-hero-actions--with-discord > .button i,
.edge-hero-actions.edge-hero-actions--with-discord > .btn i,
.edge-hero-actions.edge-hero-actions--with-discord > a svg,
.edge-hero-actions.edge-hero-actions--with-discord > .button svg,
.edge-hero-actions.edge-hero-actions--with-discord > .btn svg {
  order: -1 !important;
  margin: 0 !important;
  width: 0.95rem !important;
  height: 0.95rem !important;
  min-width: 0.95rem !important;
  min-height: 0.95rem !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a span,
.edge-hero-actions.edge-hero-actions--with-discord > .button span,
.edge-hero-actions.edge-hero-actions--with-discord > .btn span {
  font-size: inherit !important;
  line-height: 1 !important;
  font-weight: inherit !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button,
.edge-hero-actions--with-discord > a.edge-discord-button,
a.edge-discord-button {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
    rgba(18, 20, 28, 0.42) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.18) !important;
  backdrop-filter: blur(14px) saturate(1.18) !important;
  box-shadow:
    0 1rem 2.35rem rgba(0, 0, 0, 0.28),
    0 0 1.8rem rgba(88, 101, 242, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
  text-shadow: none !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button i,
.edge-hero-actions--with-discord > a.edge-discord-button i,
a.edge-discord-button i,
.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button svg,
.edge-hero-actions--with-discord > a.edge-discord-button svg,
a.edge-discord-button svg {
  color: #ffffff !important;
  fill: currentColor !important;
}

.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button:hover,
.edge-hero-actions.edge-hero-actions--with-discord > a.edge-discord-button.vx-hover-active,
.edge-hero-actions--with-discord > a.edge-discord-button:hover,
.edge-hero-actions--with-discord > a.edge-discord-button.vx-hover-active,
a.edge-discord-button:hover,
a.edge-discord-button.vx-hover-active {
  transform: none !important;
  translate: 0 0 !important;
  filter: brightness(1.08) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.042)),
    rgba(24, 27, 38, 0.50) !important;
  box-shadow:
    0 1.15rem 2.75rem rgba(0, 0, 0, 0.32),
    0 0 2.1rem rgba(88, 101, 242, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
}

@media (max-width: 760px) {
  .edge-hero-actions.edge-hero-actions--with-discord > a,
  .edge-hero-actions.edge-hero-actions--with-discord > .button,
  .edge-hero-actions.edge-hero-actions--with-discord > .btn {
    width: min(100%, 13rem) !important;
    min-width: min(100%, 13rem) !important;
    max-width: min(100%, 13rem) !important;
  }
}

/* --- Vixen Why section compact height polish ---
   Only reduces the vertical length of the Why Choose Vixen section.
   Keeps the same cards, glow style, marquee, and animations. */
.edge-why-section {
  margin-top: -1.35rem !important;
  padding-top: clamp(2.35rem, 3.85vw, 3.95rem) !important;
  padding-bottom: clamp(2.45rem, 3.95vw, 4.15rem) !important;
  background:
    radial-gradient(ellipse at 50% 42%,
      rgba(0, 160, 255, 0.078) 0%,
      rgba(0, 132, 255, 0.056) 28%,
      rgba(0, 92, 190, 0.031) 54%,
      rgba(0, 44, 96, 0.012) 74%,
      transparent 95%
    ),
    linear-gradient(180deg,
      rgba(2, 7, 15, 0.016) 0%,
      rgba(0, 38, 78, 0.048) 22%,
      rgba(0, 75, 138, 0.058) 48%,
      rgba(0, 38, 78, 0.048) 76%,
      rgba(2, 7, 15, 0.016) 100%
    ) !important;
}

.edge-why-section::before,
.edge-why-section::after {
  content: none !important;
  display: none !important;
}

.edge-why-heading {
  margin-bottom: clamp(1.25rem, 2.05vw, 1.8rem) !important;
}

.edge-why-layout {
  gap: clamp(0.85rem, 1.25vw, 1.05rem) !important;
}

@media (max-width: 700px) {
  .edge-why-section {
    margin-top: -0.75rem !important;
    padding-top: 2.45rem !important;
    padding-bottom: 2.75rem !important;
  }

  .edge-why-heading {
    margin-bottom: 1.35rem !important;
  }
}


/* --- Hero side characters: image-only replacement, based on backup v9 intro system ---
   Add assets/hero-left.png and assets/hero-right.png. The old CSS placeholder markup is no longer used. */
.edge-home-hero .edge-agent {
  top: auto !important;
  bottom: -1.85rem !important;
  width: clamp(500px, 36vw, 780px) !important;
  height: clamp(640px, 82vh, 920px) !important;
  overflow: visible !important;
  opacity: 0.88;
  pointer-events: none !important;
  z-index: 2;
  filter:
    drop-shadow(0 0 34px rgba(var(--cl-accent), 0.16))
    drop-shadow(0 2rem 4.25rem rgba(0, 0, 0, 0.72));
}

.edge-home-hero .edge-agent-left {
  left: clamp(2.1rem, 5.4vw, 7.6rem) !important;
}

.edge-home-hero .edge-agent-right {
  right: clamp(2.1rem, 5.4vw, 7.6rem) !important;
}

.edge-home-hero .edge-agent-image {
  display: block !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  opacity: 0.9;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  transform-origin: center bottom !important;
  backface-visibility: hidden;
  filter:
    drop-shadow(0 0 34px rgba(var(--cl-accent), 0.18))
    drop-shadow(0 2rem 4.25rem rgba(0, 0, 0, 0.72));
  animation: edgeAgentImageFloat 7s ease-in-out infinite;
}

.edge-home-hero .edge-agent-left .edge-agent-image {
  transform: rotate(-2deg);
}

.edge-home-hero .edge-agent-right .edge-agent-image {
  transform: rotate(2deg);
  animation-delay: 0.85s;
}

/* Keeps the original clean intro from backup v9 for the hero text, buttons, side images and benefit cards. */
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-agent,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-eyebrow,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-title,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-subtitle,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-actions,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-benefit-strip .edge-benefit-card {
  opacity: 0 !important;
  filter: blur(10px) !important;
  pointer-events: none !important;
}

html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-eyebrow,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-title,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-subtitle,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-actions,
html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-benefit-strip .edge-benefit-card {
  transform: translate3d(0, 36px, 0) scale(0.985) !important;
}

html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-agent-left {
  transform: translate3d(-42px, 28px, 0) scale(0.96) !important;
}

html.vixen-motion-ready:not(.vixen-motion-loaded) .edge-home-hero .edge-agent-right {
  transform: translate3d(42px, 28px, 0) scale(0.96) !important;
}

html.vixen-motion-ready.vixen-motion-settled .edge-home-hero .edge-agent {
  opacity: 0.88 !important;
  filter:
    drop-shadow(0 0 34px rgba(var(--cl-accent), 0.16))
    drop-shadow(0 2rem 4.25rem rgba(0, 0, 0, 0.72)) !important;
}

@keyframes edgeAgentImageFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

@media (max-width: 1180px) {
  .edge-home-hero .edge-agent {
    bottom: -1.55rem !important;
    width: clamp(345px, 37vw, 510px) !important;
    height: clamp(485px, 68vh, 720px) !important;
    /* opacity stays on the image only, so the intro animation can keep the wrapper hidden until it starts */
  }

  .edge-home-hero .edge-agent-left {
    left: 0.15rem !important;
  }

  .edge-home-hero .edge-agent-right {
    right: 0.15rem !important;
  }

  .edge-home-hero .edge-agent-image {
    opacity: 0.58 !important;
  }
}

@media (max-width: 760px) {
  .edge-home-hero .edge-agent {
    bottom: -1rem !important;
    width: clamp(225px, 44vw, 345px) !important;
    height: clamp(355px, 53vh, 545px) !important;
    /* opacity stays on the image only, so the intro animation can keep the wrapper hidden until it starts */
  }

  .edge-home-hero .edge-agent-image {
    opacity: 0.36 !important;
  }
}


/* --- Hero image first-paint prehide fix ---
   Keep the two hero character images invisible until the intro starts,
   preventing the quick image flash before the clean reveal animation. */
html:not(.vixen-motion-loaded) .edge-home-hero .edge-agent,
html:not(.vixen-motion-loaded) .edge-home-hero .edge-agent-image {
  opacity: 0 !important;
  visibility: hidden !important;
}

html.vixen-motion-loaded .edge-home-hero .edge-agent,
html.vixen-motion-loaded .edge-home-hero .edge-agent-image {
  visibility: visible !important;
}


/* --- Vixen first-paint full hero prehide fix ---
   This catches the hero text, CTA buttons and benefit boxes before JS/classes finish loading,
   while keeping the existing clean intro animation untouched. */
@media (prefers-reduced-motion: no-preference) {
  html:not(.vixen-motion-loaded) .edge-home-hero .edge-eyebrow,
  html:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-title,
  html:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-subtitle,
  html:not(.vixen-motion-loaded) .edge-home-hero .edge-hero-actions,
  html:not(.vixen-motion-loaded) .edge-home-hero .edge-agent,
  html:not(.vixen-motion-loaded) .edge-home-hero .edge-agent-image,
  html:not(.vixen-motion-loaded) .edge-home-hero .edge-scroll-cue,
  html:not(.vixen-motion-loaded) .edge-benefit-strip .edge-benefit-card {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html.vixen-motion-loaded .edge-home-hero .edge-eyebrow,
  html.vixen-motion-loaded .edge-home-hero .edge-hero-title,
  html.vixen-motion-loaded .edge-home-hero .edge-hero-subtitle,
  html.vixen-motion-loaded .edge-home-hero .edge-hero-actions,
  html.vixen-motion-loaded .edge-home-hero .edge-agent,
  html.vixen-motion-loaded .edge-home-hero .edge-agent-image,
  html.vixen-motion-loaded .edge-home-hero .edge-scroll-cue,
  html.vixen-motion-loaded .edge-benefit-strip .edge-benefit-card {
    visibility: visible !important;
  }
}

/* --- Hero character intro fix ---
   The responsive resize rules must never force opacity on the agent wrapper.
   When the wrapper opacity is forced with !important, the browser can show the
   0% blur state during the animation delay, especially after resizing.
   Keep dimming on the img itself and let the wrapper animation control the reveal. */

/* --- Hero responsive lock: auto-resize central copy and keep characters outside the text area --- */
.edge-home-hero .edge-hero-content {
  position: relative !important;
  z-index: 6 !important;
}

.edge-home-hero .edge-hero-title {
  font-size: clamp(3rem, 4.6vw, 5.9rem) !important;
  line-height: 0.96 !important;
  max-width: 8.25ch !important;
}

.edge-home-hero .edge-hero-subtitle {
  width: min(92vw, 680px) !important;
}

/* Keep the original large-desktop look. This preserves the 1440p/large view. */
@media (min-width: 2000px) {
  .edge-home-hero .edge-hero-title {
    font-size: clamp(3.2rem, 6.5vw, 5.9rem) !important;
    line-height: 0.94 !important;
    max-width: 8.6ch !important;
  }

  .edge-home-hero .edge-hero-subtitle {
    width: min(92vw, 720px) !important;
  }
}

/* Desktop 1080p / medium-wide screens: shrink text a bit and push characters outward. */
@media (min-width: 1181px) and (max-width: 1920px) {
  .edge-home-hero .edge-hero-content {
    width: min(66vw, 780px) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .edge-home-hero .edge-hero-title {
    font-size: clamp(3rem, 4.6vw, 5.9rem) !important;
    max-width: 8.1ch !important;
    line-height: 0.965 !important;
    letter-spacing: -0.066em !important;
  }

  .edge-home-hero .edge-hero-subtitle {
    width: min(40vw, 620px) !important;
    max-width: 620px !important;
  }

  .edge-home-hero .edge-agent {
    width: clamp(420px, 30vw, 600px) !important;
    height: clamp(560px, 72vh, 820px) !important;
    bottom: -1.65rem !important;
    /* opacity stays on the image only, so the intro animation can keep the wrapper hidden until it starts */
  }

  .edge-home-hero .edge-agent-left {
    left: clamp(-2rem, 1.1vw, 2rem) !important;
  }

  .edge-home-hero .edge-agent-right {
    right: clamp(-2rem, 1.1vw, 2rem) !important;
  }

  .edge-home-hero .edge-agent-image {
    opacity: 0.74 !important;
  }
}

/* Tablet / small desktop: text keeps scaling down; characters become background accents. */
@media (min-width: 761px) and (max-width: 1180px) {
  .edge-home-hero .edge-hero-content {
    width: min(72vw, 620px) !important;
  }

  .edge-home-hero .edge-hero-title {
    font-size: clamp(2.65rem, 7.2vw, 4.2rem) !important;
    max-width: 8ch !important;
    line-height: 0.985 !important;
    letter-spacing: -0.058em !important;
  }

  .edge-home-hero .edge-hero-subtitle {
    width: min(58vw, 540px) !important;
  }

  .edge-home-hero .edge-agent {
    width: clamp(300px, 33vw, 390px) !important;
    height: clamp(430px, 62vh, 610px) !important;
    bottom: -1.35rem !important;
    /* opacity stays on the image only, so the intro animation can keep the wrapper hidden until it starts */
  }

  .edge-home-hero .edge-agent-left {
    left: -4.75rem !important;
  }

  .edge-home-hero .edge-agent-right {
    right: -4.75rem !important;
  }

  .edge-home-hero .edge-agent-image {
    opacity: 0.42 !important;
  }
}

/* Mobile: hide side characters so the headline never collides with them. */
@media (max-width: 760px) {
  .edge-home-hero .edge-hero-title {
    font-size: clamp(2.55rem, 12vw, 4.05rem) !important;
    max-width: 7.5ch !important;
  }

  .edge-home-hero .edge-agent {
    display: none !important;
  }
}

/* Vixen products page - digital collection layout */
.vx-products-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 180px);
  padding: clamp(3.9rem, 6vw, 6.15rem) 1.25rem 5.5rem;
  color: #f8fbff;
  isolation: isolate;
}

.vx-products-page::before {
  content: "";
  position: absolute;
  inset: -12% 0 auto 0;
  height: 560px;
  background:
    radial-gradient(circle at 50% 12%, rgba(var(--cl-accent), 0.22), transparent 42%),
    radial-gradient(circle at 50% 28%, rgba(0, 119, 255, 0.13), transparent 56%);
  pointer-events: none;
  z-index: -1;
}

.vx-products-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.vx-products-hero {
  text-align: center;
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}

.vx-products-title {
  margin: 0;
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 0.95;
  font-size: clamp(2.6rem, 5.1vw, 4.35rem);
  color: rgba(248, 251, 255, 0.98);
  text-shadow: 0 0 34px rgba(var(--cl-accent), 0.16);
}

.vx-products-subtitle {
  width: min(100%, 560px);
  margin: 1.05rem auto 0;
  color: rgba(190, 207, 231, 0.78);
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  line-height: 1.58;
}

.vx-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vx-products-toolbar-title {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.vx-products-toolbar-title span {
  width: 3px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(98, 211, 255, 0.95), rgb(var(--cl-accent)));
  box-shadow: 0 0 18px rgba(var(--cl-accent), 0.62);
}

.vx-products-toolbar-title h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(1.13rem, 1.7vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.vx-products-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  min-width: 0;
}

.vx-products-search {
  position: relative;
  display: block;
  width: min(260px, 35vw);
}

.vx-products-search i {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(var(--cl-accent), 0.76);
  font-size: 0.78rem;
  pointer-events: none;
}

.vx-products-search input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(245, 248, 255, 0.94);
  outline: none;
  padding: 0 0.9rem 0 2.3rem;
  font-size: 0.8rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.vx-products-search input::placeholder {
  color: rgba(171, 185, 220, 0.52);
}

.vx-products-search input:focus {
  border-color: rgba(var(--cl-accent), 0.62);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(var(--cl-accent), 0.14);
}

.vx-products-show-all {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.95);
  padding: 0 0.95rem;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.vx-products-show-all:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--cl-accent), 0.58);
  background: rgba(var(--cl-accent), 0.15);
  color: #fff;
}

.vx-products-show-all i {
  color: rgb(var(--cl-accent));
  font-size: 0.78rem;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  align-items: stretch;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only .edge-category-card,
.vx-products-category-card {
  min-height: 0 !important;
  aspect-ratio: 2 / 3;
  border-radius: 18px !important;
  background: rgba(5, 12, 22, 0.94) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 1.4rem 4rem rgba(0, 0, 0, 0.32),
    0 0 2.5rem rgba(var(--cl-accent), 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only .edge-category-card:hover,
.vx-products-grid.edge-category-grid.edge-category-grid--image-only .edge-category-card:focus-visible {
  border-color: rgba(var(--cl-accent), 0.46) !important;
  box-shadow:
    0 1.3rem 3.8rem rgba(0, 0, 0, 0.34),
    0 0 2.7rem rgba(var(--cl-accent), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  filter: brightness(1.035);
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only .edge-category-media img {
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.99;
  filter: none;
}

.vx-products-card__placeholder {
  display: grid !important;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.94) !important;
  background:
    radial-gradient(circle at 50% 23%, rgba(98, 211, 255, 0.18), transparent 38%),
    linear-gradient(160deg, rgba(8, 26, 52, 0.96), rgba(0, 100, 230, 0.84)) !important;
}

.vx-products-card__placeholder i {
  font-size: 3.4rem;
  color: rgba(255, 255, 255, 0.78);
}

.vx-products-card__placeholder strong {
  position: relative;
  z-index: 4;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.vx-products-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.vx-products-empty {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  color: rgba(201, 215, 238, 0.72);
  text-align: center;
}

.vx-products-empty i {
  font-size: 3.8rem;
  color: rgba(255, 255, 255, 0.22);
}

.vx-products-empty p {
  margin: 0;
}

.vx-products-pagination {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
  .vx-products-shell {
    width: min(100%, 820px);
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only,
  .vx-products-result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .vx-products-page {
    padding-top: 3.3rem;
  }

  .vx-products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .vx-products-actions {
    justify-content: stretch;
  }

  .vx-products-search {
    width: 100%;
    flex: 1 1 auto;
  }

  .vx-products-show-all {
    flex: 0 0 auto;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only,
  .vx-products-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .vx-products-page {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .vx-products-actions {
    flex-direction: column;
  }

  .vx-products-show-all {
    width: 100%;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only,
  .vx-products-result-grid {
    gap: 0.7rem;
  }
}

/* --- Vixen products page final tuning: top glow, larger cards, royal-blue title --- */
.vx-products-page {
  padding-top: clamp(1.45rem, 2.4vw, 2.65rem) !important;
  margin-top: -0.35rem !important;
}

.vx-products-page::before {
  inset: 0 0 auto 0 !important;
  height: 520px !important;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--cl-accent), 0.30) 0%, rgba(var(--cl-accent), 0.16) 26%, transparent 64%),
    radial-gradient(ellipse at 50% 12%, rgba(41, 181, 255, 0.18), transparent 58%) !important;
}

.vx-products-shell {
  width: min(calc(100vw - 2.5rem), 1152px) !important;
}

.vx-products-hero {
  margin-bottom: clamp(1.85rem, 3vw, 2.45rem) !important;
}

.vx-products-title {
  font-size: clamp(3rem, 5.35vw, 5.15rem) !important;
  letter-spacing: -0.075em !important;
  color: #ffffff !important;
  text-shadow: 0 0 34px rgba(var(--cl-accent), 0.18) !important;
}

.vx-products-title span {
  display: inline-block !important;
  background-image: linear-gradient(115deg, #8fe8ff 0%, #4ecbff 22%, #1ea7ff 48%, #0479ff 72%, #64d6ff 100%) !important;
  background-size: 210% 100% !important;
  background-position: 0% 50% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 0 18px rgba(var(--cl-accent), 0.28)) !important;
  animation: vxProductsTitleBlueFlow 4.6s ease-in-out infinite alternate !important;
}

@keyframes vxProductsTitleBlueFlow {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 14px rgba(70, 203, 255, 0.22));
  }
  55% {
    background-position: 72% 50%;
    filter: drop-shadow(0 0 20px rgba(0, 136, 255, 0.28));
  }
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 18px rgba(74, 217, 255, 0.24));
  }
}

.vx-products-toolbar {
  margin-bottom: 1.25rem !important;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.2rem !important;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only .edge-category-card,
.vx-products-category-card {
  border-radius: 20px !important;
  box-shadow:
    0 1.65rem 4.35rem rgba(0, 0, 0, 0.35),
    0 0 3rem rgba(var(--cl-accent), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only .edge-category-media img {
  object-fit: cover !important;
  object-position: center !important;
  transform: translateZ(0) scale(1.001) !important;
}

@media (max-width: 1180px) {
  .vx-products-shell {
    width: min(calc(100vw - 2.2rem), 1060px) !important;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 860px) {
  .vx-products-page {
    padding-top: 1.65rem !important;
    margin-top: 0 !important;
  }

  .vx-products-title {
    font-size: clamp(2.55rem, 10vw, 4.25rem) !important;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.9rem !important;
  }
}

@media (max-width: 520px) {
  .vx-products-shell {
    width: min(calc(100vw - 1.6rem), 28rem) !important;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only {
    grid-template-columns: 1fr !important;
  }
}

/* --- PRODUCTS PAGE POLISHED FIX: soft top glow + staged animation --- */
.vx-products-top-glow {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  height: clamp(560px, 58vh, 760px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background:
    radial-gradient(ellipse 54% 70% at 50% 0%, rgba(var(--cl-accent), 0.34) 0%, rgba(var(--cl-accent), 0.22) 22%, rgba(var(--cl-accent), 0.12) 43%, rgba(var(--cl-accent), 0.04) 64%, transparent 84%),
    radial-gradient(ellipse 36% 45% at 50% 12%, rgba(70, 203, 255, 0.18) 0%, rgba(0, 119, 255, 0.08) 46%, transparent 76%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 30%, rgba(0, 0, 0, 0.78) 50%, rgba(0, 0, 0, 0.34) 70%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 30%, rgba(0, 0, 0, 0.78) 50%, rgba(0, 0, 0, 0.34) 70%, transparent 100%) !important;
  opacity: 1 !important;
}

.vx-products-page::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

.vx-products-page {
  position: relative !important;
  z-index: 1 !important;
}

.vx-products-shell {
  position: relative !important;
  z-index: 2 !important;
}

/* Products page animation is handled by master.njk global reveal.
   Keep this file focused on layout + the fixed top glow. */



/* --- Vixen category products page: game landing + wide product cards --- */
.vx-products-hero--category {
  margin-bottom: clamp(2rem, 3.8vw, 3rem) !important;
}

.vx-products-title--category {
  color: rgba(248, 251, 255, 0.98) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow:
    0 0 36px rgba(var(--cl-accent), 0.18),
    0 0 80px rgba(var(--cl-accent), 0.10) !important;
  font-size: clamp(3rem, 5vw, 4.65rem) !important;
  letter-spacing: -0.065em !important;
}

.vx-products-toolbar--category {
  width: min(100%, 980px);
  margin: 0 auto clamp(2.15rem, 3vw, 2.9rem) !important;
  justify-content: center !important;
  gap: 0.75rem !important;
}

.vx-products-search--category {
  width: 100% !important;
  max-width: none !important;
  flex: 1 1 auto;
}

.vx-products-toolbar--category .vx-products-search input {
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: rgba(255, 255, 255, 0.105) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.vx-products-filter-chip {
  height: 48px;
  min-width: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  cursor: default;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.vx-products-filter-chip i {
  color: rgba(154, 224, 255, 0.95);
  font-size: 0.82rem;
}

.vx-products-result-grid.vx-category-products-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.3rem !important;
  align-items: stretch;
}

.vx-category-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.96) !important;
  background: rgba(5, 9, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 1.4rem 4rem rgba(0, 0, 0, 0.34),
    0 0 2.4rem rgba(var(--cl-accent), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.vx-category-product-card:hover,
.vx-category-product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(var(--cl-accent), 0.38);
  box-shadow:
    0 1.6rem 4.3rem rgba(0, 0, 0, 0.38),
    0 0 2.9rem rgba(var(--cl-accent), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
  filter: brightness(1.035);
}

.vx-category-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 58% 36%, rgba(var(--cl-accent), 0.15), transparent 42%),
    linear-gradient(135deg, rgba(7, 16, 29, 0.95), rgba(2, 7, 13, 0.98));
}

.vx-category-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 48%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 50% 0%, rgba(var(--cl-accent), 0.12), transparent 45%);
}

.vx-category-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.vx-category-product-card:hover .vx-category-product-card__media img,
.vx-category-product-card:focus-visible .vx-category-product-card__media img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.02);
}

.vx-category-product-card__badge {
  --badge-color: rgb(var(--cl-accent));
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: calc(100% - 1.7rem);
  min-height: 28px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #fff;
  background: color-mix(in srgb, var(--badge-color) 46%, rgba(4, 8, 14, 0.78));
  border: 1px solid color-mix(in srgb, var(--badge-color) 44%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 1.2rem color-mix(in srgb, var(--badge-color) 22%, transparent);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vx-category-product-card__badge i {
  font-size: 0.72rem;
}

.vx-category-product-card__placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(var(--cl-accent), 0.82);
}

.vx-category-product-card__placeholder i {
  font-size: 4.5rem;
}

.vx-category-product-card__body {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 1rem 1.05rem;
  background: rgba(3, 7, 12, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.vx-category-product-card__body h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.vx-category-browse-all-wrap {
  border-top: 0 !important;
  margin-top: clamp(2.15rem, 4vw, 3.2rem) !important;
  padding-top: 0 !important;
  text-align: center;
}

.vx-category-browse-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.25rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.96) !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 850;
  background: rgba(3, 7, 12, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.vx-category-browse-all:hover,
.vx-category-browse-all:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--cl-accent), 0.45);
  background: rgba(var(--cl-accent), 0.13);
  box-shadow:
    0 0 1.8rem rgba(var(--cl-accent), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

@media (max-width: 900px) {
  .vx-products-toolbar--category,
  .vx-products-result-grid.vx-category-products-grid {
    width: min(100%, 42rem);
  }

  .vx-products-result-grid.vx-category-products-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .vx-products-toolbar--category {
    flex-direction: column;
    align-items: stretch !important;
  }

  .vx-products-filter-chip {
    width: 100%;
  }
}

/* --- Vixen: remove empty gap between full-width navbar and hero after announcement bar removal --- */
nav[data-component-id="navbar"] {
  margin-bottom: 0 !important;
}

nav[data-component-id="navbar"] + .components {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

nav[data-component-id="navbar"] + .components > .edge-home-hero,
.components > .edge-home-hero:first-child {
  margin-top: -1px !important;
}

@media (max-width: 620px) {
  nav[data-component-id="navbar"] + .components > .edge-home-hero,
  .components > .edge-home-hero:first-child {
    margin-top: -1px !important;
  }
}


/* --- Vixen category product page final responsive sizing --- */
.vx-products-shell--category {
  width: 100% !important;
  max-width: 1220px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.vx-products-toolbar--category {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 0 !important;
}

.vx-products-toolbar--category .vx-products-search--category {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

.vx-products-filter-chip {
  display: none !important;
}

.vx-products-result-grid.vx-category-products-grid {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.45vw, 1.55rem) !important;
  justify-content: start !important;
}

.vx-category-product-card {
  width: 100% !important;
  min-width: 0 !important;
  border-radius: 16px !important;
}

.vx-category-product-card__media {
  aspect-ratio: 16 / 9 !important;
}

.vx-category-product-card__body {
  min-height: 66px !important;
  padding: 1.05rem 1.15rem !important;
}

.vx-category-browse-all-wrap {
  width: 100% !important;
}

@media (min-width: 1440px) {
  .vx-products-shell--category {
    max-width: 1240px !important;
  }
}

@media (max-width: 1180px) {
  .vx-products-shell--category {
    max-width: 100% !important;
  }

  .vx-products-result-grid.vx-category-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 780px) {
  .vx-products-page {
    overflow-x: hidden !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .vx-products-shell--category {
    width: 100% !important;
    max-width: 100% !important;
  }

  .vx-products-toolbar--category {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .vx-products-toolbar--category .vx-products-search--category,
  .vx-products-toolbar--category .vx-products-search--category input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .vx-products-result-grid.vx-category-products-grid {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .vx-category-product-card {
    max-width: 100% !important;
  }
}

@media (max-width: 520px) {
  .vx-products-page {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .vx-products-title--category {
    font-size: clamp(2.45rem, 12vw, 3.45rem) !important;
  }

  .vx-products-subtitle {
    max-width: 100% !important;
  }

  .vx-category-product-card__body {
    min-height: 58px !important;
    padding: 0.95rem 1rem !important;
  }
}

/* --- Vixen product detail page redesign --- */
.vx-product-detail-page {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(2.4rem, 4vw, 4.8rem) 1.25rem clamp(4rem, 6vw, 6.5rem);
  overflow: hidden;
  isolation: isolate;
}

.vx-product-detail-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(18rem, 38vw, 34rem);
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--cl-accent), 0.22) 0%, rgba(var(--cl-accent), 0.12) 34%, transparent 72%),
    linear-gradient(180deg, rgba(var(--cl-accent), 0.08), transparent 78%);
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
}

.vx-product-detail-glow {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(74rem, 96vw);
  height: min(28rem, 45vh);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--cl-accent), 0.26), rgba(var(--cl-accent), 0.10) 38%, transparent 72%);
  filter: blur(2px);
  opacity: 0.95;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.85) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.85) 45%, transparent 100%);
}

.vx-product-detail-shell {
  width: min(100%, 104rem);
  margin: 0 auto;
}

.vx-product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.vx-product-detail-left,
.vx-product-detail-right {
  min-width: 0;
}

.vx-product-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
}

.vx-product-title-row h1 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(2.05rem, 3.7vw, 4.1rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.35);
}

.vx-product-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--status-color, var(--edge-blue)) 34%, transparent);
  border-radius: 0.55rem;
  color: var(--status-color, var(--edge-blue));
  background: color-mix(in srgb, var(--status-color, var(--edge-blue)) 15%, transparent);
  font-size: 0.86rem;
  font-weight: 800;
}

.vx-product-status-dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  box-shadow: 0 0 16px currentColor;
}

.vx-product-main-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--cl-accent), 0.13);
  border-radius: 0.75rem;
  background: rgba(7, 12, 22, 0.86);
  box-shadow: 0 0 44px rgba(var(--cl-accent), 0.10), 0 24px 80px rgba(0, 0, 0, 0.34);
}

.vx-product-main-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%),
    radial-gradient(circle at 24% 18%, rgba(var(--cl-accent), 0.18), transparent 18rem);
  mix-blend-mode: screen;
}

.vx-product-main-media .splide,
.vx-product-main-media .splide__track,
.vx-product-main-media .splide__list,
.vx-product-main-media .splide__slide {
  width: 100%;
  height: 100%;
}

.vx-product-main-media .splide__slide {
  display: flex;
}

.vx-product-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.03);
}

.vx-product-quick-specs {
  margin-top: 1.35rem;
  color: rgba(248, 251, 255, 0.82);
}

.vx-product-quick-specs h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.vx-product-quick-specs ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vx-product-quick-specs li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(207, 222, 239, 0.76);
}

.vx-product-quick-specs i,
.vx-product-quick-specs strong {
  color: var(--edge-blue);
}

.vx-product-buy-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgba(5, 8, 14, 0.72);
  box-shadow: 0 0 48px rgba(var(--cl-accent), 0.09), 0 26px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.vx-product-buy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.vx-product-buy-kicker {
  margin: 0 0 0.35rem;
  color: rgba(154, 173, 197, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vx-product-buy-price {
  color: #fff;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1;
  font-weight: 900;
}

.vx-product-stock-box {
  color: #f6fbff;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.vx-product-stock-box i {
  color: var(--edge-blue);
}

.vx-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vx-product-category-chip,
.vx-product-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 0.35rem;
  padding: 0.45rem 0.72rem;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.95), rgba(0, 102, 255, 0.78));
  font-size: 0.8rem;
  font-weight: 900;
}

.vx-product-page-badge {
  background: color-mix(in srgb, var(--badge-color, var(--edge-blue)) 82%, #05080e);
}

.vx-product-purchase-form {
  margin: 0;
}

.vx-product-form-inner {
  padding: 1.45rem;
}

.vx-product-form-section + .vx-product-form-section {
  margin-top: 1.25rem;
}

.vx-product-form-label {
  display: block;
  margin-bottom: 0.72rem;
  color: rgba(171, 185, 205, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-product-key-list,
.vx-product-addon-list,
.vx-product-deal-list,
.vx-product-bundle-list {
  display: grid;
  gap: 0.72rem;
}

.vx-product-key-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  min-height: 3.95rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.48rem;
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vx-product-key-option:hover:not(:disabled) {
  border-color: rgba(var(--cl-accent), 0.38);
  background: rgba(var(--cl-accent), 0.07);
}

.vx-product-key-option--active {
  border-color: rgba(var(--cl-accent), 0.72) !important;
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.12), rgba(255, 255, 255, 0.035)) !important;
  box-shadow: 0 0 0 1px rgba(var(--cl-accent), 0.18), 0 0 30px rgba(var(--cl-accent), 0.11);
}

.vx-product-key-option:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.vx-product-key-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: transparent;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
}

.vx-product-key-option--active .vx-product-key-check {
  color: #fff;
  border-color: rgba(var(--cl-accent), 0.9);
  background: var(--edge-blue);
}

.vx-product-key-info {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  text-align: left;
}

.vx-product-key-info strong {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vx-product-key-info small,
.vx-product-key-price small {
  color: rgba(173, 190, 211, 0.72);
  font-size: 0.76rem;
}

.vx-product-key-price {
  display: grid;
  gap: 0.15rem;
  text-align: right;
  color: #9edcff;
  font-weight: 900;
  white-space: nowrap;
}

.vx-product-key-price small {
  text-decoration: line-through;
}

.vx-product-quantity-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.vx-product-quantity-section .vx-product-form-label {
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
}

.vx-product-quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.vx-product-quantity-control button,
.vx-product-quantity-control input {
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.45rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  font-weight: 800;
}

.vx-product-quantity-control button:hover:not(:disabled) {
  border-color: rgba(var(--cl-accent), 0.55);
  background: rgba(var(--cl-accent), 0.16);
}

.vx-product-quantity-control button:disabled,
.vx-product-quantity-control input:disabled {
  opacity: 0.45;
}

.vx-product-discount-hint,
.vx-product-form-error {
  width: 100%;
  color: #ff7a7a;
  font-size: 0.78rem;
}

.vx-product-discount-hint {
  color: rgba(160, 217, 255, 0.88);
}

.vx-product-payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.vx-product-payment-options button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.95rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.46rem;
  color: rgba(246, 251, 255, 0.88);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.vx-product-payment-options button.is-active,
.vx-product-payment-options button:hover {
  border-color: rgba(var(--cl-accent), 0.7);
  color: #fff;
  background: rgba(var(--cl-accent), 0.14);
}

.vx-product-addon-item,
.vx-product-deal-item,
.vx-product-bundle-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.48rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem;
}

.vx-product-addon-item,
.vx-product-deal-item,
.vx-product-bundle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.vx-product-addon-info {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.vx-product-addon-info img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 0.35rem;
}

.vx-product-addon-info strong,
.vx-product-deal-item strong,
.vx-product-bundle-item strong {
  display: block;
  color: #fff;
  font-weight: 900;
}

.vx-product-addon-info small,
.vx-product-deal-item small,
.vx-product-bundle-item small,
.vx-product-bundle-item p {
  color: rgba(173, 190, 211, 0.72);
  font-size: 0.8rem;
}

.vx-product-addon-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #9edcff;
  font-weight: 900;
  white-space: nowrap;
}

.vx-product-addon-actions button,
.vx-product-deal-item button,
.vx-product-bundle-item button {
  border: 1px solid rgba(var(--cl-accent), 0.45);
  border-radius: 0.35rem;
  padding: 0.38rem 0.72rem;
  color: var(--edge-blue);
  background: rgba(var(--cl-accent), 0.08);
  font-size: 0.78rem;
  font-weight: 850;
}

.vx-product-altcha,
.vx-product-buy-error {
  margin-top: 1rem;
}

.vx-product-buy-error {
  border: 1px solid rgba(255, 70, 70, 0.25);
  border-radius: 0.45rem;
  padding: 0.85rem;
  color: #fff;
  background: rgba(255, 70, 70, 0.15);
}

.vx-product-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.vx-product-pay-button,
.vx-product-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  border-radius: 0.48rem;
  padding: 0 1rem;
  font-weight: 900;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease, border-color 180ms ease;
}

.vx-product-pay-button {
  border: 1px solid rgba(var(--cl-accent), 0.70);
  color: #fff;
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.95), rgba(0, 102, 255, 0.72));
  box-shadow: 0 10px 30px rgba(var(--cl-accent), 0.20);
}

.vx-product-cart-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.vx-product-pay-button:hover:not(:disabled),
.vx-product-cart-button:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.vx-product-pay-button:disabled,
.vx-product-cart-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.vx-product-balance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-top: 0.8rem;
  color: rgba(173, 190, 211, 0.78);
  font-size: 0.88rem;
}

.vx-product-balance-row strong {
  color: #fff;
}

.vx-product-balance-row a {
  color: var(--edge-blue);
}

.vx-product-live-stats {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.45rem 1.35rem;
  color: rgba(174, 190, 211, 0.74);
  font-size: 0.82rem;
}

.vx-product-live-stats p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.vx-product-live-stats i,
.vx-product-live-stats span {
  color: var(--edge-blue);
}

.vx-product-detail-bottom {
  display: grid;
  gap: clamp(2.2rem, 4vw, 4.2rem);
  margin-top: clamp(3.2rem, 6vw, 6rem);
}

.vx-product-section-card h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.45rem;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 900;
}

.vx-product-section-card h2 span {
  width: 0.22rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--edge-blue);
  box-shadow: 0 0 18px rgba(var(--cl-accent), 0.45);
}

.vx-product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.vx-product-spec-grid article,
.vx-product-feature-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.7rem;
  background: rgba(8, 11, 18, 0.72);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.vx-product-spec-grid article {
  min-height: 7.2rem;
  padding: 1.2rem;
}

.vx-product-spec-grid i,
.vx-product-feature-item button span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 0.45rem;
  color: var(--edge-blue);
  background: rgba(var(--cl-accent), 0.12);
}

.vx-product-spec-grid small {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(173, 190, 211, 0.66);
  font-size: 0.76rem;
}

.vx-product-spec-grid strong {
  color: #fff;
  font-size: 0.98rem;
}

.vx-product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
}

.vx-product-feature-item {
  overflow: hidden;
}

.vx-product-feature-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 4.2rem;
  padding: 1rem 1.15rem;
  color: #fff;
  text-align: left;
  font-weight: 900;
}

.vx-product-feature-item button span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.vx-product-feature-item button span i {
  flex: 0 0 auto;
  margin: 0;
}

.vx-product-feature-item button > i {
  color: rgba(173, 190, 211, 0.74);
  font-size: 0.8rem;
  transition: transform 180ms ease;
}

.vx-product-feature-item.is-open button > i {
  transform: rotate(180deg);
}

.vx-product-feature-content {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.15rem 1.2rem;
  color: rgba(216, 228, 243, 0.86);
}

.vx-product-feature-content .editor,
.vx-product-feature-content .editor * {
  color: inherit;
}

.vx-product-feature-content ul,
.vx-product-feature-content ol {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.1rem;
}

.vx-product-feature-content li::marker {
  color: var(--edge-blue);
}

.vx-product-upsell-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1280px) {
  .vx-product-detail-hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    gap: 2rem;
  }

  .vx-product-spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .vx-product-detail-page {
    padding-top: 2rem;
  }

  .vx-product-detail-hero {
    grid-template-columns: 1fr;
  }

  .vx-product-buy-panel {
    max-width: 46rem;
  }

  .vx-product-feature-grid,
  .vx-product-upsell-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .vx-product-detail-page {
    padding: 1.6rem 0.95rem 3.5rem;
  }

  .vx-product-title-row h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .vx-product-main-image {
    aspect-ratio: 4 / 3;
  }

  .vx-product-buy-head,
  .vx-product-form-inner,
  .vx-product-badges,
  .vx-product-live-stats {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .vx-product-buy-head,
  .vx-product-key-option,
  .vx-product-addon-item,
  .vx-product-deal-item,
  .vx-product-bundle-head {
    align-items: flex-start;
  }

  .vx-product-key-option {
    grid-template-columns: auto 1fr;
  }

  .vx-product-key-price {
    grid-column: 2;
    text-align: left;
  }

  .vx-product-action-row,
  .vx-product-feature-grid,
  .vx-product-spec-grid,
  .vx-product-upsell-grid {
    grid-template-columns: 1fr;
  }

  .vx-product-payment-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vx-product-payment-options button,
  .vx-product-pay-button,
  .vx-product-cart-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .vx-product-detail-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .vx-product-quick-specs li,
  .vx-product-balance-row {
    font-size: 0.82rem;
  }

  .vx-product-buy-head {
    flex-direction: column;
  }

  .vx-product-stock-box {
    width: 100%;
    white-space: normal;
  }
}

/* --- Product detail redesign v2: match reference purchase layout --- */
.vx-product-detail-page {
  padding-top: clamp(2rem, 3vw, 3.25rem);
}

.vx-product-detail-shell {
  width: min(100%, 86rem);
}

.vx-product-detail-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 3.4vw, 2.8rem);
  align-items: start;
}

.vx-product-title-row {
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.vx-product-title-row h1 {
  font-size: clamp(2.3rem, 3.8vw, 3.85rem);
  line-height: 0.96;
}

.vx-product-status-pill {
  min-height: 1.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.4rem;
  background: color-mix(in srgb, var(--status-color, #f7a51a) 16%, #120b02);
  border-color: color-mix(in srgb, var(--status-color, #f7a51a) 28%, transparent);
  font-size: 0.84rem;
}

.vx-product-main-media {
  border-radius: 0.7rem;
  border-color: rgba(99, 144, 255, 0.14);
  background:
    radial-gradient(circle at 70% 40%, rgba(var(--cl-accent), 0.16), transparent 34%),
    linear-gradient(135deg, rgba(16, 22, 39, 0.96), rgba(7, 10, 17, 0.98));
  box-shadow: 0 0 44px rgba(var(--cl-accent), 0.08);
}

.vx-product-main-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vx-product-quick-specs {
  margin-top: 1rem;
}

.vx-product-quick-specs h3 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.vx-product-quick-specs ul,
.vx-product-quick-specs-editor ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vx-product-quick-specs li,
.vx-product-quick-specs-editor li,
.vx-product-quick-specs-editor p {
  color: #f5f8ff;
  font-size: 0.98rem;
  line-height: 1.45;
}

.vx-product-quick-specs li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.vx-product-quick-specs li i,
.vx-product-quick-specs-editor li::marker {
  color: var(--edge-blue);
}

.vx-product-quick-specs-editor {
  color: #f5f8ff;
}

.vx-product-quick-specs-editor ul,
.vx-product-quick-specs-editor ol {
  padding-left: 1.2rem;
}

.vx-product-quick-specs-editor * {
  color: inherit;
}

.vx-product-buy-panel {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.vx-product-buy-head {
  justify-content: flex-end;
  padding: 0 0 0.95rem;
  border: none;
  background: transparent;
}

.vx-product-stock-box {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 3.8rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  color: #f5f8ff;
  background: rgba(6, 10, 18, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
}

.vx-product-badges {
  padding: 0 0 1rem;
  border: none;
}

.vx-product-category-chip,
.vx-product-page-badge {
  border-radius: 0.45rem;
  padding: 0.62rem 0.95rem;
  font-size: 0.94rem;
  background: rgba(var(--cl-accent), 0.15);
  border: 1px solid rgba(var(--cl-accent), 0.35);
}

.vx-product-form-inner {
  padding: 0;
}

.vx-product-form-section + .vx-product-form-section {
  margin-top: 1.2rem;
}

.vx-product-form-label {
  margin-bottom: 0.8rem;
  color: rgba(182, 193, 213, 0.9);
  font-size: 0.8rem;
}

.vx-product-key-list {
  gap: 0.85rem;
}

.vx-product-key-option {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 1rem 1.1rem;
  border-radius: 0.55rem;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(6, 10, 18, 0.72);
}

.vx-product-key-option--active {
  border-color: rgba(var(--cl-accent), 0.88) !important;
  background: rgba(22, 33, 56, 0.7) !important;
  box-shadow: inset 0 0 0 1px rgba(var(--cl-accent), 0.32);
}

.vx-product-key-check {
  width: 1.55rem;
  height: 1.55rem;
}

.vx-product-key-info strong {
  font-size: 1rem;
}

.vx-product-key-price {
  gap: 0.1rem;
  font-size: 1rem;
  color: #98a9ee;
}

.vx-product-quantity-section {
  align-items: center;
  gap: 0.75rem 1rem;
}

.vx-product-quantity-section .vx-product-form-label {
  font-size: 0.95rem;
  font-weight: 800;
}

.vx-product-quantity-control {
  gap: 0.5rem;
}

.vx-product-quantity-control button,
.vx-product-quantity-control input {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.03);
}

.vx-product-action-row {
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.vx-product-pay-button,
.vx-product-cart-button {
  min-height: 3.4rem;
  border-radius: 0.45rem;
  font-size: 1rem;
}

.vx-product-pay-button {
  border: 1px solid rgba(var(--cl-accent), 0.82);
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.95), rgba(0, 120, 255, 0.86));
}

.vx-product-cart-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.vx-product-live-stats {
  padding: 1rem 0 0;
}

.vx-product-detail-bottom {
  margin-top: clamp(2.6rem, 5vw, 4rem);
}

.vx-product-features-section h2 {
  margin-bottom: 1.2rem;
}

.vx-product-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.vx-product-feature-item {
  background: rgba(8, 11, 18, 0.66);
}

.vx-product-feature-item button {
  min-height: 4rem;
}

.vx-product-feature-content {
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .vx-product-detail-shell {
    width: min(100%, 78rem);
  }

  .vx-product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .vx-product-detail-hero {
    grid-template-columns: 1fr;
  }

  .vx-product-detail-right {
    order: 2;
  }

  .vx-product-detail-left {
    order: 1;
  }
}

@media (max-width: 640px) {
  .vx-product-detail-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .vx-product-title-row h1 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .vx-product-stock-box {
    min-height: 3.25rem;
    padding: 0 1rem;
  }

  .vx-product-key-option {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .vx-product-key-price {
    grid-column: 2;
    justify-self: end;
  }

  .vx-product-action-row {
    grid-template-columns: 1fr;
  }

  .vx-product-feature-grid,
  .vx-product-upsell-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Product detail final fixes: prices, independent features, full glow, image loading --- */
.vx-product-detail-page::before {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  height: min(34rem, 58vh) !important;
  z-index: -4 !important;
  background:
    radial-gradient(ellipse 86% 72% at 50% 0%, rgba(var(--cl-accent), 0.26) 0%, rgba(var(--cl-accent), 0.17) 30%, rgba(var(--cl-accent), 0.06) 58%, transparent 88%),
    linear-gradient(180deg, rgba(var(--cl-accent), 0.10) 0%, rgba(var(--cl-accent), 0.04) 42%, transparent 100%) !important;
  opacity: 1 !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 42%, rgba(0,0,0,0.42) 72%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 42%, rgba(0,0,0,0.42) 72%, transparent 100%) !important;
}

.vx-product-detail-glow {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: min(32rem, 55vh) !important;
  transform: none !important;
  z-index: -3 !important;
  background:
    radial-gradient(ellipse 72% 68% at 50% 0%, rgba(var(--cl-accent), 0.28) 0%, rgba(var(--cl-accent), 0.14) 36%, transparent 78%) !important;
  opacity: 0.95 !important;
  filter: blur(1px) !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 44%, rgba(0,0,0,0.36) 74%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 44%, rgba(0,0,0,0.36) 74%, transparent 100%) !important;
}

.vx-product-buy-head,
.vx-product-badges {
  display: none !important;
}

.vx-product-main-media {
  min-height: 0 !important;
}

.vx-product-main-media img.vx-product-main-image,
.vx-product-main-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
}

.vx-product-main-image--empty {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: clamp(14rem, 29vw, 23rem);
  color: rgba(164, 211, 255, 0.45);
  font-size: clamp(2.5rem, 7vw, 5rem);
  background: rgba(255, 255, 255, 0.025);
}

.vx-product-key-option {
  grid-template-columns: auto minmax(0, 1fr) max-content !important;
}

.vx-product-key-price {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.45rem !important;
  min-width: max-content !important;
  color: #79cfff !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vx-product-key-price small {
  color: rgba(168, 179, 200, 0.58) !important;
  font-size: 0.86rem !important;
  text-decoration: line-through !important;
  order: -1;
}

.vx-product-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(var(--cl-accent), 0.24);
  border-radius: 0.55rem;
  background: rgba(var(--cl-accent), 0.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 14px 38px rgba(0,0,0,0.18);
}

.vx-product-total-row span {
  color: rgba(190, 204, 224, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-product-total-row strong {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 0 24px rgba(var(--cl-accent), 0.24);
}

.vx-product-action-row {
  margin-top: 0.95rem !important;
}

.vx-product-feature-grid {
  align-items: start !important;
}

.vx-product-feature-item {
  overflow: hidden !important;
}

.vx-product-feature-content {
  transform-origin: top center;
  will-change: opacity, transform;
}

.vx-feature-enter,
.vx-feature-leave {
  transition: opacity 220ms ease, transform 220ms ease !important;
}

.vx-feature-enter-start,
.vx-feature-leave-end {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
}

.vx-feature-enter-end,
.vx-feature-leave-start {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 640px) {
  .vx-product-key-option {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  .vx-product-key-price {
    grid-column: 2 !important;
    justify-self: end !important;
  }

  .vx-product-total-row {
    padding: 0.9rem 1rem;
  }
}

/* --- Product detail requested fixes v3 --- */
.vx-product-detail-page::before {
  background:
    radial-gradient(ellipse 88% 72% at 50% 0%, rgba(var(--cl-accent), 0.24) 0%, rgba(var(--cl-accent), 0.15) 32%, rgba(var(--cl-accent), 0.06) 62%, transparent 92%),
    linear-gradient(90deg, transparent 0%, rgba(var(--cl-accent), 0.055) 16%, rgba(var(--cl-accent), 0.115) 50%, rgba(var(--cl-accent), 0.055) 84%, transparent 100%),
    linear-gradient(180deg, rgba(var(--cl-accent), 0.095) 0%, rgba(var(--cl-accent), 0.035) 46%, transparent 100%) !important;
}

.vx-product-detail-glow {
  background:
    radial-gradient(ellipse 90% 72% at 50% 0%, rgba(var(--cl-accent), 0.22) 0%, rgba(var(--cl-accent), 0.12) 38%, rgba(var(--cl-accent), 0.045) 64%, transparent 94%),
    linear-gradient(90deg, transparent 0%, rgba(var(--cl-accent), 0.055) 18%, rgba(var(--cl-accent), 0.11) 50%, rgba(var(--cl-accent), 0.055) 82%, transparent 100%) !important;
  filter: blur(5px) !important;
}

.vx-product-main-media {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
}

.vx-product-main-media > img.vx-product-main-image,
.vx-product-main-media img.object-product-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: cover !important;
}

.vx-product-feature-content-shell {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows 300ms ease, opacity 240ms ease, transform 300ms ease;
  will-change: grid-template-rows, opacity, transform;
}

.vx-product-feature-item.is-open .vx-product-feature-content-shell {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.vx-product-feature-content-inner {
  min-height: 0;
  overflow: hidden;
  color: rgba(216, 228, 243, 0.86);
}

.vx-product-feature-content-inner > .editor {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.15rem 1.2rem;
}

.vx-product-feature-content-inner .editor,
.vx-product-feature-content-inner .editor * {
  color: inherit;
}

.vx-product-feature-content-inner ul,
.vx-product-feature-content-inner ol {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.1rem;
}

.vx-product-feature-content-inner li::marker {
  color: var(--edge-blue);
}

.vx-product-total-row strong {
  min-width: max-content;
}


/* --- Product page functional checkout layout v3 --- */
.vx-product-checkout-page {
  --vx-blue: rgb(var(--cl-accent));
  padding-top: clamp(1.75rem, 3vw, 3rem) !important;
  overflow: hidden !important;
}

.vx-product-checkout-page::before {
  height: clamp(18rem, 48vw, 42rem) !important;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--cl-accent), 0.26) 0%, rgba(var(--cl-accent), 0.16) 30%, rgba(var(--cl-accent), 0.06) 56%, transparent 84%),
    linear-gradient(180deg, rgba(var(--cl-accent), 0.10), transparent 76%) !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 42%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 42%, transparent 100%) !important;
}

.vx-product-checkout-page .vx-product-detail-glow {
  width: min(120rem, 150vw) !important;
  height: min(40rem, 68vh) !important;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--cl-accent), 0.28), rgba(var(--cl-accent), 0.16) 35%, rgba(var(--cl-accent), 0.055) 62%, transparent 88%) !important;
  opacity: 1 !important;
  filter: blur(4px) !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.82) 44%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.82) 44%, transparent 100%) !important;
}

.vx-product-checkout-page .vx-product-detail-shell {
  width: min(100%, 96rem) !important;
  margin: 0 auto !important;
}

.vx-product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: clamp(1.6rem, 2.7vw, 2.5rem);
  color: rgba(178, 194, 216, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.vx-product-breadcrumb a {
  color: rgba(178, 194, 216, 0.78) !important;
  text-decoration: none !important;
  transition: color 160ms ease;
}

.vx-product-breadcrumb a:hover,
.vx-product-breadcrumb strong {
  color: #fff !important;
}

.vx-product-breadcrumb i {
  font-size: 0.68rem;
  color: rgba(178, 194, 216, 0.38);
}

.vx-product-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(24rem, 0.98fr);
  gap: clamp(2.2rem, 5vw, 4.4rem);
  align-items: start;
}

.vx-product-checkout-page .vx-product-detail-left,
.vx-product-checkout-page .vx-product-detail-right {
  min-width: 0 !important;
}

.vx-product-summary-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1.4rem;
  padding-bottom: 1.45rem;
  margin-bottom: 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.vx-product-checkout-page .vx-product-title-row {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
  margin: 0 !important;
}

.vx-product-checkout-page .vx-product-title-row h1 {
  margin: 0 !important;
  color: #f8fbff !important;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem) !important;
  line-height: 0.98 !important;
  font-weight: 900 !important;
  letter-spacing: -0.055em !important;
}

.vx-product-checkout-page .vx-product-status-pill {
  min-height: 1.65rem !important;
  padding: 0.3rem 0.65rem !important;
  border-radius: 0.44rem !important;
  font-size: 0.77rem !important;
  letter-spacing: 0 !important;
}

.vx-product-summary-price {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-align: right;
  text-shadow: 0 0 28px rgba(var(--cl-accent), 0.35);
  white-space: nowrap;
}

.vx-product-checkout-page .vx-product-main-media {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(var(--cl-accent), 0.16) !important;
  border-radius: 1rem !important;
  background:
    radial-gradient(circle at 70% 36%, rgba(var(--cl-accent), 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(18, 30, 52, 0.92), rgba(6, 9, 16, 0.96)) !important;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.30), 0 0 46px rgba(var(--cl-accent), 0.10) !important;
}

.vx-product-checkout-page .vx-product-main-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 38%),
    radial-gradient(circle at 35% 20%, rgba(var(--cl-accent), 0.13), transparent 18rem) !important;
  mix-blend-mode: screen !important;
}

.vx-product-checkout-page .vx-product-main-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

.vx-product-main-image--empty {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(190, 207, 230, 0.55) !important;
  font-size: 2.4rem !important;
}

.vx-product-thumb-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.vx-product-thumb {
  flex: 0 0 7.2rem;
  height: 4.05rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.68;
}

.vx-product-thumb.is-active {
  opacity: 1;
  border-color: rgba(var(--cl-accent), 0.75);
  box-shadow: 0 0 0 1px rgba(var(--cl-accent), 0.18);
}

.vx-product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vx-product-checkout-page .vx-product-quick-specs {
  margin-top: 1.2rem !important;
  color: rgba(246, 251, 255, 0.92) !important;
}

.vx-product-checkout-page .vx-product-quick-specs h3 {
  margin: 0 0 0.75rem !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 950 !important;
}

.vx-product-checkout-page .vx-product-quick-specs ul {
  display: grid !important;
  gap: 0.45rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.vx-product-checkout-page .vx-product-quick-specs li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.55rem !important;
  color: #f3f8ff !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}

.vx-product-checkout-page .vx-product-quick-specs i {
  margin-top: 0.15rem;
  color: var(--edge-blue) !important;
  font-size: 0.85rem;
}

.vx-product-checkout-page .vx-product-purchase-form {
  margin: 0 !important;
}

.vx-product-checkout-page .vx-product-form-inner {
  padding: 0 !important;
}

.vx-product-checkout-page .vx-product-form-label {
  display: block !important;
  margin-bottom: 0.9rem !important;
  color: rgba(202, 215, 235, 0.88) !important;
  font-size: 0.85rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase !important;
}

.vx-product-checkout-page .vx-product-form-section + .vx-product-form-section {
  margin-top: 1.35rem !important;
}

.vx-product-checkout-page .vx-product-key-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.9rem !important;
}

.vx-product-checkout-page .vx-product-key-option {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-areas:
    "info stock"
    "info price" !important;
  gap: 0.35rem 1rem !important;
  min-height: 5.1rem !important;
  width: 100% !important;
  padding: 1rem 1.1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 0.5rem !important;
  color: #f8fbff !important;
  background: rgba(7, 10, 18, 0.76) !important;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease !important;
}

.vx-product-checkout-page .vx-product-key-option:hover:not(:disabled) {
  transform: translateY(-1px) !important;
  border-color: rgba(var(--cl-accent), 0.36) !important;
  background: rgba(var(--cl-accent), 0.07) !important;
}

.vx-product-checkout-page .vx-product-key-option--active {
  border-color: rgba(var(--cl-accent), 0.82) !important;
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.72), rgba(0, 94, 255, 0.48)) !important;
  box-shadow: 0 0 0 1px rgba(var(--cl-accent), 0.26), 0 15px 42px rgba(var(--cl-accent), 0.16) !important;
}

.vx-product-checkout-page .vx-product-key-info {
  grid-area: info !important;
  display: grid !important;
  align-content: center !important;
  gap: 0.22rem !important;
  min-width: 0 !important;
  text-align: left !important;
}

.vx-product-checkout-page .vx-product-key-info small {
  color: rgba(231, 240, 255, 0.72) !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  font-style: normal !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.vx-product-checkout-page .vx-product-key-info strong {
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

.vx-product-checkout-page .vx-product-key-info em {
  color: rgba(224, 237, 255, 0.70) !important;
  font-size: 0.78rem !important;
  font-style: normal !important;
}

.vx-product-checkout-page .vx-product-key-stock {
  grid-area: stock !important;
  align-self: start !important;
  color: rgba(220, 232, 252, 0.68) !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.vx-product-checkout-page .vx-product-key-price {
  grid-area: price !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-end !important;
  gap: 0.35rem !important;
  color: #fff !important;
  font-size: 1.18rem !important;
  font-weight: 950 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

.vx-product-checkout-page .vx-product-key-price small {
  color: rgba(222, 232, 250, 0.46) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-decoration: line-through !important;
}

.vx-product-checkout-page .vx-product-quantity-section {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
  margin-top: 1.45rem !important;
}

.vx-product-checkout-page .vx-product-quantity-section .vx-product-form-label {
  margin: 0 auto 0 0 !important;
  color: rgba(204, 217, 238, 0.80) !important;
  font-size: 0.88rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.vx-product-checkout-page .vx-product-quantity-control {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
}

.vx-product-checkout-page .vx-product-quantity-control button,
.vx-product-checkout-page .vx-product-quantity-control input {
  width: 2.9rem !important;
  height: 2.9rem !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 0.55rem !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.035) !important;
  text-align: center !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

.vx-product-checkout-page .vx-product-quantity-control button:hover:not(:disabled) {
  border-color: rgba(var(--cl-accent), 0.65) !important;
  background: rgba(var(--cl-accent), 0.15) !important;
}

.vx-product-checkout-page .vx-product-discount-hint,
.vx-product-checkout-page .vx-product-form-error {
  width: 100% !important;
  color: #ff8a8a !important;
  font-size: 0.78rem !important;
}

.vx-product-checkout-page .vx-product-buy-error {
  margin-top: 1rem !important;
  border: 1px solid rgba(255, 80, 80, 0.24) !important;
  border-radius: 0.55rem !important;
  padding: 0.85rem 1rem !important;
  color: #fff !important;
  background: rgba(255, 80, 80, 0.14) !important;
}

.vx-product-checkout-page .vx-product-action-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 0.85rem !important;
  margin-top: 1.65rem !important;
}

.vx-product-checkout-page .vx-product-pay-button,
.vx-product-checkout-page .vx-product-cart-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  min-height: 3.65rem !important;
  border-radius: 0.7rem !important;
  padding: 0 1.3rem !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease, background 180ms ease !important;
}

.vx-product-checkout-page .vx-product-pay-button {
  min-width: 0 !important;
  border: 1px solid rgba(var(--cl-accent), 0.86) !important;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.95), rgba(0, 94, 255, 0.82)) !important;
  box-shadow: 0 0 0 3px rgba(var(--cl-accent), 0.12), 0 12px 38px rgba(var(--cl-accent), 0.18) !important;
}

.vx-product-checkout-page .vx-product-cart-button {
  min-width: 10rem !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(246, 251, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.vx-product-checkout-page .vx-product-pay-button:hover:not(:disabled),
.vx-product-checkout-page .vx-product-cart-button:hover:not(:disabled) {
  transform: translateY(-1px) !important;
  filter: brightness(1.06) !important;
}

.vx-product-checkout-page .vx-product-pay-button:disabled,
.vx-product-checkout-page .vx-product-cart-button:disabled,
.vx-product-checkout-page .vx-product-key-option:disabled,
.vx-product-checkout-page .vx-product-quantity-control button:disabled,
.vx-product-checkout-page .vx-product-quantity-control input:disabled {
  cursor: not-allowed !important;
  opacity: 0.48 !important;
}

.vx-product-checkout-page .vx-product-live-stats {
  padding: 1rem 0 0 !important;
}

.vx-product-checkout-page .vx-product-features-section {
  margin-top: clamp(3rem, 6vw, 5.4rem) !important;
}

.vx-product-checkout-page .vx-product-section-card h2 {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  margin: 0 0 1.4rem !important;
  color: #fff !important;
  font-size: clamp(1.4rem, 2vw, 1.85rem) !important;
  font-weight: 950 !important;
}

.vx-product-checkout-page .vx-product-section-card h2 span {
  width: 0.22rem !important;
  height: 1.5rem !important;
  border-radius: 999px !important;
  background: var(--edge-blue) !important;
  box-shadow: 0 0 18px rgba(var(--cl-accent), 0.45) !important;
}

.vx-product-checkout-page .vx-product-feature-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.95rem !important;
  align-items: start !important;
}

.vx-product-checkout-page .vx-product-feature-item {
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0.75rem !important;
  background: rgba(8, 11, 18, 0.70) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18) !important;
}

.vx-product-checkout-page .vx-product-feature-item button {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  width: 100% !important;
  min-height: 4.25rem !important;
  padding: 1rem 1.15rem !important;
  color: #fff !important;
  text-align: left !important;
  font-weight: 900 !important;
}

.vx-product-checkout-page .vx-product-feature-item button span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  min-width: 0 !important;
}

.vx-product-checkout-page .vx-product-feature-item button span i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: 0.5rem !important;
  color: var(--edge-blue) !important;
  background: rgba(var(--cl-accent), 0.14) !important;
}

.vx-product-checkout-page .vx-product-feature-item button > i {
  color: rgba(193, 208, 230, 0.76) !important;
  font-size: 0.82rem !important;
  transition: transform 180ms ease !important;
}

.vx-product-checkout-page .vx-product-feature-item.is-open button > i {
  transform: rotate(180deg) !important;
}

.vx-product-checkout-page .vx-product-feature-content {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 1rem 1.15rem 1.25rem !important;
  color: rgba(226, 236, 249, 0.88) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.vx-product-checkout-page .vx-product-feature-content .editor,
.vx-product-checkout-page .vx-product-feature-content .editor * {
  color: inherit !important;
}

@media (max-width: 1180px) {
  .vx-product-checkout-page .vx-product-detail-shell {
    width: min(100%, 84rem) !important;
  }

  .vx-product-checkout-grid {
    gap: 2rem !important;
  }
}

@media (max-width: 980px) {
  .vx-product-checkout-grid {
    grid-template-columns: 1fr !important;
  }

  .vx-product-checkout-page .vx-product-key-list,
  .vx-product-checkout-page .vx-product-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .vx-product-checkout-page {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .vx-product-breadcrumb {
    display: none !important;
  }

  .vx-product-summary-head {
    grid-template-columns: 1fr !important;
  }

  .vx-product-summary-price {
    text-align: left !important;
    font-size: 2.2rem !important;
  }

  .vx-product-checkout-page .vx-product-title-row h1 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
  }

  .vx-product-checkout-page .vx-product-key-option {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "info"
      "stock"
      "price" !important;
  }

  .vx-product-checkout-page .vx-product-key-stock,
  .vx-product-checkout-page .vx-product-key-price {
    justify-self: start !important;
    text-align: left !important;
  }

  .vx-product-checkout-page .vx-product-quantity-section {
    justify-content: flex-start !important;
  }

  .vx-product-checkout-page .vx-product-quantity-section .vx-product-form-label {
    width: 100% !important;
  }

  .vx-product-checkout-page .vx-product-action-row {
    grid-template-columns: 1fr !important;
  }

  .vx-product-checkout-page .vx-product-cart-button {
    min-width: 0 !important;
  }
}

/* --- Product checkout real functionality + gallery fixes --- */
.vx-product-checkout-page {
  position: relative !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background:
    radial-gradient(ellipse 115% 58% at 50% 0%, rgba(var(--cl-accent), 0.24) 0%, rgba(var(--cl-accent), 0.14) 33%, rgba(var(--cl-accent), 0.055) 62%, transparent 92%),
    linear-gradient(90deg, rgba(var(--cl-accent), 0.025) 0%, rgba(var(--cl-accent), 0.09) 45%, rgba(var(--cl-accent), 0.09) 55%, rgba(var(--cl-accent), 0.025) 100%) !important;
}

.vx-product-checkout-page::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  height: clamp(24rem, 52vw, 46rem) !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
  z-index: -1 !important;
  background:
    radial-gradient(ellipse 90% 74% at 50% 0%, rgba(var(--cl-accent), 0.26), rgba(var(--cl-accent), 0.12) 38%, rgba(var(--cl-accent), 0.035) 68%, transparent 94%) !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.82) 48%, rgba(0,0,0,0.34) 76%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.82) 48%, rgba(0,0,0,0.34) 76%, transparent 100%) !important;
}

.vx-product-checkout-page .vx-product-detail-glow {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: min(42rem, 66vh) !important;
  transform: none !important;
  z-index: -2 !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse 100% 72% at 50% 0%, rgba(var(--cl-accent), 0.20) 0%, rgba(var(--cl-accent), 0.10) 42%, rgba(var(--cl-accent), 0.032) 68%, transparent 96%),
    linear-gradient(90deg, transparent 0%, rgba(var(--cl-accent), 0.04) 18%, rgba(var(--cl-accent), 0.075) 50%, rgba(var(--cl-accent), 0.04) 82%, transparent 100%) !important;
  filter: blur(4px) !important;
  opacity: 1 !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.82) 44%, rgba(0,0,0,0.28) 76%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.82) 44%, rgba(0,0,0,0.28) 76%, transparent 100%) !important;
}

.vx-product-checkout-page .vx-product-main-media {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
}

.vx-product-checkout-page .vx-product-main-media > img.vx-product-main-image,
.vx-product-checkout-page .vx-product-main-media img.object-product-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: cover !important;
  position: relative !important;
  z-index: 1 !important;
}

.vx-product-checkout-page .vx-product-image-count {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.54);
  font-size: 0.82rem;
  font-weight: 900;
}

.vx-product-checkout-page .vx-product-thumb-row {
  display: flex !important;
  gap: 0.85rem !important;
  margin-top: 1rem !important;
  overflow-x: auto !important;
  padding: 0 0 0.15rem !important;
}

.vx-product-checkout-page .vx-product-thumb {
  appearance: none !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0 !important;
  flex: 0 0 7.2rem !important;
  height: 4.05rem !important;
  overflow: hidden !important;
  border-radius: 0.5rem !important;
  background: rgba(255, 255, 255, 0.035) !important;
  opacity: 0.62 !important;
  cursor: pointer !important;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.vx-product-checkout-page .vx-product-thumb:hover,
.vx-product-checkout-page .vx-product-thumb.is-active {
  opacity: 1 !important;
  border-color: rgba(var(--cl-accent), 0.78) !important;
  box-shadow: 0 0 0 1px rgba(var(--cl-accent), 0.22), 0 0 28px rgba(var(--cl-accent), 0.12) !important;
}

.vx-product-checkout-page .vx-product-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.vx-product-checkout-page .vx-product-summary-price {
  display: block !important;
  color: #fff !important;
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: -0.05em !important;
  white-space: nowrap !important;
  text-shadow: 0 0 28px rgba(var(--cl-accent), 0.35) !important;
}

.vx-product-checkout-page .vx-product-buy-head,
.vx-product-checkout-page .vx-product-badges,
.vx-product-checkout-page .vx-product-key-stock {
  display: none !important;
}

.vx-product-checkout-page .vx-product-key-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.85rem !important;
}

.vx-product-checkout-page .vx-product-key-option {
  grid-template-columns: minmax(0, 1fr) auto !important;
  min-height: 4.65rem !important;
  border-radius: 0.5rem !important;
  background: rgba(6, 9, 16, 0.58) !important;
}

.vx-product-checkout-page .vx-product-key-option--active {
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.72), rgba(0, 108, 255, 0.48)) !important;
  border-color: rgba(var(--cl-accent), 0.95) !important;
  box-shadow: 0 0 0 1px rgba(var(--cl-accent), 0.26), 0 14px 40px rgba(var(--cl-accent), 0.12) !important;
}

.vx-product-checkout-page .vx-product-key-info small {
  color: rgba(215, 229, 255, 0.72) !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  text-transform: uppercase !important;
}

.vx-product-checkout-page .vx-product-key-info strong {
  color: #fff !important;
  font-size: 1.05rem !important;
}

.vx-product-checkout-page .vx-product-key-info em {
  color: rgba(222, 235, 255, 0.68) !important;
  font-size: 0.78rem !important;
  font-style: normal !important;
}

.vx-product-checkout-page .vx-product-key-price {
  display: grid !important;
  gap: 0.1rem !important;
  justify-items: end !important;
  color: #fff !important;
  font-size: 1.12rem !important;
  font-weight: 950 !important;
}

.vx-product-checkout-page .vx-product-key-price small {
  color: rgba(200, 210, 230, 0.55) !important;
  font-size: 0.78rem !important;
  text-decoration: line-through !important;
}

.vx-product-checkout-page .vx-product-action-row {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

.vx-product-checkout-page .vx-product-pay-button {
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.94), rgba(0, 94, 255, 0.82)) !important;
}

.vx-product-checkout-page .vx-product-cart-button {
  min-width: 11rem !important;
}

.vx-product-feature-content-shell {
  display: grid !important;
  grid-template-rows: 0fr !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  transition: grid-template-rows 300ms ease, opacity 240ms ease, transform 300ms ease !important;
  will-change: grid-template-rows, opacity, transform !important;
}

.vx-product-feature-item.is-open .vx-product-feature-content-shell {
  grid-template-rows: 1fr !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.vx-product-feature-content-inner {
  min-height: 0 !important;
  overflow: hidden !important;
}

.vx-product-feature-content-inner > .editor {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 1rem 1.15rem 1.2rem !important;
  color: rgba(226, 236, 249, 0.88) !important;
}

@media (max-width: 980px) {
  .vx-product-checkout-page .vx-product-key-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .vx-product-checkout-page .vx-product-action-row {
    grid-template-columns: 1fr !important;
  }

  .vx-product-checkout-page .vx-product-cart-button {
    min-width: 0 !important;
  }

  .vx-product-checkout-page .vx-product-key-option {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }
}

/* --- Product page: softer top glow, working gallery fade, aligned checkmarks --- */
.vx-product-checkout-page {
  isolation: isolate !important;
  background:
    radial-gradient(ellipse 82% 32rem at 50% 0%, rgba(var(--cl-accent), 0.13) 0%, rgba(var(--cl-accent), 0.065) 38%, rgba(var(--cl-accent), 0.024) 60%, transparent 82%) !important;
}

.vx-product-checkout-page::before {
  top: 0 !important;
  height: clamp(18rem, 42vh, 31rem) !important;
  opacity: 0.58 !important;
  background: radial-gradient(ellipse 86% 70% at 50% 0%, rgba(var(--cl-accent), 0.15) 0%, rgba(var(--cl-accent), 0.065) 42%, rgba(var(--cl-accent), 0.018) 70%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.70) 42%, rgba(0,0,0,0.24) 70%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.70) 42%, rgba(0,0,0,0.24) 70%, transparent 100%) !important;
}

.vx-product-checkout-page .vx-product-detail-glow {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: min(100vw, 112rem) !important;
  height: clamp(18rem, 46vh, 33rem) !important;
  transform: translateX(-50%) !important;
  z-index: -1 !important;
  opacity: 0.52 !important;
  background:
    radial-gradient(ellipse 74% 62% at 50% 0%, rgba(var(--cl-accent), 0.18) 0%, rgba(var(--cl-accent), 0.075) 40%, rgba(var(--cl-accent), 0.025) 64%, transparent 92%) !important;
  filter: blur(2px) !important;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.22) 70%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.22) 70%, transparent 100%) !important;
}

.vx-product-checkout-page .vx-product-detail-shell {
  position: relative !important;
  z-index: 1 !important;
}

.vx-product-checkout-page .vx-product-main-image {
  transition: opacity 220ms ease, filter 220ms ease !important;
}

.vx-product-checkout-page .vx-product-main-image.is-changing {
  opacity: 0.22 !important;
  filter: blur(2px) !important;
}

.vx-product-checkout-page .vx-product-quick-specs ul {
  gap: 0.42rem !important;
}

.vx-product-checkout-page .vx-product-quick-specs li {
  display: grid !important;
  grid-template-columns: 1rem minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 0.55rem !important;
  line-height: 1.35 !important;
}

.vx-product-checkout-page .vx-product-quick-specs li i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1rem !important;
  height: 1.35em !important;
  margin: 0 !important;
  padding-top: 0.08em !important;
  font-size: 0.76rem !important;
  line-height: 1 !important;
}

.vx-product-checkout-page .vx-product-quick-specs li span {
  min-width: 0 !important;
}


/* --- Product page: keep product name on one line on desktop --- */
.vx-product-checkout-page .vx-product-summary-head {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
  column-gap: clamp(1rem, 2.4vw, 2rem) !important;
}

.vx-product-checkout-page .vx-product-title-row {
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}

.vx-product-checkout-page .vx-product-title-row h1 {
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: clamp(2.15rem, 2.85vw, 3.35rem) !important;
  line-height: 1.02 !important;
}

.vx-product-checkout-page .vx-product-summary-price {
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .vx-product-checkout-page .vx-product-summary-head {
    grid-template-columns: 1fr !important;
  }

  .vx-product-checkout-page .vx-product-title-row h1 {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }
}

/* --- Product page: reduce title size and keep distance from price --- */
.vx-product-checkout-page .vx-product-summary-head {
  grid-template-columns: minmax(0, 1fr) auto !important;
  column-gap: clamp(2rem, 4vw, 4.5rem) !important;
  align-items: start !important;
}

.vx-product-checkout-page .vx-product-title-row h1 {
  font-size: clamp(1.85rem, 2.25vw, 2.85rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.vx-product-checkout-page .vx-product-summary-price {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

@media (max-width: 1280px) {
  .vx-product-checkout-page .vx-product-title-row h1 {
    font-size: clamp(1.75rem, 2.05vw, 2.35rem) !important;
  }
}

@media (max-width: 980px) {
  .vx-product-checkout-page .vx-product-title-row h1 {
    white-space: normal !important;
    font-size: clamp(1.95rem, 8vw, 2.8rem) !important;
  }
}

/* --- Category main title: soft light-blue + smooth shiny sweep --- */
.vx-products-title--category {
  position: relative !important;
  display: inline-block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #dff8ff !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow:
    0 0 18px rgba(83, 207, 255, 0.24),
    0 0 44px rgba(var(--cl-accent), 0.13) !important;
  filter: none !important;
  isolation: isolate !important;
  overflow: visible !important;
}

.vx-products-title--category::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    108deg,
    transparent 0%,
    transparent 34%,
    rgba(155, 232, 255, 0.20) 42%,
    rgba(255, 255, 255, 0.82) 49%,
    rgba(113, 218, 255, 0.30) 56%,
    transparent 66%,
    transparent 100%
  ) !important;
  background-size: 260% 100% !important;
  background-position: -170% 50% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  text-shadow: none !important;
  animation: vxCategoryMainTitleShine 5.2s cubic-bezier(0.42, 0, 0.18, 1) infinite !important;
}

@keyframes vxCategoryMainTitleShine {
  0%, 18% {
    background-position: -170% 50%;
    opacity: 0;
  }
  26% {
    opacity: 0.95;
  }
  58%, 100% {
    background-position: 170% 50%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-products-title--category::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* --- V15: align System Requirements checkmarks only --- */
.vx-product-checkout-page .vx-product-quick-specs ul {
  gap: 0.42rem !important;
}

.vx-product-checkout-page .vx-product-quick-specs li {
  display: grid !important;
  grid-template-columns: 1rem minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 0.55rem !important;
  line-height: 1.35 !important;
}

.vx-product-checkout-page .vx-product-quick-specs li i {
  width: 0.88rem !important;
  height: 0.88rem !important;
  min-width: 0.88rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  position: relative !important;
  top: 0 !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
}

.vx-product-checkout-page .vx-product-quick-specs li span {
  display: block !important;
  line-height: 1.35 !important;
}
/* --- Main hero 1920x1080 scale polish ---
   Keeps the 2560x1440 look, but prevents the side characters from getting too small on 1080p desktop screens. */
@media (min-width: 1200px) and (max-width: 2200px) {
  .edge-home-hero .edge-hero-frame {
    min-height: clamp(760px, 82vh, 860px) !important;
  }

  .edge-home-hero .edge-agent {
    width: clamp(680px, 41vw, 820px) !important;
    height: clamp(760px, 88vh, 960px) !important;
    bottom: -1.55rem !important;
  }

  .edge-home-hero .edge-agent-left {
    left: clamp(1.75rem, 3.35vw, 4.4rem) !important;
  }

  .edge-home-hero .edge-agent-right {
    right: clamp(1.75rem, 3.35vw, 4.4rem) !important;
  }

  .edge-home-hero .edge-hero-content {
    padding-top: clamp(6.2rem, 8vw, 8.2rem) !important;
    padding-bottom: clamp(5rem, 6.6vw, 6.7rem) !important;
  }
}

/* Slightly larger desktop sides without affecting tablet/mobile layout. */
@media (min-width: 2201px) {
  .edge-home-hero .edge-agent {
    width: clamp(740px, 32vw, 820px) !important;
    height: clamp(820px, 68vh, 960px) !important;
  }
}

/* --- Main hero fine tune: no character/text collision + mobile title grouping ---
   Slightly reduces desktop side characters and pushes them outward.
   Also keeps "Stay Ahead" together on mobile by giving the title enough line width. */
@media (min-width: 1200px) and (max-width: 2200px) {
  .edge-home-hero .edge-hero-frame {
    min-height: clamp(740px, 81vh, 850px) !important;
  }

  .edge-home-hero .edge-hero-content {
    width: min(62vw, 740px) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .edge-home-hero .edge-hero-title {
    font-size: clamp(2.9rem, 4.2vw, 5.25rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.064em !important;
    max-width: 8.25ch !important;
  }

  .edge-home-hero .edge-hero-subtitle {
    width: min(39vw, 600px) !important;
    max-width: 600px !important;
  }

  .edge-home-hero .edge-agent {
    width: clamp(600px, 37vw, 760px) !important;
    height: clamp(700px, 84vh, 910px) !important;
    bottom: -1.65rem !important;
  }

  .edge-home-hero .edge-agent-left {
    left: clamp(-2.4rem, 0.3vw, 1rem) !important;
  }

  .edge-home-hero .edge-agent-right {
    right: clamp(-2.4rem, 0.3vw, 1rem) !important;
  }

  .edge-home-hero .edge-agent-image {
    opacity: 0.82 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  .edge-home-hero .edge-agent {
    width: clamp(560px, 35vw, 690px) !important;
    height: clamp(660px, 80vh, 840px) !important;
  }

  .edge-home-hero .edge-agent-left {
    left: clamp(-3rem, -0.35vw, -0.25rem) !important;
  }

  .edge-home-hero .edge-agent-right {
    right: clamp(-3rem, -0.35vw, -0.25rem) !important;
  }
}

/* Mobile title: keep "Stay Ahead" on the same visual line whenever possible. */
@media (max-width: 760px) {
  .edge-home-hero .edge-hero-content {
    width: min(100%, 31rem) !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .edge-home-hero .edge-hero-title {
    width: 100% !important;
    max-width: 12.5ch !important;
    font-size: clamp(2.55rem, 10.4vw, 3.65rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.06em !important;
    text-wrap: normal !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .edge-home-hero .edge-hero-title .edge-gradient-text,
  .edge-home-hero .edge-hero-title .edge-shiny-text,
  .edge-home-hero .edge-hero-title .edge-purple-text {
    display: inline !important;
    white-space: nowrap !important;
  }

  .edge-home-hero .edge-hero-subtitle {
    width: min(100%, 27rem) !important;
    font-size: clamp(0.98rem, 3.6vw, 1.08rem) !important;
  }
}

@media (max-width: 430px) {
  .edge-home-hero .edge-hero-title {
    font-size: clamp(2.35rem, 10vw, 3.25rem) !important;
    max-width: 12.8ch !important;
  }
}

/* --- Products page mobile card containment only ---
   Minimal fix: only keeps products/category boxes inside the mobile width.
   It does not change page scrolling, scrollbars, html/body overflow, or page height. */
@media (max-width: 640px) {
  .vx-products-page {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .vx-products-shell,
  .vx-products-shell--category,
  .vx-products-toolbar,
  .vx-products-toolbar--category,
  .vx-products-search,
  .vx-products-search--category,
  .vx-products-search input,
  .vx-products-search--category input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .vx-products-grid,
  .vx-products-grid.edge-category-grid,
  .vx-products-grid.edge-category-grid.edge-category-grid--image-only,
  .vx-products-result-grid,
  .vx-products-result-grid.vx-category-products-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    box-sizing: border-box !important;
  }

  .vx-products-card,
  .edge-category-card,
  .vx-category-product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .vx-category-product-card__media,
  .vx-products-card__image,
  .edge-category-card__image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .vx-category-product-card__media img,
  .vx-products-card__image img,
  .edge-category-card img {
    max-width: 100% !important;
  }
}

/* --- Vixen cart page redesign --- */
.vx-cart-page {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(560px, 72vh, 760px);
  padding: clamp(4rem, 7vw, 7.2rem) 1.25rem clamp(4rem, 7vw, 6.5rem);
  color: #f8fbff;
  overflow: hidden;
  isolation: isolate;
}

.vx-cart-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(22rem, 42vw, 36rem);
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 58% at 50% 0%, rgba(var(--cl-accent), 0.18) 0%, rgba(var(--cl-accent), 0.08) 40%, transparent 78%),
    linear-gradient(180deg, rgba(var(--cl-accent), 0.045), transparent 75%);
  opacity: 0.9;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.8) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.8) 45%, transparent 100%);
}

.vx-cart-shell {
  width: min(100%, 62rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vx-cart-hero {
  text-align: center;
  margin-bottom: clamp(3.8rem, 8vw, 8.2rem);
}

.vx-cart-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: rgba(114, 207, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.vx-cart-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 4.4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 42px rgba(var(--cl-accent), 0.12);
}

.vx-cart-hero h1 span {
  color: #6bcfff;
  background: linear-gradient(135deg, #96e8ff 0%, #2dbbff 48%, #007dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vx-cart-hero p {
  width: min(100%, 38rem);
  margin: 1.15rem auto 0;
  color: rgba(190, 207, 231, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.vx-cart-loading,
.vx-cart-message,
.vx-cart-empty-card,
.vx-cart-item,
.vx-cart-summary {
  border: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(7, 11, 16, 0.78);
  box-shadow:
    0 1.25rem 4rem rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vx-cart-message {
  margin: -2.5rem auto 2rem;
  padding: 1rem 1.15rem;
  border-color: rgba(var(--cl-accent), 0.22);
  color: rgba(210, 238, 255, 0.92);
}

.vx-cart-loading {
  min-height: 12rem;
  display: grid;
  place-items: center;
  color: var(--edge-blue);
  border-radius: 0.9rem;
  font-size: 2rem;
}

.vx-cart-empty-card {
  width: min(100%, 36rem);
  min-height: 21rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  gap: 0.85rem;
}

.vx-cart-empty-icon {
  width: 4.15rem;
  height: 4.15rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(215, 226, 245, 0.68);
  background: rgba(255, 255, 255, 0.045);
  font-size: 1.65rem;
}

.vx-cart-empty-card h2 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.vx-cart-empty-card p {
  width: min(100%, 28rem);
  margin: 0;
  color: rgba(181, 195, 219, 0.76);
  font-size: 0.98rem;
  line-height: 1.45;
}

.vx-cart-primary-link,
.vx-cart-checkout,
.vx-cart-continue {
  min-height: 2.9rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, filter 180ms ease;
}

.vx-cart-primary-link,
.vx-cart-checkout {
  color: #ffffff !important;
  border: 1px solid rgba(var(--cl-accent), 0.55);
  background: linear-gradient(135deg, rgba(var(--cl-accent), 0.92), rgba(0, 106, 255, 0.9));
  box-shadow: 0 0.9rem 2.4rem rgba(var(--cl-accent), 0.18), inset 0 1px 0 rgba(255,255,255,0.2);
}

.vx-cart-primary-link:hover,
.vx-cart-checkout:hover:enabled {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.vx-cart-layout {
  width: min(100%, 38rem);
  margin: 0 auto;
  display: grid;
  gap: 1.45rem;
}

.vx-cart-items {
  display: grid;
  gap: 1rem;
}

.vx-cart-item {
  border-radius: 0.75rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.vx-cart-item-main {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
}

.vx-cart-item-image {
  width: 5.1rem;
  height: 4.1rem;
  border-radius: 0.35rem;
  overflow: hidden;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: var(--edge-blue);
  flex-shrink: 0;
}

.vx-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vx-cart-item-info {
  min-width: 0;
  text-align: left;
}

.vx-cart-item-title {
  display: block;
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vx-cart-item-title:hover {
  color: #9de8ff !important;
}

.vx-cart-item-variant {
  margin: 0.28rem 0 0;
  color: rgba(177, 193, 220, 0.78);
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 650;
}

.vx-cart-item-note {
  margin: 0.35rem 0 0;
  color: rgba(177, 193, 220, 0.58);
  font-size: 0.78rem;
  line-height: 1.25;
}

.vx-cart-item-note--active {
  color: rgba(103, 222, 255, 0.9);
}

.vx-cart-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.vx-cart-addons span {
  display: inline-flex;
  padding: 0.25rem 0.45rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.035);
  color: rgba(200, 214, 236, 0.65);
  font-size: 0.72rem;
}

.vx-cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.vx-cart-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0.35rem;
  border: 1px solid rgba(255,255,255,0.055);
  background: rgba(255,255,255,0.025);
}

.vx-cart-qty button,
.vx-cart-qty input {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: rgba(255,255,255,0.035);
  font-weight: 800;
  text-align: center;
  outline: none;
}

.vx-cart-qty button {
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.vx-cart-qty button:hover:enabled {
  background: rgba(var(--cl-accent), 0.42);
}

.vx-cart-qty button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.vx-cart-qty input {
  background: transparent;
  -moz-appearance: textfield;
}

.vx-cart-qty input::-webkit-outer-spin-button,
.vx-cart-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vx-cart-item-price {
  min-width: 4.5rem;
  color: #f5fbff;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: right;
}

.vx-cart-remove {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(204, 216, 234, 0.72);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.vx-cart-remove:hover {
  color: #ff8c8c;
  transform: scale(1.08);
}

.vx-cart-altcha,
.vx-cart-error {
  border-radius: 0.7rem;
  border: 1px solid rgba(255,255,255,0.065);
  background: rgba(7, 11, 16, 0.76);
  padding: 1rem;
}

.vx-cart-error {
  color: #ffd8d8;
  border-color: rgba(255, 87, 87, 0.28);
  background: rgba(255, 64, 64, 0.1);
}

.vx-cart-summary {
  border-radius: 0.75rem;
  padding: 0;
  overflow: hidden;
}

.vx-cart-summary h2 {
  margin: 0;
  padding: 1rem 1.1rem;
  color: rgba(179, 191, 216, 0.9);
  background: rgba(255,255,255,0.025);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.vx-cart-summary h2 i {
  color: rgba(130, 219, 255, 0.86);
  margin-right: 0.35rem;
}

.vx-cart-summary-line,
.vx-cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  color: rgba(177, 193, 220, 0.78);
  font-size: 0.93rem;
}

.vx-cart-summary-line strong,
.vx-cart-summary-total strong {
  color: #f8fbff;
  font-weight: 900;
}

.vx-cart-summary-discount strong {
  color: rgba(90, 220, 255, 0.95);
}

.vx-cart-summary-total {
  padding-top: 1rem;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.065);
  font-size: 1.05rem;
  font-weight: 900;
}

.vx-cart-actions-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
}

.vx-cart-checkout {
  width: 100%;
  border-radius: 0.45rem;
}

.vx-cart-checkout:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.vx-cart-continue {
  min-width: 11rem;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.095);
  background: rgba(255,255,255,0.025);
}

.vx-cart-continue:hover {
  border-color: rgba(var(--cl-accent), 0.36);
  background: rgba(var(--cl-accent), 0.08);
}

@media (max-width: 760px) {
  .vx-cart-page {
    padding-top: 3.5rem;
  }

  .vx-cart-hero {
    margin-bottom: 3rem;
  }

  .vx-cart-layout,
  .vx-cart-empty-card {
    width: 100%;
  }

  .vx-cart-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .vx-cart-item-actions {
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .vx-cart-actions-bottom {
    grid-template-columns: 1fr;
  }

  .vx-cart-continue {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .vx-cart-page {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .vx-cart-item-main {
    grid-template-columns: 4.4rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .vx-cart-item-image {
    width: 4.4rem;
    height: 3.55rem;
  }

  .vx-cart-item-actions {
    gap: 0.65rem;
  }

  .vx-cart-item-price {
    min-width: 3.9rem;
  }
}

/* --- Vixen cart page sizing/glow polish v2 ---
   Wider cart layout, higher hero, full-width soft glow, and hidden Altcha verified box. */
.vx-cart-page {
  padding-top: clamp(2.6rem, 4vw, 4.5rem) !important;
  min-height: clamp(620px, 76vh, 820px) !important;
  overflow: hidden !important;
}

.vx-cart-page::before {
  inset: 0 0 auto 0 !important;
  height: clamp(28rem, 48vw, 42rem) !important;
  background:
    radial-gradient(ellipse 78% 62% at 50% 0%,
      rgba(var(--cl-accent), 0.20) 0%,
      rgba(var(--cl-accent), 0.13) 26%,
      rgba(var(--cl-accent), 0.055) 52%,
      transparent 82%
    ),
    radial-gradient(ellipse 48% 38% at 24% 0%,
      rgba(73, 205, 255, 0.10) 0%,
      transparent 72%
    ),
    radial-gradient(ellipse 48% 38% at 76% 0%,
      rgba(0, 119, 255, 0.10) 0%,
      transparent 72%
    ),
    linear-gradient(180deg,
      rgba(var(--cl-accent), 0.045) 0%,
      rgba(var(--cl-accent), 0.022) 34%,
      transparent 84%
    ) !important;
  opacity: 0.95 !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.9) 34%, rgba(0, 0, 0, 0.42) 65%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.9) 34%, rgba(0, 0, 0, 0.42) 65%, transparent 100%) !important;
}

.vx-cart-shell {
  width: min(100%, 78rem) !important;
}

.vx-cart-hero {
  margin-bottom: clamp(2.3rem, 4vw, 4.4rem) !important;
}

.vx-cart-hero h1 {
  font-size: clamp(2.85rem, 4.25vw, 4.65rem) !important;
}

.vx-cart-layout {
  width: min(100%, 66rem) !important;
  gap: 1.05rem !important;
}

.vx-cart-items {
  width: 100% !important;
}

.vx-cart-item {
  width: 100% !important;
  border-radius: 0.95rem !important;
  padding: 1.15rem 1.25rem !important;
}

.vx-cart-item-image {
  width: 5.6rem !important;
  height: 4.55rem !important;
  border-radius: 0.45rem !important;
}

.vx-cart-item-title {
  font-size: 1.06rem !important;
}

.vx-cart-actions-bottom {
  display: grid !important;
  grid-template-columns: minmax(0, 1.7fr) minmax(12rem, 0.8fr) !important;
  gap: 0.85rem !important;
  align-items: stretch !important;
}

.vx-cart-checkout,
.vx-cart-continue {
  width: 100% !important;
  justify-content: center !important;
}

.vx-cart-summary {
  width: 100% !important;
  border-radius: 0.95rem !important;
}

@media (max-width: 760px) {
  .vx-cart-page {
    padding-top: 2.25rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: hidden !important;
  }

  .vx-cart-shell,
  .vx-cart-layout {
    width: 100% !important;
    max-width: 100% !important;
  }

  .vx-cart-hero {
    margin-bottom: 2rem !important;
  }

  .vx-cart-item {
    padding: 1rem !important;
  }

  .vx-cart-item-main {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  .vx-cart-item-image {
    width: 4.7rem !important;
    height: 3.8rem !important;
  }

  .vx-cart-actions-bottom {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .vx-cart-item {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }

  .vx-cart-item-main {
    width: 100% !important;
  }

  .vx-cart-item-price,
  .vx-cart-remove {
    justify-self: end !important;
  }
}

/* --- Vixen cart captcha + full width glow fix ---
   Keeps Altcha functional, hides the visual verified box after success,
   and makes the cart top glow span the full viewport width. */
.components > .component.vx-cart-page,
.vx-cart-page {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.vx-cart-page::before {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
  background:
    radial-gradient(ellipse 94% 68% at 50% 0%,
      rgba(var(--cl-accent), 0.19) 0%,
      rgba(var(--cl-accent), 0.115) 26%,
      rgba(var(--cl-accent), 0.052) 54%,
      transparent 86%
    ),
    radial-gradient(ellipse 58% 42% at 0% 0%,
      rgba(73, 205, 255, 0.085) 0%,
      transparent 78%
    ),
    radial-gradient(ellipse 58% 42% at 100% 0%,
      rgba(0, 119, 255, 0.085) 0%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(var(--cl-accent), 0.04) 0%,
      rgba(var(--cl-accent), 0.018) 40%,
      transparent 88%
    ) !important;
}

/* Altcha must remain rendered to verify. Once payload exists, x-show hides this wrapper. */
.vx-cart-altcha {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* If the widget briefly paints "Verified", keep it collapsed visually but not display:none. */
.vx-cart-altcha altcha-widget {
  display: block !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* --- Vixen legal pages redesign ---
   Shared style for Terms, Privacy Policy and Refund Policy pages. */
.vx-legal-page {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(680px, 84vh, 980px);
  padding: clamp(4.4rem, 7vw, 7.2rem) 1.25rem clamp(4.5rem, 7vw, 7rem);
  color: #f8fbff;
  overflow: hidden;
  isolation: isolate;
}

.vx-legal-page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: clamp(26rem, 46vw, 42rem);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(ellipse 95% 68% at 50% 0%,
      rgba(var(--cl-accent), 0.18) 0%,
      rgba(var(--cl-accent), 0.10) 30%,
      rgba(var(--cl-accent), 0.045) 58%,
      transparent 88%
    ),
    radial-gradient(ellipse 52% 40% at 0% 0%,
      rgba(77, 211, 255, 0.075) 0%,
      transparent 78%
    ),
    radial-gradient(ellipse 52% 40% at 100% 0%,
      rgba(0, 119, 255, 0.075) 0%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(var(--cl-accent), 0.036) 0%,
      rgba(var(--cl-accent), 0.015) 42%,
      transparent 88%
    );
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 32%, rgba(0,0,0,0.40) 68%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 32%, rgba(0,0,0,0.40) 68%, transparent 100%);
}

.vx-legal-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: clamp(20rem, 36vw, 34rem);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 58% at 50% 0%,
      rgba(33, 172, 255, 0.13) 0%,
      rgba(33, 172, 255, 0.06) 38%,
      transparent 84%
    );
  filter: blur(1px);
}

.vx-legal-shell {
  width: min(100%, 70rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vx-legal-hero {
  text-align: center;
  margin-bottom: clamp(5.2rem, 9vw, 8rem);
}

.vx-legal-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(118, 210, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.vx-legal-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 920;
  text-shadow: 0 0 46px rgba(var(--cl-accent), 0.12);
}

.vx-legal-hero h1 span {
  color: #66ceff;
  background: linear-gradient(135deg, #a7edff 0%, #45c5ff 44%, #007dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vx-legal-hero p {
  width: min(100%, 42rem);
  margin: 1.2rem auto 0;
  color: rgba(184, 201, 228, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
  font-weight: 600;
}

.vx-legal-content {
  width: min(100%, 46rem);
  margin: 0 auto;
}

.vx-legal-editor {
  color: rgba(180, 195, 222, 0.82);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.72;
  font-weight: 560;
}

.vx-legal-editor > *:first-child {
  margin-top: 0 !important;
}

.vx-legal-editor h1,
.vx-legal-editor h2,
.vx-legal-editor h3,
.vx-legal-editor h4 {
  color: rgba(249, 252, 255, 0.96);
  letter-spacing: -0.045em;
  line-height: 1.16;
  font-weight: 900;
}

.vx-legal-editor h1 {
  font-size: clamp(1.75rem, 2.25vw, 2.35rem);
  margin: 0 0 1.25rem;
}

.vx-legal-editor h2 {
  font-size: clamp(1.45rem, 1.85vw, 1.85rem);
  margin: 2.15rem 0 0.85rem;
}

.vx-legal-editor h3 {
  font-size: clamp(1.22rem, 1.55vw, 1.45rem);
  margin: 1.8rem 0 0.7rem;
}

.vx-legal-editor p,
.vx-legal-editor ul,
.vx-legal-editor ol {
  margin: 0.8rem 0 0;
}

.vx-legal-editor p {
  color: rgba(180, 195, 222, 0.80);
}

.vx-legal-editor strong,
.vx-legal-editor b {
  color: rgba(248, 251, 255, 0.96);
  font-weight: 850;
}

.vx-legal-editor a {
  color: #65d3ff !important;
  text-decoration: none !important;
}

.vx-legal-editor a:hover {
  color: #a7edff !important;
}

.vx-legal-editor ul,
.vx-legal-editor ol {
  padding-left: 1.25rem;
}

.vx-legal-editor li {
  margin: 0.45rem 0;
  padding-left: 0.15rem;
}

.vx-legal-editor li::marker {
  color: rgba(var(--cl-accent), 0.92);
}

.vx-legal-editor table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

.vx-legal-editor th,
.vx-legal-editor td {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(6, 12, 22, 0.58);
}

.vx-legal-editor blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid rgba(var(--cl-accent), 0.86);
  border-radius: 0.65rem;
  background: rgba(var(--cl-accent), 0.07);
  color: rgba(210, 229, 244, 0.88);
}

@media (max-width: 760px) {
  .vx-legal-page {
    padding: 3.35rem 1rem 4.5rem;
  }

  .vx-legal-hero {
    margin-bottom: 3.2rem;
  }

  .vx-legal-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    letter-spacing: -0.065em;
  }

  .vx-legal-content {
    width: 100%;
  }

  .vx-legal-editor {
    font-size: 0.98rem;
    line-height: 1.68;
  }
}

/* --- Vixen legal pages glow full width + top spacing fix ---
   Makes the legal page glow actually span the full viewport and reduces the empty top space. */
.vx-legal-page {
  padding-top: clamp(2.7rem, 4.6vw, 4.4rem) !important;
}

.vx-legal-page::before {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
  height: clamp(24rem, 42vw, 38rem) !important;
  background:
    radial-gradient(ellipse 110% 68% at 50% 0%,
      rgba(var(--cl-accent), 0.17) 0%,
      rgba(var(--cl-accent), 0.10) 28%,
      rgba(var(--cl-accent), 0.045) 58%,
      transparent 88%
    ),
    radial-gradient(ellipse 62% 42% at 0% 0%,
      rgba(77, 211, 255, 0.08) 0%,
      transparent 78%
    ),
    radial-gradient(ellipse 62% 42% at 100% 0%,
      rgba(0, 119, 255, 0.08) 0%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(var(--cl-accent), 0.038) 0%,
      rgba(var(--cl-accent), 0.018) 42%,
      transparent 88%
    ) !important;
}

.vx-legal-glow {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
  height: clamp(18rem, 32vw, 31rem) !important;
  background:
    radial-gradient(ellipse 96% 58% at 50% 0%,
      rgba(33, 172, 255, 0.12) 0%,
      rgba(33, 172, 255, 0.055) 38%,
      transparent 84%
    ) !important;
}

.vx-legal-hero {
  margin-bottom: clamp(4rem, 7.2vw, 6.7rem) !important;
}

@media (max-width: 760px) {
  .vx-legal-page {
    padding-top: 2.45rem !important;
  }

  .vx-legal-hero {
    margin-bottom: 2.8rem !important;
  }
}


/* --- Vixen legal pages final full-width override --- */
.components > .component.vx-legal-page,
.components > section.component.vx-legal-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-top: clamp(2.1rem, 3.8vw, 3.8rem) !important;
}

.components > .component.vx-legal-page::before,
.components > section.component.vx-legal-page::before {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
}

.components > .component.vx-legal-page .vx-legal-glow,
.components > section.component.vx-legal-page .vx-legal-glow {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
}

.components > .component.vx-legal-page .vx-legal-hero,
.components > section.component.vx-legal-page .vx-legal-hero {
  margin-bottom: clamp(3.4rem, 6vw, 5.5rem) !important;
}

@media (max-width: 760px) {
  .components > .component.vx-legal-page,
  .components > section.component.vx-legal-page {
    padding-top: 1.9rem !important;
  }

  .components > .component.vx-legal-page .vx-legal-hero,
  .components > section.component.vx-legal-page .vx-legal-hero {
    margin-bottom: 2.6rem !important;
  }
}

/* --- Vixen legal content width polish ---
   Makes legal text wider so paragraphs use more horizontal space like the reference. */
.vx-legal-shell {
  width: min(100%, 86rem) !important;
}

.vx-legal-content {
  width: min(100%, 62rem) !important;
  max-width: 62rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.vx-legal-editor {
  font-size: clamp(1rem, 1.02vw, 1.08rem) !important;
  line-height: 1.7 !important;
}

.vx-legal-editor p,
.vx-legal-editor li {
  max-width: none !important;
}

@media (min-width: 1440px) {
  .vx-legal-content {
    width: min(100%, 66rem) !important;
    max-width: 66rem !important;
  }
}

@media (max-width: 760px) {
  .vx-legal-shell,
  .vx-legal-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* --- Product page animation micro-jitter fix ---
   Stabilizes the product page reveal so it does not do that quick blurry/jumpy frame at load. */
@media (prefers-reduced-motion: no-preference) {
  .vx-product-checkout-page .vx-product-breadcrumb,
  .vx-product-checkout-page .vx-product-detail-left,
  .vx-product-checkout-page .vx-product-detail-right,
  .vx-product-checkout-page .vx-product-section-card {
    animation: vxProductCleanReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: opacity, transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .vx-product-checkout-page .vx-product-breadcrumb {
    animation-delay: 20ms;
  }

  .vx-product-checkout-page .vx-product-detail-left {
    animation-delay: 70ms;
  }

  .vx-product-checkout-page .vx-product-detail-right {
    animation-delay: 120ms;
  }

  .vx-product-checkout-page .vx-product-section-card {
    animation-delay: 190ms;
  }
}

@keyframes vxProductCleanReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Keep layout stable while images/Alpine values initialize. */
.vx-product-checkout-page .vx-product-main-media,
.vx-product-checkout-page .vx-product-main-image,
.vx-product-checkout-page .vx-product-detail-left,
.vx-product-checkout-page .vx-product-detail-right,
.vx-product-checkout-page .vx-product-buy-panel,
.vx-product-checkout-page .vx-product-key-option {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.vx-product-checkout-page .vx-product-main-media {
  contain: layout paint;
  min-height: clamp(16rem, 31vw, 33rem);
}

.vx-product-checkout-page .vx-product-main-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(16rem, 31vw, 33rem);
  object-fit: cover;
}

/* Avoid the old global reveal scale from affecting product page elements. */
.reveal-ready .vx-product-checkout-page .smooth-reveal {
  transform: translate3d(0, 14px, 0) !important;
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.reveal-ready .vx-product-checkout-page .smooth-reveal.is-visible {
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 680px) {
  .vx-product-checkout-page .vx-product-main-media,
  .vx-product-checkout-page .vx-product-main-image {
    min-height: auto;
  }
}

/* --- Product page buy button jump fix ---
   The quick jump was caused by the invisible Altcha/captcha widget becoming visible for a frame
   and changing the form height before hiding again. Keep it mounted for verification, but out of layout. */
.vx-product-checkout-page .vx-product-purchase-form {
  position: relative !important;
}

.vx-product-checkout-page .vx-product-altcha {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  max-height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  transition: none !important;
}

.vx-product-checkout-page .vx-product-altcha[style] {
  height: 1px !important;
  max-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  transform: none !important;
}

.vx-product-checkout-page .vx-product-altcha altcha-widget {
  display: block !important;
  width: 1px !important;
  height: 1px !important;
  max-height: 1px !important;
  min-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  transform: none !important;
  transition: none !important;
}

/* Stabilize the buy/add buttons while Alpine initializes the loading/disabled states. */
.vx-product-checkout-page .vx-product-action-row,
.vx-product-checkout-page .vx-product-pay-button,
.vx-product-checkout-page .vx-product-cart-button {
  transform: translate3d(0, 0, 0) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  will-change: auto !important;
}

.vx-product-checkout-page .vx-product-action-row {
  min-height: 3.9rem !important;
  align-items: stretch !important;
}

/* Do not allow x-transition from the hidden captcha/error elements to move the button row. */
.vx-product-checkout-page .vx-product-altcha,
.vx-product-checkout-page .vx-product-altcha.x-enter,
.vx-product-checkout-page .vx-product-altcha.x-leave {
  transition: none !important;
  animation: none !important;
}

/* --- Product requirements rich text fix ---
   Allows product description formatting inside System Requirements:
   bold, italic, links, inline colors, spans, etc. */
.vx-product-quick-specs .vx-product-description-list li {
  align-items: flex-start !important;
}

.vx-product-quick-specs .vx-product-description-list li > i {
  flex: 0 0 auto !important;
  margin-top: 0.22em !important;
  color: var(--edge-blue) !important;
}

.vx-product-quick-specs .vx-requirement-text {
  display: inline-block !important;
  min-width: 0 !important;
  color: rgba(207, 222, 239, 0.82);
  font-weight: 600;
  line-height: 1.45;
}

.vx-product-quick-specs .vx-requirement-text strong,
.vx-product-quick-specs .vx-requirement-text b {
  font-weight: 900 !important;
}

.vx-product-quick-specs .vx-requirement-text em,
.vx-product-quick-specs .vx-requirement-text i:not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands) {
  font-style: italic !important;
  color: inherit;
}

.vx-product-quick-specs .vx-requirement-text a {
  color: #66d8ff !important;
  text-decoration: none !important;
}

.vx-product-quick-specs .vx-requirement-text a:hover {
  color: #a8efff !important;
}

/* Do not force rich text children to the old single color. Inline editor colors should win. */
.vx-product-quick-specs .vx-requirement-text span,
.vx-product-quick-specs .vx-requirement-text font,
.vx-product-quick-specs .vx-requirement-text strong,
.vx-product-quick-specs .vx-requirement-text b {
  color: inherit;
}

/* --- Product requirements one-line rich text fix ---
   Keeps each System Requirements item on one visual line when there is enough space,
   while still preserving bold/colors from the product description. */
.vx-product-quick-specs .vx-product-description-list li {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  gap: 0.55rem !important;
}

.vx-product-quick-specs .vx-product-description-list li > i {
  flex: 0 0 auto !important;
  margin-top: 0 !important;
  line-height: 1.45 !important;
}

.vx-product-quick-specs .vx-requirement-text {
  display: inline !important;
  min-width: 0 !important;
  white-space: normal !important;
}

.vx-product-quick-specs .vx-requirement-text p,
.vx-product-quick-specs .vx-requirement-text div,
.vx-product-quick-specs .vx-requirement-text span,
.vx-product-quick-specs .vx-requirement-text strong,
.vx-product-quick-specs .vx-requirement-text b,
.vx-product-quick-specs .vx-requirement-text em,
.vx-product-quick-specs .vx-requirement-text font {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vx-product-quick-specs .vx-requirement-text br {
  display: none !important;
}

.vx-product-quick-specs .vx-requirement-text p::after,
.vx-product-quick-specs .vx-requirement-text div::after {
  content: " ";
}

/* --- Product requirements merge label/value lines fix ---
   Extra guard: paragraphs/divs inside requirements are inline, so merged label/value stays in one row. */
.vx-product-quick-specs .vx-requirement-text,
.vx-product-quick-specs .vx-requirement-text * {
  vertical-align: baseline !important;
}

.vx-product-quick-specs .vx-requirement-text p,
.vx-product-quick-specs .vx-requirement-text div,
.vx-product-quick-specs .vx-requirement-text h1,
.vx-product-quick-specs .vx-requirement-text h2,
.vx-product-quick-specs .vx-requirement-text h3,
.vx-product-quick-specs .vx-requirement-text h4,
.vx-product-quick-specs .vx-requirement-text h5,
.vx-product-quick-specs .vx-requirement-text h6 {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* --- Product requirements no split label/value final fix ---
   Forces the generated label + value content to stay inline. */
.vx-product-quick-specs .vx-product-description-list {
  gap: 0.32rem !important;
}

.vx-product-quick-specs .vx-product-description-list li {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.55rem !important;
  flex-wrap: nowrap !important;
}

.vx-product-quick-specs .vx-product-description-list li > i {
  flex: 0 0 auto !important;
  margin-top: 0 !important;
  line-height: 1.45 !important;
}

.vx-product-quick-specs .vx-requirement-text {
  display: inline !important;
  line-height: 1.45 !important;
  white-space: normal !important;
}

.vx-product-quick-specs .vx-requirement-text p,
.vx-product-quick-specs .vx-requirement-text div,
.vx-product-quick-specs .vx-requirement-text h1,
.vx-product-quick-specs .vx-requirement-text h2,
.vx-product-quick-specs .vx-requirement-text h3,
.vx-product-quick-specs .vx-requirement-text h4,
.vx-product-quick-specs .vx-requirement-text h5,
.vx-product-quick-specs .vx-requirement-text h6,
.vx-product-quick-specs .vx-requirement-text span,
.vx-product-quick-specs .vx-requirement-text strong,
.vx-product-quick-specs .vx-requirement-text b,
.vx-product-quick-specs .vx-requirement-text em,
.vx-product-quick-specs .vx-requirement-text font {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vx-product-quick-specs .vx-requirement-text br {
  display: none !important;
}

/* --- Product requirements real inline final fix ---
   Hard override for editor formatting that was forcing CPU/value onto separate lines. */
.vx-product-quick-specs .vx-product-description-list li {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.55rem !important;
  flex-wrap: nowrap !important;
}

.vx-product-quick-specs .vx-product-description-list li > i {
  flex: 0 0 auto !important;
  margin-top: 0 !important;
  line-height: 1.45 !important;
}

.vx-product-quick-specs .vx-requirement-text {
  display: inline !important;
  min-width: 0 !important;
  line-height: 1.45 !important;
  white-space: normal !important;
}

.vx-product-quick-specs .vx-requirement-text *,
.vx-product-quick-specs .vx-requirement-text p,
.vx-product-quick-specs .vx-requirement-text div,
.vx-product-quick-specs .vx-requirement-text h1,
.vx-product-quick-specs .vx-requirement-text h2,
.vx-product-quick-specs .vx-requirement-text h3,
.vx-product-quick-specs .vx-requirement-text h4,
.vx-product-quick-specs .vx-requirement-text h5,
.vx-product-quick-specs .vx-requirement-text h6,
.vx-product-quick-specs .vx-requirement-text blockquote {
  display: inline !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: inherit !important;
}

.vx-product-quick-specs .vx-requirement-text br {
  display: none !important;
}

/* --- Product requirements leaf block merge final fix ---
   Uses inline rendering for the generated requirements and prevents editor block styles from splitting label/value. */
.vx-product-quick-specs .vx-product-description-list {
  gap: 0.36rem !important;
}

.vx-product-quick-specs .vx-product-description-list li {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.55rem !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}

.vx-product-quick-specs .vx-product-description-list li > i {
  flex: 0 0 auto !important;
  margin-top: 0 !important;
  line-height: 1.45 !important;
}

.vx-product-quick-specs .vx-requirement-text {
  display: inline !important;
  min-width: 0 !important;
  line-height: 1.45 !important;
  white-space: normal !important;
}

.vx-product-quick-specs .vx-requirement-text *,
.vx-product-quick-specs .vx-requirement-text span,
.vx-product-quick-specs .vx-requirement-text p,
.vx-product-quick-specs .vx-requirement-text div,
.vx-product-quick-specs .vx-requirement-text h1,
.vx-product-quick-specs .vx-requirement-text h2,
.vx-product-quick-specs .vx-requirement-text h3,
.vx-product-quick-specs .vx-requirement-text h4,
.vx-product-quick-specs .vx-requirement-text h5,
.vx-product-quick-specs .vx-requirement-text h6,
.vx-product-quick-specs .vx-requirement-text blockquote,
.vx-product-quick-specs .vx-requirement-text li {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
}

.vx-product-quick-specs .vx-requirement-text br {
  display: none !important;
}

/* --- Product requirements absolute inline override ---
   Final guard for editor-generated display:block/display:flex styles inside requirements.
   JS also applies inline !important, this CSS is only a backup. */
.vx-product-quick-specs .vx-product-description-list li {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  gap: 0.55rem !important;
}

.vx-product-quick-specs .vx-product-description-list li > i {
  flex: 0 0 auto !important;
  margin: 0 !important;
  line-height: 1.45 !important;
}

.vx-product-quick-specs .vx-product-description-list li > .vx-requirement-text {
  display: inline !important;
  min-width: 0 !important;
  line-height: 1.45 !important;
  white-space: normal !important;
}

.vx-product-quick-specs .vx-product-description-list li > .vx-requirement-text * {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
}

.vx-product-quick-specs .vx-product-description-list li > .vx-requirement-text br {
  display: none !important;
}

/* --- Hero benefit boxes royal blue polish ---
   Changes only the benefit icon boxes from purple to the Vixen royal blue/cyan style. */
.edge-benefit-card .edge-benefit-icon,
.edge-benefit-icon {
  background:
    linear-gradient(135deg,
      rgba(0, 174, 255, 0.16) 0%,
      rgba(0, 105, 255, 0.13) 100%
    ) !important;
  border-color: rgba(0, 174, 255, 0.34) !important;
  color: #39c8ff !important;
  box-shadow:
    0 0 0 1px rgba(0, 174, 255, 0.08) inset,
    0 12px 32px rgba(0, 148, 255, 0.10),
    0 0 22px rgba(0, 174, 255, 0.10) !important;
}

.edge-benefit-card .edge-benefit-icon i,
.edge-benefit-icon i,
.edge-benefit-card .edge-benefit-icon svg,
.edge-benefit-icon svg {
  color: #52d5ff !important;
  filter: drop-shadow(0 0 8px rgba(0, 174, 255, 0.28)) !important;
}

.edge-benefit-card:hover .edge-benefit-icon,
.edge-benefit-card:focus-within .edge-benefit-icon {
  border-color: rgba(74, 211, 255, 0.52) !important;
  background:
    linear-gradient(135deg,
      rgba(0, 184, 255, 0.22) 0%,
      rgba(0, 113, 255, 0.17) 100%
    ) !important;
  box-shadow:
    0 0 0 1px rgba(0, 174, 255, 0.12) inset,
    0 14px 34px rgba(0, 148, 255, 0.14),
    0 0 28px rgba(0, 174, 255, 0.16) !important;
}

/* --- Hero benefit boxes hover blue lock ---
   Keeps the benefit icon boxes blue even during hover/active/focus states. */
.edge-benefit-strip .edge-benefit-card:hover .edge-benefit-icon,
.edge-benefit-strip .edge-benefit-card:focus .edge-benefit-icon,
.edge-benefit-strip .edge-benefit-card:focus-within .edge-benefit-icon,
.edge-benefit-strip .edge-benefit-card:active .edge-benefit-icon,
.edge-benefit-strip .edge-benefit-icon:hover,
.edge-benefit-strip .edge-benefit-icon:focus,
.edge-benefit-strip .edge-benefit-icon:active {
  background:
    linear-gradient(135deg,
      rgba(0, 184, 255, 0.22) 0%,
      rgba(0, 113, 255, 0.17) 100%
    ) !important;
  border-color: rgba(74, 211, 255, 0.52) !important;
  color: #52d5ff !important;
  box-shadow:
    0 0 0 1px rgba(0, 174, 255, 0.12) inset,
    0 14px 34px rgba(0, 148, 255, 0.14),
    0 0 28px rgba(0, 174, 255, 0.16) !important;
}

.edge-benefit-strip .edge-benefit-card:hover .edge-benefit-icon i,
.edge-benefit-strip .edge-benefit-card:focus-within .edge-benefit-icon i,
.edge-benefit-strip .edge-benefit-card:active .edge-benefit-icon i,
.edge-benefit-strip .edge-benefit-icon:hover i,
.edge-benefit-strip .edge-benefit-card:hover .edge-benefit-icon svg,
.edge-benefit-strip .edge-benefit-card:focus-within .edge-benefit-icon svg,
.edge-benefit-strip .edge-benefit-card:active .edge-benefit-icon svg,
.edge-benefit-strip .edge-benefit-icon:hover svg {
  color: #65dcff !important;
  filter: drop-shadow(0 0 9px rgba(0, 174, 255, 0.34)) !important;
}

/* --- Vixen FAQ page legal-style redesign ---
   Matches the Terms / Privacy / Refund page style while keeping FAQ accordions interactive. */
.components > .component.vx-faq-page,
.components > section.component.vx-faq-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.vx-faq-page {
  position: relative;
  width: 100vw;
  min-height: clamp(680px, 84vh, 980px);
  padding: clamp(2.7rem, 4.6vw, 4.4rem) 1.25rem clamp(4.5rem, 7vw, 7rem);
  color: #f8fbff;
  overflow: hidden;
  isolation: isolate;
}

.vx-faq-page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  max-width: none;
  height: clamp(24rem, 42vw, 38rem);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(ellipse 110% 68% at 50% 0%,
      rgba(var(--cl-accent), 0.17) 0%,
      rgba(var(--cl-accent), 0.10) 28%,
      rgba(var(--cl-accent), 0.045) 58%,
      transparent 88%
    ),
    radial-gradient(ellipse 62% 42% at 0% 0%,
      rgba(77, 211, 255, 0.08) 0%,
      transparent 78%
    ),
    radial-gradient(ellipse 62% 42% at 100% 0%,
      rgba(0, 119, 255, 0.08) 0%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(var(--cl-accent), 0.038) 0%,
      rgba(var(--cl-accent), 0.018) 42%,
      transparent 88%
    );
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 32%, rgba(0,0,0,0.40) 68%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.9) 32%, rgba(0,0,0,0.40) 68%, transparent 100%);
}

.vx-faq-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  max-width: none;
  height: clamp(18rem, 32vw, 31rem);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 96% 58% at 50% 0%,
      rgba(33, 172, 255, 0.12) 0%,
      rgba(33, 172, 255, 0.055) 38%,
      transparent 84%
    );
  filter: blur(1px);
}

.vx-faq-shell {
  width: min(100%, 86rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vx-faq-hero {
  text-align: center;
  margin-bottom: clamp(3.4rem, 6vw, 5.5rem);
}

.vx-faq-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(118, 210, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.vx-faq-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.55vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 920;
  text-shadow: 0 0 46px rgba(var(--cl-accent), 0.12);
}

.vx-faq-hero h1::after {
  content: "";
  display: block;
  width: min(100%, 24rem);
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, #5ad8ff 14%, #00aaff 50%, #007dff 86%, transparent 100%);
  box-shadow: 0 0 18px rgba(0, 174, 255, 0.28);
}

.vx-faq-hero h1 span,
.vx-faq-hero h1 em,
.vx-faq-hero h1 strong {
  color: #66ceff;
  background: linear-gradient(135deg, #a7edff 0%, #45c5ff 44%, #007dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.vx-faq-hero p {
  width: min(100%, 42rem);
  margin: 1.2rem auto 0;
  color: rgba(184, 201, 228, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
  font-weight: 600;
}

.vx-faq-list {
  width: min(100%, 62rem);
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.vx-faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(180deg, rgba(9, 20, 34, 0.78), rgba(5, 11, 20, 0.74));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.vx-faq-item:hover,
.vx-faq-item:focus-within {
  border-color: rgba(42, 190, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(9, 24, 39, 0.86), rgba(5, 12, 22, 0.82));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(0, 174, 255, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.vx-faq-question {
  width: 100%;
  min-height: 4.8rem;
  padding: 1.35rem 1.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: rgba(249, 252, 255, 0.96);
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.025em;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.vx-faq-question i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #36caff;
  font-size: 0.95rem;
  transform: rotate(0deg);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease;
}

.vx-faq-question i.is-open {
  transform: rotate(180deg);
  color: #72e1ff;
}

.vx-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-faq-answer-inner {
  padding: 0 1.55rem 1.35rem;
  color: rgba(184, 201, 228, 0.78);
  font-size: clamp(0.98rem, 1.02vw, 1.06rem);
  line-height: 1.62;
  font-weight: 560;
}

.vx-faq-answer-inner strong,
.vx-faq-answer-inner b {
  color: rgba(248, 251, 255, 0.96);
  font-weight: 850;
}

.vx-faq-answer-inner a {
  color: #65d3ff !important;
  text-decoration: none !important;
}

@media (min-width: 1440px) {
  .vx-faq-list {
    width: min(100%, 66rem);
    max-width: 66rem;
  }
}

@media (max-width: 760px) {
  .vx-faq-page {
    padding: 2.45rem 1rem 4.5rem;
  }

  .vx-faq-hero {
    margin-bottom: 2.6rem;
  }

  .vx-faq-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
    letter-spacing: -0.065em;
  }

  .vx-faq-hero h1::after {
    width: min(100%, 16rem);
  }

  .vx-faq-list {
    width: 100%;
    max-width: 100%;
  }

  .vx-faq-question {
    min-height: 4.35rem;
    padding: 1.15rem 1.15rem;
  }

  .vx-faq-answer-inner {
    padding: 0 1.15rem 1.15rem;
  }
}

/* --- FAQ title underline extended ---
   Extends only the small glow bar under the FAQ title. */
.vx-faq-hero h1::after {
  width: min(100%, 32rem) !important;
}

@media (max-width: 760px) {
  .vx-faq-hero h1::after {
    width: min(100%, 19rem) !important;
  }
}


/* --- Vixen featured product image swap: larger Crusader box, keep original text/layout --- */
.edge-why-product-box.edge-why-product-box-image {
  width: min(18.5rem, 100%) !important;
  aspect-ratio: auto !important;
  transform: rotate(0deg) !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.edge-why-product-box.edge-why-product-box-image::before,
.edge-why-product-box.edge-why-product-box-image::after {
  content: none !important;
  display: none !important;
}

.edge-why-product-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.84;
  filter:
    brightness(0.78)
    saturate(0.92)
    contrast(1.02)
    drop-shadow(0 1.15rem 2.4rem rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 1.4rem rgba(0, 140, 255, 0.14));
  transition:
    opacity 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
}

.edge-why-featured-card:hover .edge-why-product-img {
  opacity: 1;
  filter:
    brightness(1)
    saturate(1.04)
    contrast(1.04)
    drop-shadow(0 1.2rem 2.6rem rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 1.75rem rgba(0, 170, 255, 0.22));
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .edge-why-product-box.edge-why-product-box-image {
    width: min(16.75rem, 100%) !important;
  }
}

@media (max-width: 700px) {
  .edge-why-product-box.edge-why-product-box-image {
    width: min(15.25rem, 100%) !important;
  }
}


/* --- Vixen purchase notification toast --- */
.vixen-purchase-toast {
  position: fixed;
  left: clamp(0.85rem, 1.55vw, 1.45rem);
  bottom: clamp(0.95rem, 1.7vw, 1.65rem);
  z-index: 9999;
  width: min(22.5rem, calc(100vw - 1.7rem));
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: 3.55rem minmax(0, 1fr) 3rem;
  align-items: center;
  gap: 0.78rem;
  padding: 0.78rem 0.88rem;
  border-radius: 1.05rem;
  color: #f8fbff;
  text-decoration: none !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(18, 15, 34, 0.97), rgba(8, 10, 22, 0.96));
  border: 1px solid rgba(139, 92, 246, 0.72);
  box-shadow:
    0 1.3rem 3.6rem rgba(0, 0, 0, 0.44),
    0 0 1.8rem rgba(123, 72, 255, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translate3d(-1.15rem, 1rem, 0) scale(0.965);
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 320ms ease,
    transform 320ms cubic-bezier(.2,.9,.25,1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.vixen-purchase-toast::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 75% 50%, rgba(96, 165, 250, 0.12), transparent 38%);
  opacity: 0.72;
}

.vixen-purchase-toast::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  transform-origin: left center;
  transform: scaleX(0);
}

.vixen-purchase-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.vixen-purchase-toast.is-visible::after {
  animation: vixenPurchaseToastTimer 6s linear forwards;
}

.vixen-purchase-toast:hover {
  border-color: rgba(167, 139, 250, 0.94);
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.48),
    0 0 2.3rem rgba(139, 92, 246, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.36), transparent 36%),
    linear-gradient(180deg, rgba(22, 18, 42, 0.99), rgba(10, 12, 26, 0.98));
}

.vixen-purchase-toast-image,
.vixen-purchase-toast-icon,
.vixen-purchase-toast-copy {
  position: relative;
  z-index: 1;
}

.vixen-purchase-toast-image {
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 0.78rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 24%, rgba(167, 139, 250, 0.35), transparent 50%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.78), rgba(67, 56, 202, 0.78));
  box-shadow:
    0 0 1.05rem rgba(139, 92, 246, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.vixen-purchase-toast-image img {
  width: 124%;
  height: 124%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0.42rem 0.75rem rgba(0, 0, 0, 0.34));
}

.vixen-purchase-toast-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vixen-purchase-toast-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.12rem;
  color: rgba(205, 188, 255, 0.96);
  font-size: 0.68rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vixen-purchase-toast-dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: #8b5cf6;
  box-shadow: 0 0 0.8rem rgba(139, 92, 246, 0.85);
  flex: 0 0 auto;
}

.vixen-purchase-toast-title {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.025em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vixen-purchase-toast-time {
  margin-top: 0.1rem;
  color: rgba(202, 211, 229, 0.58);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 700;
}

.vixen-purchase-toast-icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.82rem;
  display: grid;
  place-items: center;
  color: rgba(236, 242, 255, 0.78);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  transition:
    color 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.vixen-purchase-toast-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.vixen-purchase-toast:hover .vixen-purchase-toast-icon {
  color: #ffffff;
  transform: translateX(2px);
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(167, 139, 250, 0.24);
}

@keyframes vixenPurchaseToastTimer {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

@media (max-width: 520px) {
  .vixen-purchase-toast {
    left: 0.75rem;
    bottom: 0.85rem;
    width: calc(100vw - 1.5rem);
    grid-template-columns: 3.25rem minmax(0, 1fr) 2.7rem;
    gap: 0.68rem;
    padding: 0.72rem 0.75rem;
    border-radius: 0.95rem;
  }

  .vixen-purchase-toast-image {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.72rem;
  }

  .vixen-purchase-toast-title {
    font-size: 0.96rem;
  }

  .vixen-purchase-toast-eyebrow {
    font-size: 0.62rem;
  }

  .vixen-purchase-toast-time {
    font-size: 0.72rem;
  }

  .vixen-purchase-toast-icon {
    width: 2.55rem;
    height: 2.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vixen-purchase-toast {
    transition: opacity 180ms ease;
    transform: none;
  }

  .vixen-purchase-toast.is-visible {
    transform: none;
  }

  .vixen-purchase-toast.is-visible::after {
    animation: none;
    transform: scaleX(1);
  }
}


/* --- Vixen purchase notification: blue/cyan site colors + tighter product image --- */
.vixen-purchase-toast {
  border-color: rgba(20, 149, 239, 0.76) !important;
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 188, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(4, 20, 38, 0.97), rgba(3, 9, 20, 0.97)) !important;
  box-shadow:
    0 1.3rem 3.6rem rgba(0, 0, 0, 0.44),
    0 0 1.9rem rgba(0, 159, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.vixen-purchase-toast::before {
  background:
    linear-gradient(110deg, rgba(94, 215, 255, 0.10), transparent 28%),
    radial-gradient(circle at 72% 50%, rgba(0, 132, 255, 0.18), transparent 38%) !important;
}

.vixen-purchase-toast::after {
  background: linear-gradient(90deg, #1495ef, #5ed7ff) !important;
}

.vixen-purchase-toast:hover {
  border-color: rgba(94, 215, 255, 0.94) !important;
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 188, 255, 0.25), transparent 36%),
    linear-gradient(180deg, rgba(6, 29, 53, 0.99), rgba(3, 12, 26, 0.98)) !important;
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.48),
    0 0 2.35rem rgba(0, 159, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.vixen-purchase-toast-image {
  background:
    radial-gradient(circle at 42% 22%, rgba(94, 215, 255, 0.34), transparent 52%),
    linear-gradient(135deg, rgba(6, 82, 151, 0.88), rgba(7, 25, 53, 0.9)) !important;
  box-shadow:
    0 0 1.05rem rgba(0, 159, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

.vixen-purchase-toast-dot {
  background: #1495ef !important;
  box-shadow: 0 0 0.85rem rgba(94, 215, 255, 0.85) !important;
}

.vixen-purchase-toast-eyebrow {
  color: rgba(158, 222, 255, 0.98) !important;
}

.vixen-purchase-toast-icon {
  color: rgba(218, 241, 255, 0.82) !important;
  background: rgba(8, 33, 58, 0.62) !important;
  border-color: rgba(94, 215, 255, 0.13) !important;
}

.vixen-purchase-toast:hover .vixen-purchase-toast-icon {
  color: #ffffff !important;
  background: rgba(20, 149, 239, 0.19) !important;
  border-color: rgba(94, 215, 255, 0.26) !important;
}

.vixen-purchase-toast-image img {
  width: 132% !important;
  height: 132% !important;
}


/* --- Vixen purchase notification: smoother entrance animation --- */
.vixen-purchase-toast {
  transform-origin: left bottom !important;
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(.22,.9,.25,1),
    filter 360ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease !important;
}

.vixen-purchase-toast.is-visible {
  animation: vixenPurchaseToastEnterSmooth 680ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes vixenPurchaseToastEnterSmooth {
  0% {
    opacity: 0;
    transform: translate3d(-1.35rem, 1.05rem, 0) scale(0.93);
    filter: blur(4px);
  }

  58% {
    opacity: 1;
    transform: translate3d(0.18rem, -0.1rem, 0) scale(1.015);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vixen-purchase-toast.is-visible {
    animation: none !important;
  }
}


/* --- Vixen purchase notification: make product image fill the square --- */
.vixen-purchase-toast-image {
  padding: 0 !important;
}

.vixen-purchase-toast-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.02);
  filter: none !important;
}


/* --- Vixen purchase notification: remove bottom timer bar --- */
.vixen-purchase-toast::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}


/* --- Vixen purchase notification: better spacing between product name and time --- */
.vixen-purchase-toast-copy {
  justify-content: center !important;
  gap: 0.12rem !important;
}

.vixen-purchase-toast-title {
  line-height: 1.08 !important;
  margin-bottom: 0.08rem !important;
}

.vixen-purchase-toast-time {
  display: block !important;
  margin-top: 0.14rem !important;
  line-height: 1.22 !important;
}

/* --- Vixen home FAQ based on backup 3: isolated, uses existing component reveal --- */
.vx-faq-homeplus-section,
.vx-faq-homeplus-section * {
  box-sizing: border-box;
}

.vx-faq-homeplus-section {
  position: relative;
  padding: clamp(58px, 6vw, 94px) 0 clamp(78px, 7vw, 118px);
  overflow: hidden;
  isolation: isolate;
}

.vx-faq-homeplus-section::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 68% 46% at 50% 32%, rgba(0, 174, 255, 0.145), rgba(0, 102, 255, 0.070) 40%, transparent 76%),
    radial-gradient(ellipse 46% 42% at 22% 70%, rgba(8, 108, 255, 0.055), transparent 72%),
    radial-gradient(ellipse 46% 42% at 78% 70%, rgba(0, 174, 255, 0.050), transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(0, 12, 22, 0.18) 34%, rgba(0, 14, 28, 0.16) 66%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse 82% 70% at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.74) 67%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 82% 70% at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.74) 67%, transparent 100%);
}

.vx-faq-homeplus-section::after {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96) 0%, transparent 14%, transparent 86%, rgba(3, 7, 13, 0.96) 100%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.70) 0%, transparent 18%, transparent 82%, rgba(3, 7, 13, 0.78) 100%);
}

.vx-faq-homeplus-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}

.vx-faq-homeplus-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(26px, 3vw, 42px);
}

.vx-faq-homeplus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: #6ddcff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.01em;
  border: 1px solid rgba(47, 177, 255, 0.54);
  background: linear-gradient(180deg, rgba(0, 178, 255, 0.16), rgba(9, 72, 156, 0.13));
  box-shadow: 0 0 22px rgba(0, 174, 255, 0.14), inset 0 0 18px rgba(82, 201, 255, 0.06);
}

.vx-faq-homeplus-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1495ef;
  box-shadow: 0 0 14px rgba(94, 215, 255, 0.7);
}

.vx-faq-homeplus-title {
  margin: 18px 0 10px;
  color: #f8fbff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.vx-faq-homeplus-title span {
  background: linear-gradient(90deg, #5fe4ff 0%, #23a8ff 48%, #1177ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vx-faq-homeplus-subtitle {
  max-width: 650px;
  margin: 0;
  color: rgba(205, 218, 238, 0.66);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  font-weight: 500;
}

.vx-faq-homeplus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vx-faq-homeplus-item {
  position: relative;
  border-radius: 17px;
  border: 1px solid rgba(93, 177, 255, 0.15);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 174, 255, 0.11), transparent 36%),
    linear-gradient(180deg, rgba(10, 18, 31, 0.88), rgba(7, 11, 21, 0.86));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.vx-faq-homeplus-item:hover,
.vx-faq-homeplus-item.is-open {
  border-color: rgba(55, 205, 255, 0.34);
  box-shadow:
    0 20px 54px rgba(0, 174, 255, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vx-faq-homeplus-question {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  color: rgba(248, 251, 255, 0.94);
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.25;
  font-weight: 850;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.vx-faq-homeplus-question::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #1495ef;
  box-shadow: 0 0 14px rgba(94, 215, 255, 0.58);
}

.vx-faq-homeplus-question span {
  min-width: 0;
}

.vx-faq-homeplus-question i {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: rgba(176, 211, 238, 0.72);
  background: rgba(9, 28, 52, 0.58);
  border: 1px solid rgba(94, 215, 255, 0.10);
  font-size: 12px;
  transition:
    transform 260ms cubic-bezier(.22, .9, .25, 1),
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.vx-faq-homeplus-item.is-open .vx-faq-homeplus-question i {
  transform: rotate(180deg);
  color: #6ddcff;
  background: rgba(20, 149, 239, 0.14);
  border-color: rgba(94, 215, 255, 0.22);
}

.vx-faq-homeplus-panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition:
    height 500ms cubic-bezier(.16, 1, .3, 1),
    opacity 260ms ease;
  will-change: height, opacity;
}

.vx-faq-homeplus-item.is-open .vx-faq-homeplus-panel {
  opacity: 1;
}

.vx-faq-homeplus-answer {
  min-height: 0;
  overflow: visible;
  padding: 8px 24px 24px 45px;
  margin-top: 0;
  color: rgba(205, 218, 238, 0.72);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 540;
  max-width: 800px;
  transform: translate3d(0, -0.28rem, 0);
  opacity: 0;
  transition:
    transform 360ms cubic-bezier(.16, 1, .3, 1),
    opacity 260ms ease;
}

.vx-faq-homeplus-item.is-open .vx-faq-homeplus-answer {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.vx-faq-homeplus-answer strong {
  color: rgba(248, 251, 255, 0.92);
  font-weight: 850;
}

/* Extra stagger inside the already-tested global .component reveal system from master.njk */
.vx-faq-homeplus-section.vx-section-reveal .vx-faq-homeplus-heading,
.vx-faq-homeplus-section.vx-section-reveal .vx-faq-homeplus-item {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 760ms cubic-bezier(.16, 1, .3, 1),
    transform 760ms cubic-bezier(.16, 1, .3, 1),
    filter 760ms cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform, filter;
}

.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-heading,
.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-heading {
  transition-delay: 80ms;
}

.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-item:nth-child(1) { transition-delay: 160ms; }
.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-item:nth-child(2) { transition-delay: 235ms; }
.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-item:nth-child(3) { transition-delay: 310ms; }
.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-item:nth-child(4) { transition-delay: 385ms; }
.vx-faq-homeplus-section.vx-section-visible .vx-faq-homeplus-item:nth-child(5) { transition-delay: 460ms; }




/* --- End Vixen home FAQ based on backup 3 --- */

/* FAQ ultra smooth open/close refinement */
.vx-faq-homeplus-question i {
  transition:
    transform 220ms cubic-bezier(.22, .9, .25, 1),
    color 110ms ease,
    background 110ms ease,
    border-color 110ms ease;
}

.vx-faq-homeplus-item {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.vx-faq-homeplus-panel {
  backface-visibility: hidden;
}

.vx-faq-homeplus-item:not(.is-open) .vx-faq-homeplus-question i {
  color: rgba(176, 211, 238, 0.72);
  background: rgba(9, 28, 52, 0.58);
  border-color: rgba(94, 215, 255, 0.10);
}

/* FAQ final refinement: full-width glow + closer open answer */
.vx-faq-homeplus-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
}

.vx-faq-homeplus-section::before {
  top: -8% !important;
  right: 0 !important;
  bottom: -8% !important;
  left: 0 !important;
  width: auto !important;
  transform: none !important;
  background:
    radial-gradient(ellipse 62% 48% at 50% 32%, rgba(0, 174, 255, 0.145), rgba(0, 102, 255, 0.065) 42%, transparent 78%),
    radial-gradient(ellipse 42% 38% at 21% 72%, rgba(8, 108, 255, 0.052), transparent 74%),
    radial-gradient(ellipse 42% 38% at 79% 72%, rgba(0, 174, 255, 0.048), transparent 74%),
    linear-gradient(180deg, transparent 0%, rgba(0, 12, 22, 0.16) 32%, rgba(0, 14, 28, 0.15) 66%, transparent 100%) !important;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
  -webkit-mask-composite: source-in !important;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
  mask-composite: intersect !important;
}

.vx-faq-homeplus-section::after {
  top: -8% !important;
  right: 0 !important;
  bottom: -8% !important;
  left: 0 !important;
  width: auto !important;
  transform: none !important;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.92) 0%, transparent 11%, transparent 89%, rgba(3, 7, 13, 0.92) 100%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.62) 0%, transparent 18%, transparent 82%, rgba(3, 7, 13, 0.72) 100%) !important;
}

.vx-faq-homeplus-question {
  transition:
    min-height 430ms cubic-bezier(.16, 1, .3, 1),
    color 180ms ease !important;
}

.vx-faq-homeplus-item.is-open .vx-faq-homeplus-question {
  min-height: 56px !important;
}

.vx-faq-homeplus-answer {
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  .vx-faq-homeplus-item.is-open .vx-faq-homeplus-question {
    min-height: 54px !important;
  }

  .vx-faq-homeplus-answer {
    padding-top: 0 !important;
  }
}

/* FAQ glow final blend: full viewport, no hard side cut */
.vx-faq-homeplus-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
}

.vx-faq-homeplus-section::before {
  content: "" !important;
  position: absolute !important;
  top: -16% !important;
  right: auto !important;
  bottom: -16% !important;
  left: 50% !important;
  width: max(100vw, 1900px) !important;
  transform: translateX(-50%) !important;
  z-index: -2 !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse 68% 48% at 50% 30%, rgba(0, 174, 255, 0.135), rgba(0, 121, 255, 0.072) 38%, rgba(0, 64, 120, 0.030) 62%, transparent 88%),
    radial-gradient(ellipse 56% 56% at 17% 52%, rgba(0, 140, 255, 0.052), rgba(0, 90, 170, 0.026) 46%, transparent 82%),
    radial-gradient(ellipse 56% 56% at 83% 52%, rgba(0, 174, 255, 0.050), rgba(0, 90, 170, 0.024) 46%, transparent 82%),
    radial-gradient(ellipse 92% 62% at 50% 66%, rgba(0, 52, 92, 0.080), rgba(0, 28, 54, 0.052) 52%, transparent 92%),
    linear-gradient(180deg, transparent 0%, rgba(0, 12, 22, 0.125) 24%, rgba(0, 14, 28, 0.135) 50%, rgba(0, 12, 22, 0.105) 76%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 84%, transparent 100%) !important;
  -webkit-mask-composite: source-over !important;
  mask-composite: add !important;
}

.vx-faq-homeplus-section::after {
  content: "" !important;
  position: absolute !important;
  top: -16% !important;
  right: auto !important;
  bottom: -16% !important;
  left: 50% !important;
  width: max(100vw, 1900px) !important;
  transform: translateX(-50%) !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(3, 7, 13, 0.34) 0%, transparent 20%, transparent 80%, rgba(3, 7, 13, 0.42) 100%),
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 0%, transparent 72%, rgba(3, 7, 13, 0.18) 100%) !important;
}

/* --- Vixen Contact + Status legal style alignment --- */
.vx-custom-legal-page,
.vx-status-legal-page {
  min-height: clamp(680px, 84vh, 980px);
}

/* Contact/custom page content rendered through Visual Editor components */
.vx-custom-legal-content {
  width: min(100%, 46rem);
  margin: 0 auto;
}

.vx-custom-legal-components {
  color: rgba(180, 195, 222, 0.82);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.72;
  font-weight: 560;
}

.vx-custom-legal-components > .component {
  margin: 0 !important;
}

.vx-custom-legal-components > .component > div {
  padding-top: 0 !important;
  padding-bottom: 1.25rem !important;
}

.vx-custom-legal-components > .component:first-child > div {
  padding-top: 0 !important;
}

.vx-custom-legal-components h1,
.vx-custom-legal-components h2,
.vx-custom-legal-components h3,
.vx-custom-legal-components h4 {
  color: rgba(249, 252, 255, 0.96) !important;
  letter-spacing: -0.045em;
  line-height: 1.16;
  font-weight: 900;
}

.vx-custom-legal-components p,
.vx-custom-legal-components span.whitespace-pre-line {
  color: rgba(180, 195, 222, 0.80) !important;
  line-height: 1.72;
}

.vx-custom-legal-components a {
  color: #65d3ff !important;
  text-decoration: none !important;
}

.vx-custom-legal-components a:hover {
  color: #a7edff !important;
}

.vx-custom-legal-components [class*="bg-card"] {
  border-radius: 1rem !important;
  border: 1px solid rgba(120, 207, 255, 0.13) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 174, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.72), rgba(4, 9, 18, 0.76)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1.1rem 2.8rem rgba(0, 0, 0, 0.18) !important;
}

/* Status page */
.vx-status-legal-content {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.vx-status-list,
.vx-status-group-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.vx-status-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.vx-status-group:last-child {
  margin-bottom: 0;
}

.vx-status-group-title {
  margin: 0 0 0.1rem;
  color: rgba(249, 252, 255, 0.96);
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.vx-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.85rem;
  padding: 1.05rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(93, 177, 255, 0.15);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 174, 255, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(10, 18, 31, 0.88), rgba(7, 11, 21, 0.86));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  color: rgba(248, 251, 255, 0.94) !important;
  text-decoration: none !important;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.vx-status-card:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(55, 205, 255, 0.34);
  box-shadow:
    0 20px 54px rgba(0, 174, 255, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vx-status-card-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(248, 251, 255, 0.94);
  font-size: clamp(0.98rem, 1.14vw, 1.08rem);
  line-height: 1.25;
  font-weight: 850;
}

.vx-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  min-height: 2.2rem;
  padding: 0 0.78rem;
  border-radius: 999px;
  color: var(--vx-status-color, #65d3ff);
  border: 1px solid color-mix(in srgb, var(--vx-status-color, #65d3ff) 42%, transparent);
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--vx-status-color, #65d3ff) 18%, transparent), transparent 55%),
    rgba(7, 18, 34, 0.64);
}

.vx-status-dot {
  position: relative;
  display: inline-flex;
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 999px;
  background: var(--vx-status-color, #65d3ff);
  box-shadow: 0 0 1rem color-mix(in srgb, var(--vx-status-color, #65d3ff) 70%, transparent);
}

.vx-status-dot span {
  position: absolute;
  inset: -0.32rem;
  border-radius: inherit;
  background: var(--vx-status-color, #65d3ff);
  opacity: 0.18;
  animation: vxStatusPulse 1.7s ease-out infinite;
}

.vx-status-text {
  color: var(--vx-status-color, #65d3ff);
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 850;
}

@keyframes vxStatusPulse {
  0% {
    transform: scale(0.65);
    opacity: 0.32;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .vx-custom-legal-content,
  .vx-status-legal-content {
    width: 100%;
  }

  .vx-status-card {
    min-height: 4.6rem;
    padding: 0.95rem 1rem;
  }

  .vx-status-badge {
    padding: 0 0.68rem;
  }

  .vx-status-text {
    font-size: 0.8rem;
  }
}
/* --- End Vixen Contact + Status legal style alignment --- */

/* Vixen product detail: status pill over product image */
.vx-product-checkout-page .vx-product-media-status-pill {
  position: absolute !important;
  top: clamp(0.75rem, 1.4vw, 1.05rem) !important;
  right: clamp(0.75rem, 1.4vw, 1.05rem) !important;
  z-index: 5 !important;
  min-height: 1.8rem !important;
  padding: 0.36rem 0.76rem !important;
  border-radius: 0.48rem !important;
  color: var(--status-color, #22c55e) !important;
  background: color-mix(in srgb, var(--status-color, #22c55e) 18%, rgba(4, 18, 14, 0.88)) !important;
  border: 1px solid color-mix(in srgb, var(--status-color, #22c55e) 34%, rgba(255, 255, 255, 0.08)) !important;
  box-shadow: 0 0 24px color-mix(in srgb, var(--status-color, #22c55e) 18%, transparent), 0 14px 34px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  pointer-events: none !important;
}

.vx-product-checkout-page .vx-product-status-dot {
  background: currentColor !important;
}

@media (max-width: 640px) {
  .vx-product-checkout-page .vx-product-media-status-pill {
    top: 0.65rem !important;
    right: 0.65rem !important;
    min-height: 1.55rem !important;
    padding: 0.28rem 0.58rem !important;
    font-size: 0.72rem !important;
    border-radius: 0.42rem !important;
  }
}

/* Products page: soften card edge glow and reduce corner clipping */
.vx-products-page .vx-products-category-card {
  overflow: hidden !important;
  backface-visibility: hidden !important;
  transform: translateZ(0);
}

.vx-products-page .vx-products-category-card .edge-category-media {
  overflow: hidden !important;
  border-radius: inherit !important;
  background: rgba(3, 7, 13, 0.96) !important;
}

.vx-products-page .vx-products-category-card .edge-category-media img {
  transform: scale(1.012) translateZ(0) !important;
  backface-visibility: hidden !important;
}

.vx-products-page .vx-products-category-card:hover .edge-category-media img {
  transform: scale(1.035) translateZ(0) !important;
}

.vx-products-page .vx-products-category-card .edge-category-media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 58%, rgba(3, 7, 13, 0.20) 82%, rgba(3, 7, 13, 0.42) 100%),
    linear-gradient(90deg, rgba(3, 7, 13, 0.30), transparent 10%, transparent 90%, rgba(3, 7, 13, 0.30)),
    linear-gradient(180deg, rgba(3, 7, 13, 0.24), transparent 11%, transparent 86%, rgba(3, 7, 13, 0.36)) !important;
}

/* Products page: title clipping guard */
.vx-products-page .vx-products-hero {
  overflow: visible !important;
  padding-left: 0.18em !important;
  padding-right: 0.18em !important;
}

.vx-products-page .vx-products-title {
  display: inline-block !important;
  overflow: visible !important;
  max-width: calc(100% - 0.36em) !important;
  padding-left: 0.04em !important;
  padding-right: 0.18em !important;
}

.vx-products-page .vx-products-title span {
  display: inline-block !important;
  padding-right: 0.08em !important;
  margin-right: -0.08em !important;
}

/* Products page: prevent category cards from cutting on narrow desktop widths */
.vx-products-page,
.vx-products-shell,
.vx-products-toolbar,
.vx-products-grid.edge-category-grid.edge-category-grid--image-only {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.vx-products-page {
  overflow-x: hidden !important;
}

.vx-products-shell {
  width: min(100%, 1040px) !important;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only {
  width: 100% !important;
  min-width: 0 !important;
  justify-items: stretch !important;
}

.vx-products-grid.edge-category-grid.edge-category-grid--image-only .vx-products-category-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .vx-products-shell {
    width: min(calc(100vw - 5rem), 960px) !important;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 980px) and (min-width: 861px) {
  .vx-products-shell {
    width: min(calc(100vw - 3.2rem), 900px) !important;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only {
    gap: 0.9rem !important;
  }
}

@media (max-width: 860px) {
  .vx-products-shell {
    width: min(calc(100vw - 2rem), 820px) !important;
  }
}

/* Products page: preserve category card glow on reduced desktop widths */
.vx-products-shell,
.vx-products-grid.edge-category-grid.edge-category-grid--image-only {
  overflow: visible !important;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .vx-products-shell {
    width: min(calc(100vw - 4.6rem), 960px) !important;
    padding-inline: 0.45rem !important;
    box-sizing: border-box !important;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only {
    padding-inline: 0.35rem !important;
    box-sizing: border-box !important;
    gap: 0.98rem !important;
  }
}

@media (max-width: 980px) and (min-width: 861px) {
  .vx-products-shell {
    width: min(calc(100vw - 3.8rem), 900px) !important;
    padding-inline: 0.4rem !important;
  }

  .vx-products-grid.edge-category-grid.edge-category-grid--image-only {
    padding-inline: 0.32rem !important;
    gap: 0.92rem !important;
  }
}

/* Product page: real wrap fix for long title and price */
.vx-product-checkout-page .vx-product-summary-head,
.vx-product-summary-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content !important;
  align-items: start !important;
  column-gap: clamp(1.25rem, 2.4vw, 2.25rem) !important;
  row-gap: 0.55rem !important;
}

.vx-product-checkout-page .vx-product-title-row,
.vx-product-title-row {
  min-width: 0 !important;
  max-width: 100% !important;
  display: block !important;
}

.vx-product-checkout-page .vx-product-title-row h1,
.vx-product-title-row h1 {
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  line-height: 1.06 !important;
}

.vx-product-checkout-page .vx-product-summary-price,
.vx-product-summary-price {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  align-self: start !important;
  min-width: max-content !important;
  max-width: max-content !important;
  margin-left: 0 !important;
  white-space: nowrap !important;
  text-align: right !important;
  position: relative !important;
  z-index: 3 !important;
}

/* When the right column gets tighter, stack the price below the product name instead of colliding. */
@media (max-width: 1480px) {
  .vx-product-checkout-page .vx-product-summary-head,
  .vx-product-summary-head {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .vx-product-checkout-page .vx-product-summary-price,
  .vx-product-summary-price {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    text-align: left !important;
  }
}


/* Product page: status under title + gallery controls */
.vx-product-checkout-page .vx-product-heading-stack {
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid !important;
  gap: 0.5rem !important;
  align-content: start !important;
}

.vx-product-checkout-page .vx-product-title-status-pill {
  justify-self: start !important;
  width: fit-content !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--status-color, #22c55e) !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.vx-product-checkout-page .vx-product-title-status-pill .vx-product-status-dot {
  width: 0.42rem !important;
  height: 0.42rem !important;
  background: currentColor !important;
  box-shadow: 0 0 14px currentColor !important;
}

.vx-product-checkout-page .vx-product-media-status-pill {
  display: none !important;
}

.vx-product-checkout-page .vx-product-main-media {
  position: relative !important;
}

.vx-product-checkout-page .vx-product-image-count {
  top: 0.88rem !important;
  right: 0.88rem !important;
  z-index: 6 !important;
  min-width: 2.65rem !important;
  height: 1.65rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 0.68rem !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(7, 12, 22, 0.66) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 0.75rem 1.6rem rgba(0, 0, 0, 0.26) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.vx-product-checkout-page .vx-product-gallery-arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 6 !important;
  width: 2.8rem !important;
  height: 2.8rem !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(7, 12, 22, 0.58) !important;
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  cursor: pointer !important;
  transform: translateY(-50%) !important;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease !important;
}

.vx-product-checkout-page .vx-product-gallery-arrow--prev {
  left: 0.95rem !important;
}

.vx-product-checkout-page .vx-product-gallery-arrow--next {
  right: 0.95rem !important;
}

.vx-product-checkout-page .vx-product-gallery-arrow:hover {
  background: rgba(var(--cl-accent), 0.28) !important;
  border-color: rgba(var(--cl-accent), 0.62) !important;
  transform: translateY(-50%) scale(1.04) !important;
}

.vx-product-checkout-page .vx-product-gallery-arrow i {
  font-size: 0.92rem !important;
  line-height: 1 !important;
}

@media (max-width: 680px) {
  .vx-product-checkout-page .vx-product-gallery-arrow {
    width: 2.45rem !important;
    height: 2.45rem !important;
  }

  .vx-product-checkout-page .vx-product-gallery-arrow--prev {
    left: 0.65rem !important;
  }

  .vx-product-checkout-page .vx-product-gallery-arrow--next {
    right: 0.65rem !important;
  }

  .vx-product-checkout-page .vx-product-image-count {
    top: 0.65rem !important;
    right: 0.65rem !important;
    height: 1.5rem !important;
    min-width: 2.35rem !important;
    font-size: 0.76rem !important;
  }
}

/* Vixen purchase notification: compact restore */
.vixen-purchase-toast {
  width: min(22.5rem, calc(100vw - 1.7rem)) !important;
  min-height: 5.25rem !important;
  grid-template-columns: 3.55rem minmax(0, 1fr) 3rem !important;
  gap: 0.78rem !important;
  padding: 0.78rem 0.88rem !important;
}

.vixen-purchase-toast-copy {
  min-width: 0 !important;
  overflow: hidden !important;
}

.vixen-purchase-toast-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  line-height: 1.08 !important;
  max-width: 100% !important;
}

@media (max-width: 520px) {
  .vixen-purchase-toast {
    width: calc(100vw - 1.5rem) !important;
    grid-template-columns: 3.25rem minmax(0, 1fr) 2.7rem !important;
    gap: 0.68rem !important;
    padding: 0.72rem 0.75rem !important;
  }

  .vixen-purchase-toast-title {
    font-size: 0.96rem !important;
  }
}

/* Status page: fast card stagger */
html.vx-sections-prep .vx-status-stagger-root .vx-status-card {
  opacity: 0 !important;
  transform: translate3d(0, 16px, 0) scale(0.985) !important;
  filter: blur(10px) !important;
  pointer-events: none !important;
  will-change: opacity, transform, filter;
}

/* Product page: title/status vertical spacing polish */
.vx-product-checkout-page .vx-product-heading-stack {
  gap: 0.68rem !important;
}

.vx-product-checkout-page .vx-product-title-row {
  padding-bottom: 0.04rem !important;
}

.vx-product-checkout-page .vx-product-title-status-pill {
  margin-top: 0.08rem !important;
}
