@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #7184ff;
  --primary-light: #93a0ff;
  --accent: #8b74ff;
  --orb-rgb: 113, 132, 255;
  --accent-rgb: 139, 116, 255;
  --glow-rgb: 147, 160, 255;
  --bg-primary: #050505;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.08);
}

html,
body {
  background: var(--bg-primary) !important;
  color: var(--text-primary);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif !important;
  overflow-x: hidden;
}

#particles-js,
#snow,
.announcement,
.currency-selector,
.language-selector,
[data-component-id="categories"],
[data-component-id="stats"],
[data-component-id="features"] {
  display: none !important;
}

/* Ambient background */
.r3-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #050505;
  overflow: hidden;
}

.r3-bg-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image: radial-gradient(circle at 1px 1px, rgba(var(--glow-rgb), 0.22) 1px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at center, #000 20%, rgba(0, 0, 0, 0.5) 55%, transparent 85%);
  mask-image: radial-gradient(ellipse 65% 60% at center, #000 20%, rgba(0, 0, 0, 0.5) 55%, transparent 85%);
}

.r3-orb {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  filter: blur(44px);
  will-change: transform, opacity;
}

.r3-orb-a {
  top: 0;
  width: min(1800px, 170vw);
  height: 700px;
  transform: translate(-50%, -55%);
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(var(--orb-rgb), 0.58) 0%,
    rgba(var(--orb-rgb), 0.28) 28%,
    rgba(var(--accent-rgb), 0.12) 50%,
    transparent 78%
  );
  animation: r3-orb-a 6.5s ease-in-out infinite;
}

.r3-orb-b {
  top: 28%;
  width: 820px;
  height: 460px;
  transform: translate(-10%, 0);
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--accent-rgb), 0.28) 0%, transparent 70%);
  animation: r3-orb-b 7.5s ease-in-out infinite;
}

.r3-orb-c {
  top: 62%;
  left: 18%;
  width: 580px;
  height: 340px;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--orb-rgb), 0.22) 0%, transparent 70%);
  animation: r3-orb-c 8s ease-in-out infinite;
}

@keyframes r3-orb-a {
  0%,
  100% {
    transform: translate(-50%, -55%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-40%, -42%) scale(1.14);
    opacity: 1;
  }
}

@keyframes r3-orb-b {
  0%,
  100% {
    transform: translate(12%, 0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translate(-22%, 16%) scale(1.2);
    opacity: 1;
  }
}

@keyframes r3-orb-c {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(56%, -28px);
    opacity: 0.95;
  }
}

.r3-particles {
  position: absolute;
  inset: 0;
}

.r3-particle {
  position: absolute;
  bottom: -8px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 8px rgba(var(--orb-rgb), 0.7);
  animation: r3-float-up 12s linear infinite;
}

@keyframes r3-float-up {
  0% {
    transform: translate3d(0, 10vh, 0);
    opacity: 0;
  }
  8% {
    opacity: 0.55;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(40px, -110vh, 0);
    opacity: 0;
  }
}

.r3-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.r3-shell > .r3-main {
  flex: 1;
}

/* Traveling border shine */
.r3-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    transparent 32%,
    rgba(var(--orb-rgb), 0.35) 46%,
    rgba(var(--glow-rgb), 0.9) 50%,
    rgba(var(--orb-rgb), 0.35) 54%,
    transparent 68%,
    transparent 100%
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  animation: r3-shine 5.5s linear infinite;
}

