:root{
  --nx-bg:#020407;
  --nx-bg-soft:#050914;
  --nx-card:#0a101a;
  --nx-card-2:#0f1728;
  --nx-border:#1c2c44;
  --nx-border-soft:#263c5d;
  --nx-blue:#0078ff;
  --nx-cyan:#00d2ff;
  --nx-purple:#7c3aed;
  --nx-orange:#ffb000;
  --nx-yellow:#ffcf00;
  --nx-green:#00b67a;
  --nx-text:#ffffff;
  --nx-soft:#dbeafe;
  --nx-muted:#93a7bf;
  --nx-grad:linear-gradient(90deg,#00d2ff 0%,#7c3aed 48%,#ffb000 100%);
}

html,
body{
  overflow-x:hidden;
}

body{
  background:
    radial-gradient(circle at 25% -10%,rgba(0,122,255,.18),transparent 470px),
    radial-gradient(circle at 78% 12%,rgba(255,176,0,.12),transparent 520px),
    var(--nx-bg);
  color:var(--nx-text);
}

a{
  text-decoration:none;
}

.nx-wrap{
  width:min(1440px,calc(100% - 48px));
  margin-left:auto;
  margin-right:auto;
}

.nx-section{
  padding:86px 0;
}

.nx-eyebrow{
  display:inline-block;
  color:var(--nx-orange);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:14px;
}

.nx-gradient-text{
  background:var(--nx-grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nx-btn,
.elementor-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px!important;
  background:linear-gradient(180deg,#168dff,#0062e9)!important;
  border:1px solid #3298ff!important;
  color:#fff!important;
  font-weight:900!important;
  text-transform:uppercase;
  box-shadow:0 0 28px rgba(0,120,255,.45);
  transition:.25s ease;
}

.nx-btn:hover,
.elementor-button:hover{
  transform:translateY(-2px);
  filter:brightness(1.15);
}

.nx-btn-small{
  padding:12px 18px;
  font-size:12px;
}

.nx-btn-outline{
  background:#0a101a!important;
  border-color:#263c5d!important;
}

/* HEADER */
.nx-header-html{
  background:#020407;
  border-bottom:1px solid rgba(0,210,255,.18);
  box-shadow:0 0 36px rgba(0,120,255,.12);
  position:relative;
  z-index:20;
}

.nx-topbar{
  height:34px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  color:#dbeafe;
  font-size:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nx-mainheader{
  min-height:78px;
  display:grid;
  grid-template-columns:250px 1fr 310px;
  gap:28px;
  align-items:center;
}

.nx-logo-text{
  font-size:32px;
  font-weight:1000;
  letter-spacing:-1.5px;
  color:#fff;
  line-height:1;
}

.nx-logo-text .x{
  background:var(--nx-grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nx-logo-text .o{
  color:var(--nx-orange);
}

.nx-logo-text small{
  display:block;
  font-size:8px;
  letter-spacing:4px;
  color:#fff;
  margin-top:8px;
}

.nx-searchbar{
  display:flex;
  height:48px;
}

.nx-searchbar input{
  width:100%;
  background:#050912;
  border:1px solid var(--nx-border-soft);
  color:#fff;
  border-radius:8px 0 0 8px;
  padding:0 16px;
  outline:none;
}

.nx-searchbar button{
  border-radius:0 8px 8px 0!important;
  border:1px solid var(--nx-border-soft)!important;
  background:#0a101a!important;
  color:#fff!important;
  padding:0 24px!important;
  font-weight:800;
}

.nx-header-actions{
  display:flex;
  justify-content:flex-end;
  gap:16px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  white-space:nowrap;
}

.nx-header-actions a{
  color:#fff;
}

.nx-header-actions a:hover,
.nx-nav-html a:hover{
  color:var(--nx-cyan);
}

.nx-nav-html{
  height:46px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
}

.nx-nav-html a{
  color:#fff;
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
}

.nx-nav-html a.sale{
  color:var(--nx-orange);
}

/* HERO */
.nx-home-hero{
  width:100vw;
  margin-left:calc(50% - 50vw);
  background:
    radial-gradient(circle at 67% 34%,rgba(0,120,255,.34),transparent 450px),
    radial-gradient(circle at 45% 70%,rgba(0,210,255,.08),transparent 420px),
    linear-gradient(180deg,#040913,#020407);
  overflow:hidden;
  position:relative;
  padding:110px 0 120px;
  isolation:isolate;
  border-bottom:1px solid rgba(0,210,255,.12);
}

.nx-premium-hero{
  position:relative;
}

.nx-hero-bg-glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 35%,rgba(0,132,255,.35),transparent 420px),
    radial-gradient(circle at 30% 65%,rgba(0,210,255,.12),transparent 460px),
    radial-gradient(circle at 85% 90%,rgba(255,176,0,.12),transparent 520px);
  z-index:0;
  pointer-events:none;
}

.nx-home-hero:before{
  content:"";
  position:absolute;
  inset:auto -10% -120px -10%;
  height:260px;
  background:linear-gradient(90deg,rgba(0,210,255,.25),rgba(124,58,237,.25),rgba(255,176,0,.25));
  filter:blur(80px);
  opacity:.55;
}

.nx-premium-hero:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(1200px,90%);
  height:1px;
  background:linear-gradient(90deg,transparent,#00d2ff,#7c3aed,#ffb000,transparent);
  opacity:.55;
}

.nx-hero-inner{
  position:relative;
  z-index:2;
  min-height:560px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.nx-hero-content{
  max-width:700px;
}

.nx-hero-title{
  margin:0;
  font-size:clamp(62px,7vw,124px);
  font-weight:1000;
  letter-spacing:-4px;
  font-style:italic;
  line-height:.92;
  color:#fff;
  text-shadow:
    0 0 22px rgba(255,255,255,.08),
    0 0 44px rgba(0,120,255,.12);
}

.nx-hero-title .o{
  color:var(--nx-orange);
}

.nx-hero-sub{
  font-size:34px;
  letter-spacing:10px;
  color:#fff;
  margin-top:10px;
}

.nx-hero-sub span{
  color:var(--nx-orange);
}

.nx-hero-copy{
  max-width:680px;
  color:var(--nx-soft);
  font-size:18px;
  line-height:1.75;
  margin-top:18px;
}

.nx-hero-buttons{
  display:flex;
  gap:16px;
  margin-top:30px;
  flex-wrap:wrap;
}

.nx-hero-trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
  color:#dbeafe;
  font-size:13px;
}

.nx-hero-trust span{
  background:rgba(8,17,31,.78);
  backdrop-filter:blur(10px);
  border:1px solid rgba(0,210,255,.18);
  border-radius:999px;
  padding:8px 12px;
}

.nx-visual{
  position:relative;
  min-height:500px;
}

.nx-visual-pro:before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  right:-150px;
  top:-120px;
  border-radius:50%;
  background:
    radial-gradient(circle,rgba(0,120,255,.18) 0%,rgba(0,120,255,.08) 40%,transparent 75%);
  filter:blur(40px);
  pointer-events:none;
}

.nx-visual-pro:after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,210,255,.08),transparent 70%);
  pointer-events:none;
}

.nx-ring{
  position:absolute;
  left:8%;
  top:0;
  width:560px;
  aspect-ratio:1;
  border-radius:50%;
  background:conic-gradient(from 120deg,#00d2ff,#7c3aed,#ffb000,#00d2ff);
  box-shadow:
    0 0 120px rgba(0,120,255,.35),
    0 0 220px rgba(0,210,255,.15);
  animation:nxSpin 18s linear infinite;
  opacity:.95;
}

.nx-ring:after{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:50%;
  background:#020407;
}

.nx-orbit-dot{
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#00d2ff;
  box-shadow:0 0 24px #00d2ff;
  left:16%;
  top:40%;
  animation:nxFloat 3.4s ease-in-out infinite;
}

.nx-hero-products{
  position:absolute;
  inset:0;
  display:flex;
  align-items:end;
  justify-content:center;
  gap:20px;
  padding-bottom:54px;
}

.nx-hero-penguin{
  font-size:90px;
  filter:drop-shadow(0 0 26px rgba(255,176,0,.55));
  animation:nxFloat 3.8s ease-in-out infinite;
}

.nx-hero-box{
  width:150px;
  height:240px;
  padding:20px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(90,130,190,.45);
  border-radius:14px;
  background:linear-gradient(180deg,rgba(16,25,41,.92),rgba(7,12,21,.96));
  backdrop-filter:blur(12px);
  display:grid;
  place-items:center;
  text-align:center;
  color:#fff;
  font-weight:900;
  box-shadow:0 20px 40px rgba(0,0,0,.55);
  animation:nxFloat 4.2s ease-in-out infinite;
  transition:.25s ease;
}

.nx-hero-box:hover{
  transform:translateY(-12px) scale(1.03);
  border-color:var(--nx-cyan);
  box-shadow:0 0 42px rgba(0,210,255,.28);
}

.nx-hero-box:nth-child(2){animation-delay:.25s}
.nx-hero-box:nth-child(3){animation-delay:.5s}
.nx-hero-box:nth-child(4){animation-delay:.75s}

.nx-hero-box strong,
.nx-hero-box small,
.nx-hero-box em{
  display:block;
  position:relative;
  z-index:2;
}

.nx-hero-box strong{
  font-size:16px;
  letter-spacing:1px;
}

.nx-hero-box small{
  font-size:14px;
  margin-top:6px;
}

.nx-hero-box em{
  color:var(--nx-muted);
  font-style:normal;
  font-size:12px;
  margin-top:14px;
}

.nx-orange{box-shadow:0 0 34px rgba(255,176,0,.24)}
.nx-blue{box-shadow:0 0 34px rgba(0,120,255,.24)}
.nx-purple{box-shadow:0 0 34px rgba(124,58,237,.24)}

/* SECTION HEAD */
.nx-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:32px;
}

.nx-section-head h2{
  margin:4px 0 0;
  font-size:36px;
  color:#fff;
}

.nx-section-head a{
  color:var(--nx-cyan);
  font-weight:900;
}

/* TRUST STRIP */
.nx-trust-strip{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#050914;
  padding:24px 0;
}

.nx-trust-overlap{
  position:relative;
  margin-top:-70px;
  z-index:20;
  background:transparent;
  border:none;
  padding:0;
}

.nx-trust-strip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.nx-trust-overlap .nx-trust-strip-grid{
  background:linear-gradient(135deg,rgba(8,17,31,.96),rgba(5,9,20,.98));
  border:1px solid rgba(0,210,255,.15);
  border-radius:24px;
  padding:24px;
  box-shadow:
    0 25px 80px rgba(0,0,0,.45),
    0 0 40px rgba(0,120,255,.08);
}

.nx-trust-strip-grid div{
  background:linear-gradient(180deg,#0d1728,#070c15);
  border:1px solid var(--nx-border);
  border-radius:16px;
  padding:20px;
  color:#fff;
  transition:.25s ease;
}

.nx-trust-overlap .nx-trust-strip-grid div{
  background:linear-gradient(180deg,rgba(13,23,40,.95),rgba(7,12,21,.95));
  border:1px solid rgba(0,210,255,.10);
  min-height:90px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.nx-trust-strip-grid div:hover{
  transform:translateY(-5px);
  border-color:var(--nx-cyan);
  box-shadow:0 0 30px rgba(0,210,255,.15);
}

.nx-trust-strip-grid strong{
  display:block;
  margin-bottom:3px;
  font-size:15px;
}

.nx-trust-strip-grid span{
  color:var(--nx-muted);
  font-size:13px;
}

/* CATEGORIES */
.nx-category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.nx-category-card{
  min-height:116px;
  padding:22px;
  border-radius:16px;
  border:1px solid #124474;
  background:
    radial-gradient(circle at 20% 20%,rgba(0,210,255,.12),transparent 120px),
    linear-gradient(135deg,rgba(0,120,255,.24),rgba(7,12,21,.96));
  display:flex;
  align-items:center;
  gap:18px;
  transition:.25s ease;
}

.nx-category-card[href*="uncategorized"],
.nx-category-card[href*="unkategorisiert"]{
  display:none!important;
}

.nx-category-card:hover{
  transform:translateY(-6px);
  border-color:var(--nx-cyan);
  box-shadow:0 0 38px rgba(0,210,255,.24);
}

.nx-category-icon{
  width:66px;
  height:66px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:34px;
  background:#07101d;
  flex:0 0 auto;
}

.nx-category-card strong{
  display:block;
  color:#fff;
  font-size:21px;
  text-transform:uppercase;
  line-height:1.1;
}

.nx-category-card small{
  display:block;
  color:var(--nx-soft);
  margin-top:5px;
}

/* OFFER BANNER */
.nx-offer-banner{
  padding:38px 0;
}

.nx-offer-inner{
  background:
    linear-gradient(90deg,rgba(0,120,255,.18),rgba(124,58,237,.14),rgba(255,176,0,.12)),
    #08111f;
  border:1px solid var(--nx-border);
  border-radius:24px;
  padding:38px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.35);
}

.nx-offer-inner h2{
  margin:0 0 10px;
  color:#fff;
  font-size:32px;
}

.nx-offer-inner p{
  margin:0;
  color:var(--nx-muted);
  max-width:760px;
}

/* PRODUCTS */
.nx-products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}

.nx-product-card{
  height:100%;
  padding:18px;
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 0%,rgba(0,120,255,.12),transparent 220px),
    linear-gradient(180deg,#0d1728,#070c15);
  border:1px solid var(--nx-border);
  position:relative;
  transition:.25s ease;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.nx-product-card:before{
  content:"Bestseller";
  position:absolute;
  top:14px;
  left:14px;
  z-index:3;
  background:linear-gradient(90deg,#ffb000,#ff7a00);
  color:#020407;
  font-size:10px;
  font-weight:1000;
  text-transform:uppercase;
  padding:6px 9px;
  border-radius:999px;
}

.nx-product-card:hover{
  transform:translateY(-8px);
  border-color:var(--nx-cyan);
  box-shadow:0 0 42px rgba(0,210,255,.24);
}

.nx-product-image{
  height:230px;
  background:radial-gradient(circle at 50% 35%,rgba(0,120,255,.24),transparent 60%),#101929;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:18px;
  position:relative;
  flex:0 0 auto;
}

.nx-product-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.08),transparent);
  transform:translateX(-120%);
  transition:.5s;
}

