:root {
  --color-primary: #ee87e0;
  --color-primary-soft: rgba(238, 135, 224, 0.2);
  --color-theme: #f659da;
  --secondary-color: #f659da;
  --color-theme-dark: color-mix(in srgb, var(--color-theme) 75%, #1b0f39 25%);
  --color-secondary: var(--color-theme);
  --color-secondary-light: color-mix(in srgb, var(--color-secondary) 85%, #ffffff 15%);
  --color-secondary-dark: color-mix(in srgb, var(--color-secondary) 75%, #1f0f34 25%);
  --color-bg: #0d0d0d;
  --color-text: #e2e8f0;
  --color-border: hsla(0, 0%, 100%, 0.15);
  --dot-background: radial-gradient(circle, rgba(243, 92, 255, 0.2) 1px, transparent 1px);
  --brand-gradient: linear-gradient(90deg, var(--color-theme), var(--color-theme-dark));
  --brand-gradient-bright: linear-gradient(
    90deg,
    var(--color-theme),
    color-mix(in srgb, var(--color-theme) 55%, var(--color-primary) 45%)
  );

  --font-family-base: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --text-size-sm: 0.875rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;

  --page-gutter: 16px;
  --section-inline: max(calc((100vw - 1300px) / 2), 5px);

  --page-width: 100%;
  --banner-radius: 0;
  --banner-gap: var(--space-2);

  --container-max-width: 1200px;
  --status-banner-height: 0px;
}

html {
  scroll-behavior: auto;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
}

body {
  font-family: var(--font-family-base);
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  min-height: 100vh;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.page {
  width: var(--page-width);
}

.hero-section {
  min-height: calc(100vh - var(--status-banner-height, 0px));
  touch-action: pan-y;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

.hero-section .absolute.inset-0,
.hero-section .absolute.inset-0 canvas,
.hero-section .absolute.inset-0 svg {
  pointer-events: none;
}

#background-root {
  pointer-events: none;
}

.container {
  width: min(var(--container-max-width), 100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}

.top-nav {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.hero-nav {
  position: absolute;
}

.hero-nav__highlight {
  pointer-events: none;
  background: linear-gradient(#ffffff, #ffffff) padding-box, var(--brand-gradient-bright) border-box;
  border: 2px solid transparent;
  transition: left 0.22s ease, top 0.22s ease, width 0.22s ease, height 0.22s ease, opacity 0.16s ease;
  will-change: left, top, width, height, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .hero-nav__highlight {
    transition-duration: 0.01ms;
  }
}

.hero-space-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-space-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.snow-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.snow-layer.is-active {
  opacity: 1;
}
.snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#feedback,
#feedbacks,
#features-grid,
#products,
#faq,
.site-inline,
footer > .container {
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

.footer-inner {
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  padding: 48px 32px;
  box-sizing: border-box;
}

.site-inline {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-inline {
  padding-top: 10px;
  padding-bottom: 10px;
}

footer > .container {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 767px) {
  footer > .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer-inner {
    padding: 32px 32px;
  }
}

.feedback-grid {
    grid-template-columns: repeat(4, 315px);
    column-gap: 10px;
    row-gap: 10px;
  }

.feedback-grid-wrapper {
  overflow: hidden;
  position: relative;
  justify-items: center;
}

@media (max-width: 1305px) { /* Large screens */
  .feedback-grid {
    grid-template-columns: repeat(3, 315px);
  }
}

@media (max-width: 980px) { /* Vertical tablets */
  .feedback-grid {
    grid-template-columns: repeat(2, 315px);
  }
}

@media (max-width: 660px) { /* Mobile phones */
  .feedback-grid {
    grid-template-columns: repeat(1, 315px);
  }
}

.feedback-grid-overlay {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  position: absolute;
  inset: 0;
}

.feedback-grid-overlay > .bg-background {
  pointer-events: none;
}

.feedback-grid-overlay__button-row {
  pointer-events: auto;
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(360px, 78vw);
  display: flex;
  justify-content: center;
}

.feedback-grid-overlay__button {
  pointer-events: auto;
  width: 100%;
  border-radius: 999px;
  text-align: center;
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
}

.feedback-card {
  position: relative;
  width: 100%;
  padding: 1.25rem 0.75rem;
  background: linear-gradient(180deg, #171717 0%, #0a0a0f 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s ease, transform 0.25s ease;
  isolation: isolate;
}

.feedback-card:hover {
  transform: translateY(-2px);
}

.feedback-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.feedback-card__stars {
  display: flex;
  gap: 0.25rem;
  color: var(--color-theme);
}

.feedback-card__star {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feedback-card__star-filled {
  fill: currentColor;
  stroke: currentColor;
}

.feedback-card__star-empty {
  fill: #2f2f35;
  stroke: #2f2f35;
}

.feature-card__heading,
.feature-card__text {
  padding-inline: 40px;
  width: 100%;
  box-sizing: border-box;
}

.feature-card__icon {
  padding-inline: 40px;
  box-sizing: border-box;
}

.feature-card__text {
  width: 100%;
  max-width: none !important;
  box-sizing: border-box;
  display: block;
}

/* Force feature descriptions to use full card width even if utility classes linger */
.features-grid .feature-card p {
  padding-inline: 40px !important;
  max-width: none !important;
  width: 100%;
  box-sizing: border-box;
}


.feedback-card__date {
  font-size: 0.875rem;
  color: #d4d4d8;
  white-space: nowrap;
}

.feedback-card__text {
  margin: 1rem 0 0;
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

.feedback-card__header,
.feedback-card__text {
  position: relative;
  z-index: 1;
}

.feedback-card__overlay {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  width: calc(100% + 10rem);
  height: 110%;
  transform: translateX(-50%);
  pointer-events: none;
  mask-image: linear-gradient(white 70%, transparent);
  -webkit-mask-image: linear-gradient(white 70%, transparent);
  z-index: 0;
}

.feedback-card__overlay-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feedback-card__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(39, 39, 42, 0.35), rgba(24, 24, 27, 0.35));
  opacity: 1;
  mask-image: radial-gradient(farthest-side at top, rgba(255, 255, 255, 0.85), transparent 70%);
  -webkit-mask-image: radial-gradient(farthest-side at top, rgba(255, 255, 255, 0.85), transparent 70%);
}

.feedback-card__overlay-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.1);
}

.support-cta-btn {
  background-color: #262626;
  color: #ffffff;
}

.support-cta-btn:hover {
  background-color: #303030;
}

@media (max-width: 640px) {
  footer .container,
  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-inline {
    padding-left: 0;
    padding-right: 0;
  }
}

.middle.flex.items-center.flex-col {
  margin: 0;
  padding: 0;
}

.features-grid {
  position: relative;
  --features-grid-pad: var(--section-inline);
  padding-inline: var(--features-grid-pad);
  box-sizing: border-box;
}

.features-grid::before {
  content: "";
  position: absolute;
  left: var(--features-grid-pad, 0);
  right: var(--features-grid-pad, 0);
  top: 2.5rem;
  bottom: 2.5rem;
  pointer-events: none;
  background-repeat: no-repeat;
}

.features-grid > .feature-card {
  border-color: var(--color-border);
  border-style: solid;
  border-width: 0;
}

@media (min-width: 768px) {
  .features-grid::before {
    background-image:
      linear-gradient(var(--color-border), var(--color-border)),
      linear-gradient(var(--color-border), var(--color-border)),
      linear-gradient(var(--color-border), var(--color-border));
    background-size: 1px 100%, 1px 100%, 1px 100%;
    background-repeat: no-repeat;
    background-position:
      0 0,
      50% 0,
      100% 0;
  }

  .features-grid > .feature-card {
    border-top: 1px solid var(--color-border);
  }

  .features-grid > .feature-card:nth-child(-n + 2) {
    border-top: 0;
  }
}

@media (min-width: 1024px) {
  .features-grid::before {
    background-image:
      linear-gradient(var(--color-border), var(--color-border)),
      linear-gradient(var(--color-border), var(--color-border)),
      linear-gradient(var(--color-border), var(--color-border)),
      linear-gradient(var(--color-border), var(--color-border));
    background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%;
    background-position:
      0 0,
      calc(100% / 3) 0,
      calc(2 * (100% / 3)) 0,
      100% 0;
  }

  .features-grid > .feature-card:nth-child(-n + 3) {
    border-top: 0;
  }
}

@media (min-width: 1024px) {
  .top-nav {
    padding-left: 0;
    padding-right: 0;
  }
}

.status-link {
  text-decoration: none;
  display: block;
  color: inherit;
  outline: none;
}

.status-banner {
  height: auto;
  min-height: auto;
  border: none;
  border-radius: var(--banner-radius);
  gap: var(--banner-gap);
  width: 100%;
}

.status-banner svg {
  flex-shrink: 0;
}

.text-primary {
  color: var(--color-primary);
}

.bg-primary\/20 {
  background-color: var(--color-primary-soft);
}

.bg-primary {
  background-color: var(--color-primary);
}

.promo-marquee {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.2rem 0;
}

.promo-marquee__rail {
  position: relative;
  overflow: hidden;
  height: 24px;
}

.promo-marquee__track {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  will-change: transform;
}

.promo-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-right: 3rem;
  padding: 0 1rem;
  white-space: nowrap;
}

.promo-marquee__text {
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.promo-marquee__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.text-fuchsia-500 {
  color: var(--color-secondary) !important;
}

.bg-background {
  background-color: var(--color-bg);
}

.bg-background\/10 {
  background-color: rgba(2, 6, 23, 0.1);
}

.bg-background\/50 {
  background-color: rgba(2, 6, 23, 0.5);
}

.border-border {
  border-color: var(--color-border);
}

.border-primary {
  border-color: var(--color-secondary);
}


.PoseidonFont {
  font-family: "Poseidon", var(--font-family-base);
}

.from-\[\#e325f5\] {
  --tw-gradient-from: var(--color-secondary) !important;
  --tw-gradient-to: var(--color-secondary-light) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.to-\[\#a73cde\] {
  --tw-gradient-to: var(--color-secondary-dark) !important;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: var(--text-size-sm);
}

.py-2 {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.px-4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mr-2 {
  margin-right: var(--space-2);
}

.animate-meteor {
  animation: meteor calc(var(--duration, 10s) / 1.75 / 0.75) linear var(--delay, 0s) infinite;
  transform-origin: top center;
  will-change: transform;
}

@keyframes meteor {
  0% {
    transform: translate3d(-50%, -30%, 0);
  }
  100% {
    transform: translate3d(-50%, 120%, 0);
  }
}

.\[--duration\:11s\] {
  --duration: 11s;
}

.\[--duration\:7s\] {
  --duration: 7s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-meteor {
    animation: none;
  }
}

.about-title {
  position: relative;
  display: inline-block;
}

.about-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-star {
  position: absolute;
  width: var(--star-size, 24px);
  height: var(--star-size, 24px);
  top: 50%;
  left: 50%;
  fill: #fe8bbb;
  opacity: 0;
  filter: drop-shadow(0 0 20px rgba(248, 42, 255, 0.35));
  transform: translate(-50%, -50%) rotate(100deg) scale(0);
  transform-origin: center;
  transition: top 0.8s ease, left 0.8s ease;
}
.brand_gradient {
  background-image: var(--brand-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.bullet-dot {
  background-image: var(--brand-gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.faq-list {
  width: 100%;
  margin-inline: auto;
  gap: 0.1rem;
}

#faq .middle {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

.faq-item {
  width: 100%;
  border: none;
  border-radius: 1rem;
  padding: 1.5rem;
  background: transparent;
}

.faq-trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 4px;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #ffffff;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

.faq-answer.is-open {
  margin-top: 0.75rem;
  opacity: 1;
}

.product-card {
  position: relative;
  overflow: hidden;
  width: clamp(350px, 32vw, 400px);
  max-width: 400px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}

.product-card__image-wrapper {
  width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  flex: 0 0 200px;
  overflow: hidden;
  position: relative;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card__image-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.product-card__image-button:focus-visible {
  outline: 2px solid rgba(227, 37, 245, 0.8);
  outline-offset: 2px;
}

.product-card__image-button::before {
  content: none !important;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.group\/feature:is(:hover, :focus-within)
  .group-hover\/feature\:bg-primary {
  background-color: var(--color-secondary) !important;
}

/* Purchase CTA hover interactions */
button[data-paylixecommerce-group],
button[data-paylixecommerce-product] {
  --purchase-motion-duration: 450ms;
  --purchase-motion-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --purchase-arrow-offset: -65%;
  --purchase-text-exit: 125%;
  --purchase-gradient-scale: 0.35;
  position: relative;
  isolation: isolate;
  border-color: var(--color-secondary) !important;
}

button[data-paylixecommerce-group]::before,
button[data-paylixecommerce-product]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.45rem;
  background-image: linear-gradient(to top right, var(--color-secondary), var(--color-primary));
  transform-origin: left center;
  transform: translate3d(var(--purchase-arrow-offset), 0, 0) scaleX(var(--purchase-gradient-scale));
  opacity: 1;
  transition:
    transform var(--purchase-motion-duration) var(--purchase-motion-ease);
  z-index: 0;
}

button[data-paylixecommerce-group]:is(:hover, :focus-visible)::before,
button[data-paylixecommerce-product]:is(:hover, :focus-visible)::before {
  transform: translate3d(0, 0, 0) scaleX(1);
}

button[data-paylixecommerce-group] > span:nth-child(1),
button[data-paylixecommerce-group] > span:nth-child(2),
button[data-paylixecommerce-group] > span:nth-child(3),
button[data-paylixecommerce-product] > span:nth-child(1),
button[data-paylixecommerce-product] > span:nth-child(2),
button[data-paylixecommerce-product] > span:nth-child(3) {
  z-index: 1;
}

button[data-paylixecommerce-group] > span:nth-child(1),
button[data-paylixecommerce-product] > span:nth-child(1) {
  background-color: transparent !important;
  transform: translate3d(var(--purchase-arrow-offset), 0, 0) !important;
  transition: transform var(--purchase-motion-duration) var(--purchase-motion-ease);
}

button[data-paylixecommerce-group]:is(:hover, :focus-visible) > span:nth-child(1),
button[data-paylixecommerce-product]:is(:hover, :focus-visible) > span:nth-child(1) {
  transform: translate3d(0, 0, 0) !important;
}

button[data-paylixecommerce-group] > span:nth-child(1) svg,
button[data-paylixecommerce-product] > span:nth-child(1) svg {
  transform: translateX(-30%);
  transition: transform var(--purchase-motion-duration) var(--purchase-motion-ease);
}

button[data-paylixecommerce-group]:is(:hover, :focus-visible) > span:nth-child(1) svg,
button[data-paylixecommerce-product]:is(:hover, :focus-visible) > span:nth-child(1) svg {
  transform: translateX(0);
}

button[data-paylixecommerce-group] > span:nth-child(2),
button[data-paylixecommerce-product] > span:nth-child(2) {
  transform: translate3d(0, 0, 0) !important;
  transition: transform var(--purchase-motion-duration) var(--purchase-motion-ease);
}

button[data-paylixecommerce-group]:is(:hover, :focus-visible) > span:nth-child(2),
button[data-paylixecommerce-product]:is(:hover, :focus-visible) > span:nth-child(2) {
  transform: translate3d(var(--purchase-text-exit), 0, 0) !important;
}

@media (prefers-reduced-motion: reduce) {
  button[data-paylixecommerce-group]::before,
  button[data-paylixecommerce-group] > span:nth-child(1),
  button[data-paylixecommerce-group] > span:nth-child(1) svg,
  button[data-paylixecommerce-group] > span:nth-child(2) {
    transition-duration: 0.01ms;
  }
}

.product-card__frame {
  border-color: #202020 !important;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.75rem !important;
  display: flex;
  flex-direction: column;
}

.category-bar {
  width: 100%;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-bar__scroll {
  width: 100%;
  overflow-x: auto;
  padding: 0.25rem 0.35rem;
  display: flex;
  justify-content: center;
}

.category-bar__scroll::-webkit-scrollbar {
  display: none;
}

.category-bar__inner {
  position: relative;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(16, 16, 18, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  min-width: fit-content;
}

.category-bar__highlight {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease, width 0.35s ease, height 0.35s ease, opacity 0.2s ease;
  opacity: 0;
  z-index: 0;
}

.category-bar__button {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: #e9e9ec;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.25s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.category-bar__button:hover,
.category-bar__button:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  outline: none;
}

.category-bar__button.is-active {
  color: #0b0b0d;
}

.category-bar__status {
  font-size: 0.9rem;
  color: #a1a1aa;
  padding-left: 0.75rem;
}

.category-bar__status.is-muted {
  color: #71717a;
}

@media (max-width: 820px) {
  .category-bar__inner {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}

.products-grid {
  display: grid;
  column-gap: clamp(8px, 2vw, 16px);
  row-gap: clamp(8px, 2vw, 16px);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--section-inline, var(--page-gutter));
  grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
  justify-content: center;
  justify-items: center;
  place-content: center;
}

@media (max-width: 1150px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
  }
}

@media (max-width: 700px) {
  .container {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .products-grid {
    padding-inline: var(--section-inline, var(--page-gutter));
    margin-inline: 0;
    max-width: none;
    width: 100%;
    justify-items: center;
  }

  .groups-block {
    padding-inline: var(--section-inline, var(--page-gutter));
    margin: 0;
    max-width: none;
    width: 100%;
    justify-items: center;
  }

  [data-group-grid] {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  #feedback,
  #feedbacks,
  #features-grid,
  #products,
  #faq,
  .site-inline,
  footer > .container {
    padding-inline: var(--page-gutter);
  }
}

#aboutus {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  box-sizing: border-box;
  padding-left: 16px;
  padding-right: 16px;
  overflow-x: hidden;
}

.aboutus__inner {
  width: 100%;
  max-width: 1250px;
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.groups-block {
  width: 100%;
  max-width: none;
  margin: 0;
}

.group-price-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.group-price-label::after {
  content: " " attr(data-price);
  background: var(--brand-gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.is-stashed {
  display: none !important; /* Remove hidden cards from layout so grids reflow when filtering. */
}

.text-theme {
  color: var(--color-secondary);
}

.text-theme svg {
  color: inherit;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 16, 0);
  backdrop-filter: blur(12px);
  transition: opacity 0.3s ease, background-color 0.3s ease;
  opacity: 0;
}

.mobile-menu.open .mobile-menu__overlay {
  opacity: 1;
  background: rgba(5, 6, 16, 0.75);
}

.mobile-menu__panel {
  position: relative;
  width: 75%;
  max-width: 320px;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.98);
  border-left: 1px solid var(--color-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.45);
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.8;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.375rem;
  transition: opacity 0.2s ease;
}

.mobile-menu__close:hover {
  opacity: 1;
}

.mobile-menu__panel a {
  text-decoration: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.meteor-lines {
  gap: 0.5rem;
}

@media (max-width: 1049px) {
  .meteor-lines {
    gap: 20px;
  }
}
.cursor-highlight-layer {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  --cursor-x: 50%;
  --cursor-y: 50%;
  transition: opacity 0.3s ease;
  background-color: transparent;
  background-image: radial-gradient(circle, rgba(248, 42, 255, 0.9) 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: 9px 9px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(248, 42, 255, 0.35));
  -webkit-mask-image: radial-gradient(70px at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  mask-image: radial-gradient(80px at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(0, 0, 0, 0.95) 0%, transparent 100%);
}

.cursor-highlight-layer.is-visible {
  opacity: 1;
}

.cursor-highlight-layer {
  touch-action: none;
}

@media (pointer: coarse) {
  .cursor-highlight-layer {
    display: none;
  }
}

.reveal-item {
  opacity: 1;
  transform: none;
  animation: none !important;
}

.reveal-visible {
  animation: none !important;
}

.checkout-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.checkout-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-sheet__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.9), rgba(8, 10, 16, 0.95));
  backdrop-filter: blur(10px);
}

.checkout-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 32px));
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(18, 18, 22, 0.92));
  border: 1px solid #1f1f20;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.02);
  color: #e2e8f0;
}

@media (max-width: 640px) {
  .checkout-sheet__panel {
    padding: 1.25rem;
  }
}

.checkout-minimal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-minimal__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-step {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}

.checkout-step.is-active {
  display: flex;
}

.checkout-step__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .checkout-step__actions {
    flex-direction: row;
  }
  .checkout-step__actions button {
    flex: 1;
  }
}

.checkout-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  background: none;
  border: none;
  color: #cbd5f5;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkout-back svg {
  width: 16px;
  height: 16px;
}

.checkout-label {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: #94a3b8;
  margin: 0 0 0.35rem;
}

.checkout-title {
  margin: 0;
  font-size: 1.5rem;
  color: #f8fafc;
}

.checkout-subtitle {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.checkout-summary-card,
.checkout-payment-section,
.checkout-card {
  border: 1px solid #272727;
  border-radius: 0.75rem;
  padding: 1rem;
  background: rgba(12, 13, 25, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-product-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.checkout-product-card__art {
  width: 120px;
  height: 75px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #272727;
  background: #111;
  flex-shrink: 0;
}

.checkout-product-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-product-card__body {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.checkout-product-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}

.checkout-product-card__meta,
.checkout-product-card__option,
.checkout-product-card__note {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.85rem;
}

.checkout-product-card__aside {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
  min-width: 110px;
}

.checkout-product-card__price {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

.checkout-divider {
  border: 0;
  height: 1px;
  background: #272727;
}

.checkout-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 0.6rem;
  border: 1px solid #272727;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.checkout-quantity__button {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1rem;
  cursor: not-allowed;
}

.checkout-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.checkout-summary-line,
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
}

.checkout-summary-total__value {
  font-weight: 600;
}

.checkout-coupon {
  display: flex;
  align-items: center;
  border-radius: 0.6rem;
  border: 1px solid #272727;
  background: #0c0d19;
  padding: 0.25rem 0.5rem;
  gap: 0.4rem;
}

.checkout-coupon input {
  flex: 1;
  background: none;
  border: none;
  font-size: 0.9rem;
  color: #f8fafc;
  outline: none;
}

.checkout-coupon button {
  border: none;
  background: transparent;
  color: #cbd5f5;
  cursor: pointer;
}

.checkout-payment-section__title,
.checkout-payment-category__title,
.checkout-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f8fafc;
}

.checkout-payment-category {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.checkout-payment-category__desc {
  margin: 0;
  color: #9ca3af;
  font-size: 0.85rem;
}

.checkout-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
}

.method-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #272727;
  background: transparent;
  color: #f8fafc;
  font-size: 0.9rem;
}

.method-chip__icon {
  width: 28px;
  height: 28px;
  border-radius: 0.4rem;
  background: #1a1c25;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-chip__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.method-chip--ghost {
  grid-column: 1 / -1;
  justify-content: center;
}

.checkout-method-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #272727;
  padding: 0.75rem 0.9rem;
  background: transparent;
  color: #f8fafc;
}

.payment-option__logos {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.payment-option__logo img {
  width: 30px;
  height: 18px;
  object-fit: contain;
}

.payment-option__text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.payment-option__label {
  font-weight: 600;
}

.payment-option__helper {
  color: #a1a1aa;
  font-size: 0.8rem;
}

.checkout-card-element {
  padding: 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #272727;
  background: #0c0d19;
  min-height: 110px;
}

.checkout-form__message {
  min-height: 18px;
  font-size: 0.85rem;
  color: #a1a1aa;
}

.checkout-form__message[data-tone="error"] {
  color: #f87171;
}

.checkout-form__message[data-tone="success"] {
  color: #34d399;
}

.checkout-cta,
.checkout-submit {
  width: 100%;
  border: 1px solid #272727;
  border-radius: 0.65rem;
  background: #1a1c25;
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
}

.checkout-cta--ghost {
  background: transparent;
}

.checkout-cta svg,
.checkout-submit svg {
  color: inherit;
}

.checkout-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 16, 0.7);
  backdrop-filter: blur(8px);
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 32px));
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(18, 18, 22, 0.92));
  border: 1px solid #1f1f20;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.product-option {
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(13, 12, 20, 0.85), rgba(7, 6, 15, 0.9));
  border: 1px solid rgba(227, 37, 245, 0.14);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-option:hover,
.product-option:focus-within {
  border-color: rgba(227, 37, 245, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.product-modal__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.product-modal__close:hover {
  opacity: 1;
}

.product-option input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
}

body.modal-open {
  overflow: hidden;
}