@keyframes r3-shine {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Nav */
.r3-nav {
  padding: 22px 0 0;
}

.r3-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.r3-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.r3-brand img {
  height: 28px;
  width: auto;
}

.r3-brand-name {
  font-family: "Segoe UI Black", "Arial Black", Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.r3-links {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.r3-links a,
.r3-links button,
.r3-mobile a,
.r3-mobile button {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.r3-links a:hover,
.r3-links button:hover,
.r3-links a.is-active,
.r3-mobile a:hover,
.r3-mobile button:hover {
  color: var(--primary);
}

.r3-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.r3-pill,
.r3-btn,
.r3-buy {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  color: #fff !important;
  background: radial-gradient(
    ellipse 150% 135% at 70% 0%,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.05) 55%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, color 0.45s ease;
}

.r3-pill.r3-shine::before,
.r3-btn.r3-shine::before,
.r3-buy.r3-shine::before {
  border-radius: 7px;
}

.r3-pill:hover,
.r3-btn:hover,
.r3-buy:hover,
.r3-card:hover .r3-buy {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(var(--orb-rgb), 0.7);
  background: radial-gradient(
    ellipse 150% 135% at 70% 0%,
    rgba(var(--orb-rgb), 0.28) 0%,
    rgba(255, 255, 255, 0.06) 55%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: 0 0 20px rgba(var(--orb-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.r3-menu-btn {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.r3-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 40px 8px;
}

@media (min-width: 1024px) {
  .r3-links {
    display: flex;
  }
  .r3-menu-btn,
  .r3-mobile {
    display: none !important;
  }
}

/* Hero */
.r3-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 40px 72px;
}

.r3-display,
.r3-page-title {
  margin: 0 auto;
  width: fit-content;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 0 40px rgba(var(--orb-rgb), 0.18);
}

.r3-display-accent {
  color: var(--primary);
  text-shadow: 0 0 28px rgba(var(--orb-rgb), 0.55);
}

.r3-sub {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.r3-hero .r3-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  text-transform: none;
}

.r3-hero-stage {
  position: relative;
  width: min(800px, 92vw);
  margin: 36px auto 8px;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.r3-hero-loader {
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(var(--rx, 6deg)) rotateY(var(--ry, -12deg));
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #08080c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 22px 55px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(var(--orb-rgb), 0.12);
}

.r3-hero-loader img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  pointer-events: none;
  user-select: none;
}

.r3-cta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 28px;
}

.r3-btn {
  padding: 15px 40px;
  font-size: 14px;
}

/* Page titles */
.r3-page-head {
  text-align: center;
  padding: 72px 20px 40px;
}

.r3-page-head .r3-page-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.05em;
}

.r3-page-head .r3-sub {
  max-width: 500px;
}

/* Cards */
.r3-products {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}

.r3-products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.r3-products-grid > * {
  flex: 0 1 350px;
  max-width: 350px;
  width: 100%;
}

.r3-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s ease,
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.r3-card:hover {
  transform: translateY(-14px) scale(1.035);
  border-color: rgba(var(--orb-rgb), 0.45);
  box-shadow:
    0 28px 60px -16px rgba(0, 0, 0, 0.7),
    0 0 56px rgba(var(--orb-rgb), 0.28);
}

.r3-card-art {
  position: relative;
  flex: 1;
  min-height: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(var(--orb-rgb), 0.16), transparent 58%),
    #07090f;
  transition: background 0.55s ease;
  overflow: hidden;
}

.r3-card-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(7, 9, 15, 0.72), transparent);
  pointer-events: none;
}

.r3-card:hover .r3-card-art {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(var(--orb-rgb), 0.34), transparent 60%),
    #07090f;
}

.r3-card-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  transition: color 0.45s ease, letter-spacing 0.45s ease, text-shadow 0.45s ease;
}

.r3-card:hover .r3-card-label {
  color: #fff;
  letter-spacing: 0.2em;
  text-shadow: 0 0 16px rgba(var(--orb-rgb), 0.55);
}

.r3-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--orb-rgb), 0.55);
  background: rgba(0, 0, 0, 0.45);
  color: #8bc0ff;
  backdrop-filter: blur(6px);
}