.nx-product-card:hover .nx-product-image:after{
  transform:translateX(120%);
}

.nx-product-image img{
  max-height:205px;
  width:auto;
  object-fit:contain;
}

.nx-product-content{
  display:grid;
  grid-template-rows:auto 88px 24px 54px 50px;
  gap:0;
  flex:1;
}

.nx-product-content h3{
  color:#fff;
  font-size:18px;
  line-height:1.3;
  margin:0 0 14px;
  min-height:46px;
}

.nx-product-excerpt{
  color:#93a7bf;
  font-size:14px;
  line-height:1.55;
  margin:0;
  opacity:.95;
  overflow:hidden;
}

.nx-rating{
  color:var(--nx-yellow);
  font-size:13px;
  line-height:24px;
  margin:0;
  letter-spacing:2px;
  align-self:end;
}

.nx-price{
  display:flex;
  align-items:baseline;
  gap:7px;
  flex-wrap:nowrap;
  margin:6px 0 22px;
  white-space:nowrap;
  align-self:start;
}

.nx-price-main{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  color:#9de8ff;
  font-weight:950;
  font-size:25px;
  line-height:1;
}

.nx-price-main .woocommerce-Price-amount{
  color:#9de8ff;
  font-weight:950;
  font-size:25px;
  line-height:1;
}

