
:root{
  --bg: rgba(5,5,8,0.6);
  --grid-indigo: rgba(99,102,241,0.25);
  --grid-fuchsia: rgba(147,51,234,0.25);
  --ink: #e6e6ff;
  --muted: #a6a6bf;
  --accent: #8b5cf6;
  --accent2: #60a5fa;
  --card: rgba(0,0,0,0.25);
  --border: rgba(255,255,255,0.12);
  --glow: 0 0 24px rgba(139,92,246,0.45), 0 0 48px rgba(96,165,250,0.25);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, 'Apple Color Emoji','Segoe UI Emoji';}
.wrap{max-width:1150px;margin:0 auto;padding:0 20px}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Animated grid background */
.bg-grid {
  position: fixed; inset: 0; z-index: -2;
  background:
    linear-gradient(rgba(59,130,246,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.18) 1px, transparent 1px),
    radial-gradient(ellipse at bottom, #000 0%, #020411 100%);
  background-blend-mode: screen;
  background-size: 60px 60px, 60px 60px, auto;
  background-position: center;
  /*animation: pulse 6s ease-in-out infinite;*/
}

.bg-grid::after{
  content:''; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background: radial-gradient(60% 60% at 50% 30%,
    rgba(99,102,241,0.25) 0%,
    rgba(147,51,234,0.18) 35%,
    rgba(0,0,0,0.0) 70%);
  mix-blend-mode:screen;
}
@keyframes pulse{
  0%,100%{opacity:0.6;}
  50%{opacity:1;}
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 10px;
}

.site-header .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header .brand {
  font-family: 'Press Start 2P', monospace;
  font-size: 20px;
  letter-spacing: 1px;
  margin-top: 12px;
  text-shadow: 0 0 6px #8b5cf6, 0 0 12px #60a5fa;
}

.site-header .space-animation.asteroids.small {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 350px;
  height: 80px;
  background: transparent;
  position: relative;
}

.site-header .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-bottom: 8px;
}