.r3-trail {
  position: absolute;
  inset: 18px 18px 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.r3-card:hover .r3-trail {
  transform: scale(1.1);
  filter: drop-shadow(0 0 22px rgba(var(--orb-rgb), 0.7));
}

.r3-trail-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.r3-key {
  fill: rgba(8, 12, 20, 0.7);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.2;
  transition: stroke 0.45s ease, fill 0.45s ease;
}

.r3-card:hover .r3-key {
  stroke: rgba(var(--orb-rgb), 0.7);
  fill: rgba(var(--orb-rgb), 0.08);
}

.r3-key-label {
  fill: rgba(255, 255, 255, 0.55);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-anchor: middle;
  dominant-baseline: middle;
  transition: fill 0.45s ease;
}

.r3-card:hover .r3-key-label {
  fill: #fff;
}

.r3-trail-soft {
  fill: none;
  stroke: rgba(var(--orb-rgb), 0.5);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(7px);
}

.r3-trail-line {
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 8;
  animation: r3-dash 7s linear infinite;
}

.r3-trail-core {
  fill: none;
  stroke: #d7ecff;
  stroke-width: 1.8;
  stroke-linecap: round;
}

@keyframes r3-dash {
  to {
    stroke-dashoffset: -180;
  }
}

.r3-dot {
  fill: #fff;
}

.r3-dot-ring {
  fill: none;
  stroke: rgba(var(--orb-rgb), 0.7);
  stroke-width: 1;
}

.r3-dot-pulse {
  fill: rgba(var(--orb-rgb), 0.35);
  animation: r3-pulse 2.4s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes r3-pulse {
  0% {
    transform: scale(0.4);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.r3-runner {
  fill: #fff;
  filter: url(#r3Neon);
}

.r3-card-headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  text-align: center;
  pointer-events: none;
}

.r3-card-headline strong {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 0.55s ease, text-shadow 0.55s ease, color 0.45s ease;
}

.r3-card:hover .r3-card-headline strong {
  transform: translateY(-4px);
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 0 22px rgba(var(--orb-rgb), 0.65);
}

.r3-card-headline span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.r3-card:hover .r3-card-headline span {
  color: rgba(186, 230, 253, 0.9);
  transform: translateY(-2px);
}

.r3-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(8, 10, 16, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.r3-card-info h3 {
  margin: 0 0 3px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.45s ease, text-shadow 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.r3-card:hover .r3-card-info h3 {
  color: #fff;
  transform: translateX(2px);
  text-shadow: 0 0 16px rgba(var(--orb-rgb), 0.45);
}

.r3-card-info p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.45s ease;
}

.r3-card:hover .r3-card-info p {
  color: rgba(255, 255, 255, 0.72);
}

.r3-card-info p span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.r3-buy {
  padding: 11px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.r3-card:hover .r3-buy {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(var(--orb-rgb), 0.7);
  background: radial-gradient(
    ellipse 150% 135% at 70% 0%,
    rgba(var(--orb-rgb), 0.28) 0%,
    rgba(255, 255, 255, 0.06) 55%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: 0 0 20px rgba(var(--orb-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Footer */
.r3-footer {
  margin-top: auto;
  padding: 48px 40px 32px;
  border-top: 1px solid var(--border);
  background: transparent;
}

.r3-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.r3-footer a,
.r3-footer p {
  color: var(--text-tertiary);
  font-size: 13px;
}

.r3-footer a:hover {
  color: #fff;
}

.r3-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Product / cart pages */
.aspect-product-page-image {
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--orb-rgb), 0.2), transparent 62%),
    #0b0e17 !important;
}

.aspect-product-page-image img {
  object-fit: contain !important;
  padding: 2.5rem;
}

.component .bg-card,
.component .bg-card\/75,
.component .bg-background\/35 {
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 14px;
}

.component .border,
.component .border-white\/5,
.component .border-accent-500 {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.component input,
.component select,
.component textarea,
#app button,
#app a[href*="/cart"] {
  border-radius: 7px !important;
}

@media (max-width: 1023px) {
  .r3-nav-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .r3-hero {
    padding: 110px 20px 60px;
  }

  .r3-display {
    font-size: 3rem;
    letter-spacing: -0.05em;
  }

  .r3-card {
    height: 420px;
  }

  .r3-hero-stage {
    perspective: none;
  }

  .r3-hero-loader {
    transform: none !important;
    will-change: auto;
  }
}