.nx-price-main del{
  color:#68798f;
  opacity:1;
  font-size:16px;
  font-weight:700;
  text-decoration-thickness:2px;
  line-height:1;
}

.nx-price-main del .woocommerce-Price-amount{
  color:#68798f;
  font-size:16px;
  font-weight:700;
}

.nx-price-main ins{
  color:#9de8ff;
  text-decoration:none;
  font-size:25px;
  font-weight:950;
  line-height:1;
}

.nx-price-main ins .woocommerce-Price-amount{
  color:#9de8ff;
  font-size:25px;
}

.nx-tax-note{
  color:#9fb0c6;
  font-size:10px;
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  line-height:1;
  opacity:.82;
}

.nx-product-content .nx-btn{
  width:100%;
  min-height:50px;
  margin-top:0;
}

/* REVIEWS + WHY */
.nx-review-grid,
.nx-why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.nx-review-card,
.nx-why-card{
  background:
    radial-gradient(circle at 20% 0%,rgba(0,210,255,.08),transparent 180px),
    linear-gradient(180deg,#0d1728,#070c15);
  border:1px solid var(--nx-border);
  border-radius:20px;
  padding:28px;
  color:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
  transition:.25s ease;
}

.nx-review-card{
  position:relative;
  overflow:hidden;
}

.nx-review-card:before{
  content:"“";
  position:absolute;
  right:22px;
  top:8px;
  font-size:90px;
  color:rgba(0,210,255,.08);
  font-weight:900;
}

.nx-review-card:hover,
.nx-why-card:hover{
  transform:translateY(-6px);
  border-color:var(--nx-cyan);
  background:linear-gradient(180deg,#101d32,#070c15);
}

.nx-stars,
.nx-review-score{
  color:var(--nx-yellow);
  font-weight:900;
}

.nx-review-card p,
.nx-why-card p{
  color:var(--nx-muted);
  line-height:1.65;
}

.nx-review-card span{
  display:block;
  color:var(--nx-muted);
  font-size:13px;
  margin-top:4px;
}

.nx-why-card{
  min-height:240px;
}

.nx-why-card span{
  display:grid;
  place-items:center;
  width:60px;
  height:60px;
  border-radius:16px;
  background:#08111f;
  border:1px solid var(--nx-border-soft);
  font-size:28px;
  margin-bottom:18px;
  box-shadow:0 0 28px rgba(0,210,255,.14);
}

.nx-why-card h3{
  margin:0 0 10px;
  font-size:22px;
}

/* FOOTER */
.nx-footer-html{
  background:#03060b;
  border-top:1px solid rgba(255,255,255,.10);
  padding:60px 0 26px;
}

.nx-footer-grid{
  display:grid;
  grid-template-columns:2fr repeat(4,1fr);
  gap:42px;
}

.nx-footer-html h4{
  color:#fff;
  text-transform:uppercase;
  margin:0 0 14px;
}

.nx-footer-html a,
.nx-footer-html p{
  display:block;
  color:var(--nx-muted);
  margin:8px 0;
  font-size:14px;
}

.nx-footer-html a:hover{
  color:var(--nx-cyan);
}

.nx-footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:36px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  color:var(--nx-muted);
  font-size:13px;
}

/* ANIMATIONS */
@keyframes nxFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

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

/* TABLET */
@media(max-width:1100px){
  .nx-wrap{
    width:min(100% - 32px,1440px);
  }

  .nx-mainheader{
    grid-template-columns:1fr;
    gap:16px;
    padding:18px 0;
  }

  .nx-header-actions{
    justify-content:flex-start;
  }

  .nx-nav-html{
    overflow-x:auto;
    justify-content:flex-start;
    padding:0 16px;
  }

  .nx-home-hero{
    padding-bottom:40px;
  }

  .nx-hero-inner{
    grid-template-columns:1fr;
    gap:38px;
  }

  .nx-visual{
    min-height:400px;
  }

  .nx-trust-overlap{
    margin-top:20px;
  }

  .nx-trust-overlap .nx-trust-strip-grid{
    padding:16px;
  }

  .nx-products-grid,
  .nx-category-grid,
  .nx-review-grid,
  .nx-why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .nx-trust-strip-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .nx-footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* MOBILE */
@media(max-width:700px){
  .nx-wrap{
    width:min(100% - 22px,1440px);
  }

  .nx-topbar{
    display:none;
  }

  .nx-logo-text{
    font-size:26px;
  }

  .nx-mainheader{
    min-height:auto;
  }

  .nx-searchbar{
    height:44px;
  }

  .nx-header-actions{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    font-size:10px;
  }

  .nx-nav-html{
    height:44px;
    gap:22px;
    overflow-x:auto;
    justify-content:flex-start;
  }

  .nx-nav-html a{
    font-size:12px;
    white-space:nowrap;
  }

  .nx-home-hero{
    padding:50px 0 26px;
  }

  .nx-hero-inner{
    min-height:auto;
  }

  .nx-hero-title{
    font-size:46px;
    letter-spacing:-2px;
  }

  .nx-hero-sub{
    font-size:20px;
    letter-spacing:5px;
  }

  .nx-hero-copy{
    font-size:15px;
  }

  .nx-hero-buttons{
    flex-direction:column;
  }

  .nx-hero-buttons a{
    width:100%;
  }

  .nx-hero-trust{
    flex-direction:column;
    gap:8px;
  }

  .nx-visual{
    min-height:340px;
  }

  .nx-ring{
    width:310px;
    left:50%;
    transform:translateX(-50%);
  }

  .nx-orbit-dot{
    display:none;
  }

  .nx-hero-products{
    gap:8px;
    padding-bottom:36px;
  }

  .nx-hero-penguin{
    font-size:46px;
  }

  .nx-hero-box{
    width:82px;
    height:138px;
    font-size:11px;
    padding:10px;
  }

  .nx-hero-box strong{
    font-size:11px;
  }

  .nx-hero-box small{
    font-size:10px;
  }

  .nx-hero-box em{
    font-size:9px;
  }

  .nx-section{
    padding:52px 0;
  }

  .nx-section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .nx-section-head h2{
    font-size:27px;
  }

  .nx-products-grid,
  .nx-category-grid,
  .nx-review-grid,
  .nx-why-grid,
  .nx-trust-strip-grid{
    grid-template-columns:1fr;
  }

  .nx-product-card{
    display:grid;
    grid-template-columns:112px 1fr;
    gap:14px;
    align-items:center;
  }

  .nx-product-card:before{
    top:10px;
    left:10px;
    font-size:9px;
  }

  .nx-product-image{
    height:132px;
    margin-bottom:0;
  }

  .nx-product-image img{
    max-height:116px;
  }

  .nx-product-content{
    display:flex;
    flex-direction:column;
    min-height:auto;
  }

  .nx-product-content h3{
    font-size:15px;
    min-height:auto;
    margin-bottom:8px;
  }

  .nx-product-excerpt{
    min-height:auto;
    font-size:13px;
    line-height:1.45;
    margin-bottom:10px;
  }

  .nx-rating{
    line-height:1.2;
    margin-bottom:7px;
  }

  .nx-price{
    margin:0 0 14px;
    align-items:baseline;
    gap:6px;
  }

  .nx-price-main,
  .nx-price-main .woocommerce-Price-amount,
  .nx-price-main ins,
  .nx-price-main ins .woocommerce-Price-amount{
    font-size:20px;
  }

  .nx-price-main del,
  .nx-price-main del .woocommerce-Price-amount{
    font-size:14px;
  }

  .nx-tax-note{
    font-size:9px;
    opacity:.8;
  }

  .nx-product-content .nx-btn{
    min-height:42px;
  }

  .nx-offer-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
  }

  .nx-offer-inner h2{
    font-size:24px;
  }

  .nx-offer-inner .nx-btn{
    width:100%;
  }

  .nx-footer-grid{
    grid-template-columns:1fr;
  }

  .nx-footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:8px;
  }
}
/*optmiert*/
.nx-parallax-hero{
  overflow:hidden;
}