.navtext{
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 1px;
  font-size: 16px;
  display: inline-block;
  padding: 18px 0;
  text-shadow: 0 0 6px #8b5cf6, 0 0 12px #60a5fa;
}
.brand{
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 1px;
  font-size: 14px;
  display:inline-block;
  padding: 18px 0;
  text-shadow: 0 0 6px #8b5cf6, 0 0 12px #60a5fa;
}
.nav{display:flex; gap:14px; align-items:center; justify-content:flex-end}
.nav a{padding:10px 12px; border-radius:12px; border:1px solid transparent; font-size:16px; color:#d6d6ff}
.nav a:hover{border-color:var(--border); background:rgba(255,255,255,0.06); box-shadow: var(--glow)}

.hero{
  display:grid; grid-template-columns: 1.2fr 1fr; gap:22px;
  margin:28px 0 10px;
  padding:26px;
  border:1px solid var(--border);
  border-radius:20px;
  background: var(--card);
  box-shadow: var(--glow);
}
.hero h1{
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(18px, 2.6vw, 28px);
  line-height:1.5;
  letter-spacing:1px;
}
.hero p{color: var(--muted); margin-top:10px; font-size:15px; line-height:1.7}
.btn{
  display:inline-block; padding:12px 16px; margin-right:10px;
  border:1px solid var(--border); border-radius:14px;
  background: linear-gradient( to bottom right, rgba(139,92,246,0.18), rgba(96,165,250,0.16));
  box-shadow: var(--glow);
  font-size:14px;
}
.btn:hover{transform: translateY(-1px);}
.btn.primary{background: linear-gradient( to bottom right, rgba(139,92,246,0.28), rgba(96,165,250,0.26));}

.cards{display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:20px; margin:26px 0}
.card{
  border:1px solid var(--border); border-radius:18px; background:var(--card); overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease; box-shadow: var(--glow);
}
.card:hover{ transform: translateY(-2px) }
.card .media{aspect-ratio:16/10; background:linear-gradient(#0000, #0007)}
.card .pad{padding:16px}
.card .eyebrow{color:#b6b6e6; font-size:12px; letter-spacing:.1em}
.card h3{margin:6px 0 8px; font-size:18px}
.card ul{margin:8px 0 0; padding-left:16px; color:var(--muted); font-size:14px; line-height:1.6}
.card li{margin:4px 0}

.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:26px}
@media (max-width: 920px){
  .hero{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
}

.kicker{color:#a6a6ff; font-size:12px; letter-spacing:.1em; text-transform:uppercase}
.h1-glow{font-family:'Press Start 2P', monospace; text-shadow: 0 0 10px #8b5cf6, 0 0 20px #60a5fa}
.section{margin:36px 0 10px}
.list{color:var(--muted); font-size:14px; line-height:1.8; padding-left:18px}
.price{color:#cbd5ff; font-weight:700}

.gallery{display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px}
.gallery .ph{aspect-ratio:4/3; border:1px solid var(--border); border-radius:14px; background:#0b0b13; display:flex; align-items:center; justify-content:center; color:#6770a6}
.symbols{opacity:.3; font-size:20px}
.symbols span{margin-right:6px}

main.wrap{
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(96,165,250,0.1);
}

.site-footer{margin:30px 0 50px; color:#a8b0e6}
.site-footer .wrap{border-top:1px solid var(--border); padding-top:16px}

/* ==== PACMAN STRIP ==== */
.space-animation {
  height:120px;
  overflow:hidden;
  position:relative;
  background:radial-gradient(ellipse at center,#020212 0%,#000 100%);
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.space-animation.pacman .track {
  position:absolute;
  width:200%;
  height:100%;
  animation: scroll-track 12s linear infinite;
  display:flex;
  align-items:center;
}
@keyframes scroll-track {
  0% {transform:translateX(0);}
  100% {transform:translateX(-50%);}
}

.pacman {
  width:0; height:0;
  border-right:25px solid transparent;
  border-top:25px solid #ffeb3b;
  border-left:25px solid #ffeb3b;
  border-bottom:25px solid #ffeb3b;
  border-radius:25px;
  margin:0 20px;
  position:relative;
  animation: chomping 0.35s infinite;
}
@keyframes chomping {
  0%{clip-path:polygon(0% 0%,100% 30%,100% 70%,0% 100%);}
  50%{clip-path:polygon(0% 0%,100% 0%,100% 100%,0% 100%);}
  100%{clip-path:polygon(0% 0%,100% 30%,100% 70%,0% 100%);}
}

.dots {
  display:flex;
  gap:30px;
  flex:1;
  position:relative;
}
.dots::before, .dots::after {
  content:'';
  width:100%; height:2px;
  position:absolute; top:50%; left:0;
  background:repeating-linear-gradient(to right, #4fc3f7 0 10px, transparent 10px 40px);
  opacity:0.5;
  box-shadow:0 0 6px #4fc3f7,0 0 12px #4fc3f7;
}

.ghost {
  width:30px; height:30px;
  border-radius:50% 50% 0 0;
  position:relative;
  margin-left:40px;
  animation: ghost-move 12s linear infinite;
}
.ghost::before {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:12px;
  background:inherit;
  clip-path:polygon(0 100%,20% 60%,40% 100%,60% 60%,80% 100%,100% 60%,100% 100%);
}
.ghost.red {background:#ff4d4d; box-shadow:0 0 12px #ff4d4d;}
.ghost.pink {background:#ff66cc; box-shadow:0 0 12px #ff66cc;}
.ghost.cyan {background:#00e0ff; box-shadow:0 0 12px #00e0ff;}
.ghost.orange {background:#ffb347; box-shadow:0 0 12px #ffb347;}
@keyframes ghost-move {
  0%{transform:translateX(100vw);}
  100%{transform:translateX(-120vw);}
}
/* ==== ASTEROIDS MINI STRIP (transparent, 350px wide) ==== */
.space-animation.asteroids.small {
  position: relative;
  width: 350px;
  height: 15px;
  margin: 0 auto;            /* centers it under header */
  overflow: hidden;
  background: transparent;   /* fully see-through */
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(96,165,250,0.2);
}

.space-animation.asteroids.small .stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(#4faaff 1px, transparent 1px),
    radial-gradient(#8b5cf6 1px, transparent 1px);
  background-size: 3px 3px, 2px 2px;
  animation: star-move 25s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes star-move {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: -700px 350px, -400px 200px; }
}

.space-animation.asteroids.small .ship {
  position: absolute;
  left: -40px;
  top: 30%;
  transform: translateY(-50%) rotate(0deg);
  width: 0; height: 0;
  border-left: 14px solid #4faaff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  filter: drop-shadow(0 0 6px #4faaff);
  animation: ship-fly 7s linear infinite;
  
}

@keyframes ship-fly {
  0%   { left: -40px; }
  100% { left: 360px; }
}

.space-animation.asteroids.small .asteroid {
  position: absolute;
  background: #8b5cf6;
  border-radius: 50%;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px #4faaff);
  animation: drift linear infinite;
}

.space-animation.asteroids.small .a1 { width: 12px; height: 12px; top: 20%; animation-duration: 10s; }
.space-animation.asteroids.small .a2 { width: 18px; height: 18px; top: 50%; animation-duration: 14s; animation-delay: 2s; }
.space-animation.asteroids.small .a3 { width: 8px;  height: 8px;  top: 75%; animation-duration: 18s; animation-delay: 4s; }

@keyframes drift {
  0%   { left: 360px; transform: rotate(0deg); }
  100% { left: -40px; transform: rotate(360deg); }
}

.header-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animation-wrap {
  position: relative;
  width: 350px; /* match animation width */
  height: 120px; /* match animation height */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.overlay-brand {
  position: absolute;
  z-index: 10;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  text-shadow:
    0 0 6px #8af,
    0 0 12px #4ff,
    0 0 20px #2af;
  pointer-events: auto;
}

.space-animation {
  position: relative;
  width: 350px;
  height: 120px;
}

.overlay-brand {
  animation: neonPulse 2.8s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { opacity: 0.85; text-shadow: 0 0 6px #8af,0 0 12px #4ff,0 0 20px #2af; }
  50% { opacity: 1; text-shadow: 0 0 12px #8af,0 0 22px #8ff,0 0 32px #4af; }
}
.scroll-gallery {
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}

.scroll-gallery h3 {
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #4ff;
}

.scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.scroll-content {
  display: inline-flex;
  gap: 20px;
  animation: scrollLoop 25s linear infinite;
}

.scroll-content img {
  width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,255,255,0.4);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.scroll-content img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,255,255,0.8);
}

/* Continuous auto-scroll animation */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Optional: pause animation on hover */
.scroll-wrapper:hover .scroll-content {
  animation-play-state: paused;
}
.model-glow-wrap {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
}

.model-glow-wrap model-viewer {
  z-index: 2;
}

/* Neon glow disk under the model */
.model-glow {
  position: absolute;
  bottom: 20px;
  width: 70%;
  height: 35px;
  border-radius: 50%;
  filter: blur(35px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(80, 0, 255, 0.9) 0%,
    rgba(0, 150, 255, 0.5) 40%,
    transparent 80%
  );
  animation: glowPulse 3.2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.85;
    filter: blur(35px);
  }
  50% {
    opacity: 1;
    filter: blur(45px);
  }
}
#testing div {
  margin-left: 20px;/*or whatever indentation size you want*/
}




/* Glow beneath image */
.img-glow {
  position: absolute;
  bottom: 200px;
  width: 70%;
  height: 60px;
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(80, 0, 255, 0.9) 0%,
    rgba(0, 150, 255, 0.5) 40%,
    transparent 80%
  );
  animation: extrasGlowPulse 3.2s ease-in-out infinite;
}

@keyframes extrasGlowPulse {
  0%, 100% {
    opacity: 0.85;
    filter: blur(30px);
  }
  50% {
    opacity: 1;
    filter: blur(42px);
  }
}



/* --- Gallery Grid --- */
.aa-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.aa-gallery img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

/* Hover scale + glow */
.aa-gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 18px rgba(0,255,255,0.6);
}


/* --- Fullscreen viewer overlay --- */
#aa-viewer {
  position: fixed;
  inset: 0;
  background: rgba(5,10,25,0.86);
  backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#aa-viewer img,
#aa-viewer canvas {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  image-rendering: pixelated;
  box-shadow: 0 0 30px rgba(0,255,255,0.75);
}

/* --- Stronger pixel-reveal animation --- */
@keyframes pixelFade {
  0% {
    opacity: 0;
    transform: scale(0.3);
    image-rendering: pixelated;
    filter: blur(3px);
  }
  40% {
    opacity: 0.6;
    transform: scale(0.6);
    image-rendering: pixelated;
    filter: blur(2px);
  }
  70% {
    opacity: 0.85;
    transform: scale(1.05);
    image-rendering: pixelated;
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    image-rendering: auto;
    filter: none;
  }
}

#aa-viewer-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: pixelFade 0.45s ease-out;
  box-shadow: 0 0 25px rgba(0,255,255,0.75);
  cursor: zoom-out;
}

#aa-viewer {
  position: fixed;
  inset: 0;
  background: rgba(5,10,25,0.86);
  backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}



#aa-viewer-mosaic {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  image-rendering: pixelated;
  box-shadow: 0 0 30px rgba(0,255,255,0.75);
  cursor: zoom-out;
}

.product-block {
  margin: 40px auto;
}

.product-container {
  display: flex;
  justify-content: center;
}

.ec-Product-795692551 {
  background: transparent !important;
  border: 2px solid rgba(130, 80, 255, 0.4);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 10px rgba(150, 80, 255, 0.4);
  transition: box-shadow 0.3s;
}

.ec-Product-795692551:hover {
  box-shadow: 0 0 20px rgba(150, 80, 255, 0.7);
}

.ecsp-title {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 16px;
  color: #7adfff !important;
  text-shadow: 0 0 6px #5af, 0 0 12px #4df, 0 0 22px #2af;
  margin-bottom: 16px;
}

.ecsp-productBrowser-price {
  font-size: 22px;
  font-weight: bold;
  color: #fff !important;
  margin-bottom: 14px;
  text-shadow: 0 0 10px #a0b8ff;
}

/* Buy Button */
.ecsp .ecsp-button, 
.ecsp .ecsp-addToBagButton {
  background: rgba(80, 20, 255, 0.8) !important;
  border: none !important;
  font-family: 'Press Start 2P', monospace !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  color: #fff !important;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  text-shadow: 0 0 8px #fff;
}

.ecsp .ecsp-button:hover,
.ecsp .ecsp-addToBagButton:hover {
  background: rgba(140, 80, 255, 1) !important;
  box-shadow: 0 0 18px #9F6FFF;
}

/* Hide default ugly backgrounds */
.ecsp-SingleProduct-v2,
.ecsp-SingleProduct-v2 * {
  background: transparent !important;
  border-color: transparent;
}
.buy-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.buy-info {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.4;
  color: #d0e3ff;
}

.buy-features {
  margin-top: 14px;
  list-style: none;
  padding: 0;
}

.buy-features li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(150, 80, 255, 0.4);
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: #7adfff;
  text-shadow: 0 0 6px #5af, 0 0 12px #4df;
}

/* IONOS panel fixes */
.product-panel {
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: center;
}

.product-panel .ec-Product-795692551 {
  background: transparent !important;
  border: 2px solid rgba(130, 80, 255, 0.4);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  width: 100%;
  text-align: center;
  box-shadow: 0 0 10px rgba(150, 80, 255, 0.4);
  transition: box-shadow 0.3s;
}

.product-panel .ec-Product-795692551:hover {
  box-shadow: 0 0 20px rgba(150, 80, 255, 0.7);
}
/* Force IONOS product fields to stack in controlled order */
.ec-Product-795692551 {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
}
.ec-Product-795692551 [customprop="options"]   { order: 3; }
.ec-Product-795692551 [customprop="qty"]       { order: 4; }
.ec-Product-795692551 [customprop="addtobag"]  { order: 5; }
.ec-Product-795692551 [customprop="vatinprice"]{ order: 6; }

/* Dropdown styling */
.ec-Product-795692551 select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  background: rgba(40, 0, 80, 0.65);
  color: #7adfff;
  border: 2px solid #8b5cf6;
  text-shadow: 0 0 6px #7df;
  box-shadow: 0 0 12px rgba(130, 80, 255, 0.6);
}

.ec-Product-795692551 select:hover {
  border-color: #c084fc;
  box-shadow: 0 0 16px rgba(160, 90, 255, 0.9);
}
.ec-Product-795692551 [customprop="options"] {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(40,0,80,0.6), rgba(0,100,150,0.3));
  border: 1px solid rgba(140,80,255,0.4);
  box-shadow: 0 0 14px rgba(130,80,255,0.4);
}
.ec-Product-795692551 [customprop="qty"] input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background: rgba(20,20,60,0.65);
  border: 2px solid #7adfff;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  text-align: center;
  box-shadow: 0 0 12px rgba(80,200,255,0.5);
}
.ec-Product-795692551 [customprop="addtobag"] button {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6) !important;
  text-shadow: 0 0 4px #fff;
  box-shadow: 0 0 18px rgba(140, 90, 255, 0.8);
  color: #fff !important;
  font-family: 'Press Start 2P', monospace;
  padding: 16px !important;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
}
.ec-Product-795692551 [customprop="addtobag"] button:hover {
  box-shadow: 0 0 28px rgba(180, 120, 255, 1.0);
  transform: scale(1.03);
}
/* MAIN OPTIONS BOX + WRAPPER FORCE DARK */
.ec-Product-795692551 [customprop="options"] select,
.ec-Product-795692551 [customprop="options"] .ecsp-select-wrapper {
  background: rgba(40, 0, 80, 0.65) !important;
  border-radius: 6px !important;
  border: 2px solid #8b5cf6 !important;
  color: #7adfff !important;
  text-shadow: 0 0 6px #7df;
  box-shadow: 0 0 12px rgba(130, 80, 255, 0.6);
}

.ec-Product-795692551 [customprop="options"] select option {
  background: rgba(20, 0, 40, 0.85) !important;
  color: #7adfff !important;
}

.ec-Product-795692551 [customprop="qty"]::before {
  content: "Quantity";
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #9cf;
  text-shadow: 0 0 6px #7df;
  font-family: 'Press Start 2P', monospace;
}
.ec-Product-795692551 [customprop="options"],
.ec-Product-795692551 [customprop="qty"],
.ec-Product-795692551 [customprop="addtobag"] {
  border-top: 1px dashed rgba(130, 80, 255, 0.3);
  padding-top: 12px;
  margin-top: 12px;
}
/* Option + quantity labels with blue glow */
.ec-Product-795692551 [customprop="options"]::before,
.ec-Product-795692551 [customprop="qty"]::before {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  margin-bottom: 6px;
  color: #7adfff;
  text-shadow:
    0 0 6px #5af,
    0 0 12px #4df,
    0 0 22px #2af;
}
.ec-Product-795692551 [customprop="options"]::before {
  content: "Options";
}

.ec-Product-795692551 [customprop="qty"]::before {
  content: "Quantity";
}
* FORCE Option labels to neon */
.ec-Product-795692551 [customprop="options"]::before,
.ec-Product-795692551 [customprop="qty"]::before,
.ec-Product-795692551 [customprop="options"] *::before,
.ec-Product-795692551 [customprop="qty"] *::before {
  font-family: 'Press Start 2P', monospace !important;
  color: #7adfff !important;
  text-shadow:
    0 0 6px #5af,
    0 0 12px #4df,
    0 0 22px #2af !important;
}

/*Mini Shop Stylin*/


.product-panel .ec-Product-795693786 {
  background: transparent !important;
  border: 2px solid rgba(130, 80, 255, 0.4);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  width: 100%;
  text-align: center;
  box-shadow: 0 0 10px rgba(150, 80, 255, 0.4);
  transition: box-shadow 0.3s;
}

.product-panel .ec-Product-795693786:hover {
  box-shadow: 0 0 20px rgba(150, 80, 255, 0.7);
}
/* Force IONOS product fields to stack in controlled order */
.ec-Product-795693786 {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
}
.ec-Product-795693786 [customprop="options"]   { order: 3; }
.ec-Product-795693786 [customprop="qty"]       { order: 4; }
.ec-Product-795693786 [customprop="addtobag"]  { order: 5; }
.ec-Product-795693786 [customprop="vatinprice"]{ order: 6; }

/* Dropdown styling */
.ec-Product-795693786 select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  background: rgba(40, 0, 80, 0.65);
  color: #7adfff;
  border: 2px solid #8b5cf6;
  text-shadow: 0 0 6px #7df;
  box-shadow: 0 0 12px rgba(130, 80, 255, 0.6);
}

.ec-Product-795693786 select:hover {
  border-color: #c084fc;
  box-shadow: 0 0 16px rgba(160, 90, 255, 0.9);
}
.ec-Product-795693786 [customprop="options"] {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(40,0,80,0.6), rgba(0,100,150,0.3));
  border: 1px solid rgba(140,80,255,0.4);
  box-shadow: 0 0 14px rgba(130,80,255,0.4);
}
.ec-Product-795693786 [customprop="qty"] input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background: rgba(20,20,60,0.65);
  border: 2px solid #7adfff;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  text-align: center;
  box-shadow: 0 0 12px rgba(80,200,255,0.5);
}
.ec-Product-795693786 [customprop="addtobag"] button {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6) !important;
  text-shadow: 0 0 4px #fff;
  box-shadow: 0 0 18px rgba(140, 90, 255, 0.8);
  color: #fff !important;
  font-family: 'Press Start 2P', monospace;
  padding: 16px !important;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
}
.ec-Product-795693786 [customprop="addtobag"] button:hover {
  box-shadow: 0 0 28px rgba(180, 120, 255, 1.0);
  transform: scale(1.03);
}
/* MAIN OPTIONS BOX + WRAPPER FORCE DARK */
.ec-Product-795693786 [customprop="options"] select,
.ec-Product-795693786 [customprop="options"] .ecsp-select-wrapper {
  background: rgba(40, 0, 80, 0.65) !important;
  border-radius: 6px !important;
  border: 2px solid #8b5cf6 !important;
  color: #7adfff !important;
  text-shadow: 0 0 6px #7df;
  box-shadow: 0 0 12px rgba(130, 80, 255, 0.6);
}

.ec-Product-795693786 [customprop="options"] select option {
  background: rgba(20, 0, 40, 0.85) !important;
  color: #7adfff !important;
}

.ec-Product-795693786 [customprop="qty"]::before {
  content: "Quantity";
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #9cf;
  text-shadow: 0 0 6px #7df;
  font-family: 'Press Start 2P', monospace;
}
.ec-Product-795693786 [customprop="options"],
.ec-Product-795693786 [customprop="qty"],
.ec-Product-795693786 [customprop="addtobag"] {
  border-top: 1px dashed rgba(130, 80, 255, 0.3);
  padding-top: 12px;
  margin-top: 12px;
}
/* Option + quantity labels with blue glow */
.ec-Product-795693786 [customprop="options"]::before,
.ec-Product-795693786 [customprop="qty"]::before {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  margin-bottom: 6px;
  color: #7adfff;
  text-shadow:
    0 0 6px #5af,
    0 0 12px #4df,
    0 0 22px #2af;
}
.ec-Product-795693786 [customprop="options"]::before {
  content: "Options";
}

.ec-Product-795693786 [customprop="qty"]::before {
  content: "Quantity";
}
* FORCE Option labels to neon */
.ec-Product-795693786 [customprop="options"]::before,
.ec-Product-795693786 [customprop="qty"]::before,
.ec-Product-795693786 [customprop="options"] *::before,
.ec-Product-795693786 [customprop="qty"] *::before {
  font-family: 'Press Start 2P', monospace !important;
  color: #7adfff !important;
  text-shadow:
    0 0 6px #5af,
    0 0 12px #4df,
    0 0 22px #2af !important;
}