.nx-parallax-glow{
  position:absolute;
  width:680px;
  height:680px;
  right:-180px;
  top:80px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,210,255,.18),transparent 70%);
  filter:blur(35px);
  animation:nxParallaxGlow 9s ease-in-out infinite;
  pointer-events:none;
}

@keyframes nxParallaxGlow{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(-45px,30px,0) scale(1.08)}
}

.nx-hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.nx-google-badge,
.nx-hero-rating,
.nx-counter-box{
  background:rgba(8,17,31,.78);
  border:1px solid rgba(0,210,255,.16);
  border-radius:16px;
  padding:14px 16px;
  color:#fff;
  backdrop-filter:blur(10px);
  box-shadow:0 14px 35px rgba(0,0,0,.28);
}

.nx-google-badge{
  display:grid;
  grid-template-columns:34px auto;
  column-gap:10px;
  align-items:center;
}

.nx-google-badge span{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
  color:#4285f4;
  font-weight:1000;
}

.nx-google-badge strong,
.nx-counter-box strong{
  font-size:22px;
  line-height:1;
}

.nx-google-badge small,
.nx-counter-box small,
.nx-hero-rating span{
  color:#93a7bf;
  font-size:12px;
}

.nx-hero-rating strong{
  display:block;
  color:#ffcf00;
  letter-spacing:2px;
  margin-bottom:4px;
}

.nx-counter-box{
  min-width:150px;
}

.nx-hero-real-products{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
  padding-bottom:42px;
  z-index:3;
}

.nx-hero-product-card{
  width:165px;
  min-height:255px;
  padding:16px;
  border-radius:18px;
  background:
    radial-gradient(circle at 50% 0%,rgba(0,120,255,.18),transparent 160px),
    linear-gradient(180deg,rgba(16,25,41,.94),rgba(7,12,21,.98));
  border:1px solid rgba(90,130,190,.45);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#fff;
  box-shadow:0 20px 45px rgba(0,0,0,.5);
  backdrop-filter:blur(14px);
  animation:nxFloat 4.3s ease-in-out infinite;
  transition:.25s ease;
}

.nx-hero-product-card:nth-child(2){
  transform:translateY(-26px);
  animation-delay:.3s;
}

.nx-hero-product-card:nth-child(3){
  animation-delay:.6s;
}

.nx-hero-product-card:hover{
  border-color:#00d2ff;
  box-shadow:0 0 42px rgba(0,210,255,.3);
}

.nx-hero-product-img{
  height:125px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#101929;
  border-radius:14px;
  margin-bottom:12px;
}

.nx-hero-product-img img{
  max-height:110px;
  width:auto;
  object-fit:contain;
}

.nx-hero-product-card strong{
  font-size:14px;
  line-height:1.25;
  min-height:36px;
}

.nx-hero-product-price{
  margin-top:10px;
  color:#9de8ff;
  font-weight:950;
  font-size:18px;
}

.nx-hero-product-price del{
  color:#68798f;
  font-size:13px;
}

.nx-hero-product-price ins{
  text-decoration:none;
}

.nx-popular-products-strip{
  background:#050914;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:34px 0;
}

.nx-mini-section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.nx-mini-section-head span{
  color:#fff;
  font-weight:1000;
  font-size:18px;
}

.nx-mini-section-head a{
  color:#00d2ff;
  font-weight:900;
}

.nx-popular-slider{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
}

.nx-popular-slider::-webkit-scrollbar{
  height:8px;
}

.nx-popular-slider::-webkit-scrollbar-thumb{
  background:#1c2c44;
  border-radius:99px;
}

.nx-popular-slide{
  min-width:210px;
  scroll-snap-align:start;
  background:linear-gradient(180deg,#0d1728,#070c15);
  border:1px solid #1c2c44;
  border-radius:16px;
  padding:14px;
  color:#fff;
  transition:.25s ease;
}

.nx-popular-slide:hover{
  transform:translateY(-5px);
  border-color:#00d2ff;
  box-shadow:0 0 28px rgba(0,210,255,.18);
}

.nx-popular-img{
  height:125px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#101929;
  border-radius:12px;
  margin-bottom:12px;
}

.nx-popular-img img{
  max-height:110px;
  width:auto;
  object-fit:contain;
}

.nx-popular-slide strong{
  display:block;
  font-size:14px;
  line-height:1.25;
  min-height:38px;
  margin-bottom:10px;
}

.nx-popular-slide span:last-child{
  color:#9de8ff;
  font-weight:950;
}

@media(max-width:900px){
  .nx-hero-proof{
    flex-direction:column;
  }

  .nx-hero-real-products{
    position:relative;
    inset:auto;
    padding:0;
    justify-content:flex-start;
    overflow-x:auto;
  }

  .nx-hero-product-card{
    min-width:155px;
  }

  .nx-visual{
    min-height:auto;
  }

  .nx-ring,
  .nx-orbit-dot{
    display:none;
  }
}

/*optimierung2*/
.nx-trust-overlap{
  margin-top:-58px;
  margin-bottom:0;
}

.nx-popular-products-strip{
  position:relative;
  z-index:5;
  padding:70px 0 42px;
  background:#050914;
}

.nx-popular-slider{
  padding-bottom:18px;
}

.nx-hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.nx-google-pro,
.nx-hero-rating,
.nx-counter-box{
  min-height:74px;
  background:linear-gradient(180deg,rgba(13,23,40,.95),rgba(7,12,21,.96));
  border:1px solid rgba(0,210,255,.16);
  border-radius:16px;
  padding:13px 15px;
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  box-shadow:0 14px 35px rgba(0,0,0,.28);
}

.nx-google-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
  color:#4285f4;
  font-weight:1000;
  font-size:19px;
  flex:0 0 auto;
}

.nx-google-pro strong,
.nx-counter-box strong{
  display:block;
  font-size:21px;
  line-height:1.1;
}

.nx-google-pro small,
.nx-counter-box small,
.nx-hero-rating span{
  display:block;
  color:#9fb0c6;
  font-size:12px;
  margin-top:4px;
}

.nx-hero-rating{
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}

.nx-hero-rating strong{
  color:#ffcf00;
  letter-spacing:2px;
  font-size:16px;
}

.nx-counter-box{
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}

@media(max-width:900px){
  .nx-trust-overlap{
    margin-top:20px;
  }

  .nx-popular-products-strip{
    padding:42px 0 34px;
  }

  .nx-hero-proof{
    display:grid;
    grid-template-columns:1fr;
  }
}
/*opti3*/
.nx-slider-wrap{
  position:relative;
}

.nx-popular-slider{
  overflow:hidden !important;
  display:grid !important;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.nx-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(0,210,255,.35);
  background:#07101d;
  color:#fff;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 0 25px rgba(0,210,255,.18);
}

.nx-slider-prev{
  left:-21px;
}

.nx-slider-next{
  right:-21px;
}

.nx-popular-price,
.nx-hero-product-price{
  display:flex;
  align-items:baseline;
  gap:6px;
  flex-wrap:wrap;
}

.nx-popular-price small,
.nx-hero-product-price small{
  font-size:10px;
  font-weight:500;
  color:#9fb0c6;
  text-transform:none;
  opacity:.85;
}

.nx-popular-slider::-webkit-scrollbar{
  display:none;
}

@media(max-width:900px){
  .nx-popular-slider{
    grid-template-columns:repeat(2,1fr);
  }

  .nx-slider-arrow{
    display:none;
  }
}

@media(max-width:600px){
  .nx-popular-slider{
    grid-template-columns:1fr;
  }
}

/*GRID*/
.nx-popular-static-grid{
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:18px!important;
  align-items:stretch;
}

.nx-popular-static-grid .nx-popular-slide{
  min-width:0!important;
  width:100%!important;
}

.nx-popular-price{
  display:flex!important;
  align-items:baseline!important;
  gap:6px!important;
  flex-wrap:wrap!important;
  color:#9de8ff!important;
  font-weight:950!important;
}

.nx-popular-price small{
  font-size:10px!important;
  font-weight:500!important;
  color:#9fb0c6!important;
  text-transform:none!important;
  opacity:.85!important;
}

@media(max-width:900px){
  .nx-popular-static-grid{
    grid-template-columns:repeat(2,1fr)!important;
  }
}

@media(max-width:600px){
  .nx-popular-static-grid{
    grid-template-columns:1fr!important;
  }
}

/*Header*/
.nx-header-premium{
  background:
    radial-gradient(circle at 20% 0%,rgba(0,120,255,.14),transparent 360px),
    linear-gradient(180deg,#03060b,#020407);
  border-bottom:1px solid rgba(0,210,255,.16);
}

.nx-header-premium .nx-topbar span{
  opacity:.92;
}

.nx-searchbar-premium{
  box-shadow:0 0 28px rgba(0,120,255,.12);
}

.nx-searchbar-premium input{
  background:linear-gradient(180deg,#07101d,#050914);
}

.nx-cart-link{
  color:#ffb000!important;
}

.nx-nav-premium .sale{
  position:relative;
}

.nx-nav-premium .sale:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  background:linear-gradient(90deg,#00d2ff,#ffb000);
  border-radius:99px;
}

@media(max-width:700px){
  .nx-header-actions{
    grid-template-columns:1fr 1fr 1fr;
  }

  .nx-mainheader{
    text-align:left;
  }

  .nx-searchbar-premium button{
    padding:0 14px!important;
  }
}

/*header2*/
.nx-header-pro{
  padding:10px 0 0;
  background:
    radial-gradient(circle at 25% 0%,rgba(0,120,255,.16),transparent 420px),
    linear-gradient(180deg,#03060b 0%,#020407 100%);
}

.nx-header-pro .nx-topbar{
  height:auto;
  min-height:42px;
  padding:8px 0 10px;
  gap:20px;
}

.nx-header-pro .nx-topbar span{
  display:flex;
  align-items:center;
  gap:10px;
  line-height:1.2;
}

.nx-header-pro .nx-topbar span::before{
  font-size:16px;
  flex-shrink:0;
}

.nx-header-pro .nx-topbar span strong{
  display:block;
  font-size:13px;
  color:#fff;
  margin-bottom:2px;
}

.nx-header-pro .nx-topbar span small{
  display:block;
  font-size:11px;
  color:#9fb0c6;
}

.nx-header-pro .nx-topbar span{
  position:relative;
}

.nx-header-pro .nx-topbar span > strong,
.nx-header-pro .nx-topbar span > small{
  display:block;
}

.nx-header-pro .nx-topbar strong{
  font-size:12px;
  color:#fff;
}

.nx-header-pro .nx-topbar small{
  font-size:11px;
  color:#9fb0c6;
}

.nx-header-pro .nx-mainheader{
  min-height:92px;
  grid-template-columns:270px 1fr 330px;
  gap:32px;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nx-header-pro .nx-logo-text{
  font-size:34px;
}

.nx-header-pro .nx-searchbar{
  height:54px;
}

.nx-header-pro .nx-searchbar input{
  font-size:15px;
  padding:0 20px;
}

.nx-header-pro .nx-searchbar button{
  min-width:110px;
}

.nx-header-pro .nx-header-actions{
  gap:18px;
  align-items:center;
}

.nx-header-pro .nx-header-actions a{
  padding:8px 0;
}

.nx-header-pro .nx-nav-html{
  height:54px;
  gap:36px;
}

.nx-header-pro .nx-nav-html a{
  padding:18px 0;
  letter-spacing:.2px;
}

.nx-header-pro + .nx-home-hero{
  padding-top:130px;
}

@media(max-width:1100px){
  .nx-header-pro .nx-mainheader{
    grid-template-columns:1fr;
    gap:18px;
  }

  .nx-header-pro .nx-header-actions{
    justify-content:flex-start;
  }
}

@media(max-width:700px){
  .nx-header-pro{
    padding-top:0;
  }

  .nx-header-pro .nx-mainheader{
    padding:16px 0;
  }

  .nx-header-pro .nx-searchbar{
    height:48px;
  }

  .nx-header-pro .nx-nav-html{
    height:48px;
  }

  .nx-header-pro + .nx-home-hero{
    padding-top:70px;
  }
}

.nx-header-pro .nx-topbar{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px;
  min-height:50px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nx-header-pro .nx-topbar span{
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}

.nx-header-pro .nx-topbar strong{
  display:block;
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1.1;
}

.nx-header-pro .nx-topbar small{
  display:block;
  color:#9fb0c6;
  font-size:11px;
  line-height:1.1;
}

.nx-header-pro .nx-topbar span{
  font-size:16px;
}

@media(max-width:1200px){
  .nx-header-pro .nx-topbar{
    gap:40px;
  }
}

@media(max-width:900px){
  .nx-header-pro .nx-topbar{
    display:none;
  }
}

.nx-header-pro .nx-mainheader{
  min-height:95px;
  display:grid;
  grid-template-columns:280px minmax(500px,700px) 280px;
  justify-content:center;
  align-items:center;
  gap:40px;
}

.nx-header-pro .nx-searchbar{
  width:100%;
  max-width:700px;
  margin:0 auto;
}

.nx-header-pro .nx-header-actions{
  justify-content:flex-end;
  gap:22px;
}

.nx-nav-premium{
  justify-content:center!important;
  gap:42px!important;
}

/*FOOTER*/
.nx-footer-pro{
  padding:0 0 28px;
  background:
    radial-gradient(circle at 25% 0%,rgba(0,120,255,.12),transparent 420px),
    linear-gradient(180deg,#03060b 0%,#020407 100%);
  border-top:1px solid rgba(0,210,255,.14);
}

.nx-footer-service{
  transform:translateY(-42px);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  background:linear-gradient(180deg,#07101d,#050914);
  border:1px solid rgba(0,210,255,.14);
  border-radius:26px;
  padding:18px;
  box-shadow:0 24px 70px rgba(0,0,0,.38);
}

.nx-footer-service div{
  display:grid;
  grid-template-columns:34px 1fr;
  column-gap:12px;
  align-items:center;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg,#0d1728,#070c15);
  border:1px solid rgba(0,210,255,.10);
}

.nx-footer-service span{
  grid-row:1 / 3;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(0,210,255,.10);
}

.nx-footer-service strong{
  color:#fff;
  font-size:14px;
  line-height:1.2;
}

.nx-footer-service small{
  color:#9fb0c6;
  font-size:12px;
  margin-top:2px;
}

.nx-footer-pro .nx-footer-grid{
  padding-top:10px;
}

.nx-footer-brand p{
  max-width:330px;
  line-height:1.7;
}

.nx-footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}

.nx-footer-badges span{
  border:1px solid rgba(0,210,255,.16);
  background:#07101d;
  color:#dbeafe;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:700;
}

.nx-footer-pro h4{
  position:relative;
  padding-bottom:10px;
}

.nx-footer-pro h4:after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:36px;
  height:2px;
  background:linear-gradient(90deg,#00d2ff,#ffb000);
  border-radius:99px;
}

.nx-footer-pro a{
  transition:.2s ease;
}

.nx-footer-pro a:hover{
  transform:translateX(4px);
}

.nx-footer-payments{
  margin-top:44px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(0,210,255,.10);
  background:rgba(7,16,29,.7);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#9fb0c6;
}

.nx-footer-payments strong{
  color:#fff;
}

.nx-footer-pro .nx-footer-bottom{
  margin-top:22px;
}

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

@media(max-width:700px){
  .nx-footer-service{
    transform:none;
    grid-template-columns:1fr;
    margin-bottom:34px;
  }

  .nx-footer-payments{
    flex-direction:column;
  }
}

/*TOP BUTTON*/ 
#nx-backtotop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(180deg,#168dff,#0062e9);
    border:1px solid #3298ff;

    color:#fff;
    font-size:24px;
    font-weight:900;

    box-shadow:
        0 0 25px rgba(0,120,255,.35),
        0 8px 30px rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:.25s ease;
    z-index:9999;
}

#nx-backtotop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#nx-backtotop:hover{
    transform:translateY(-4px);
    filter:brightness(1.1);
}

@media(max-width:700px){
    #nx-backtotop{
        width:50px;
        height:50px;
        right:16px;
        bottom:16px;
        font-size:20px;
    }
}

/*Shopübersicht*/
.nx-hero-proof{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin:28px 0;
}

.nx-google-badge,
.nx-counter-box{
    flex:1;
    min-width:190px;
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    background:linear-gradient(
        180deg,
        rgba(12,23,42,.95),
        rgba(7,13,24,.98)
    );

    border:1px solid rgba(0,210,255,.16);
    border-radius:18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.04);
}

.nx-google-badge strong,
.nx-counter-box strong{
    display:block;
    color:#fff;
    font-size:34px;
    font-weight:800;
    line-height:1;
}

.nx-google-badge small,
.nx-counter-box small{
    display:block;
    color:#9fb0c6;
    font-size:13px;
    margin-top:6px;
}

.nx-google-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:#4285f4;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

@media(max-width:768px){

    .nx-hero-proof{
        flex-direction:column;
    }

    .nx-google-badge,
    .nx-counter-box{
        width:100%;
    }
}