/** Shopify CDN: Minification failed

Line 2389:10 Expected ":"

**/
/* =========================================
   COMPOSA NEON TECH THEME
   ========================================= */

/* RESET BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: #000;
  color: #e2eaff;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

/* =========================================
   HEADER + LOGO
   ========================================= */
.tech-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  position: absolute;
  top: 0; width: 100%; z-index: 1000;
  background: transparent;
  opacity: 0; transform: translateY(-20px);
  animation: headerFade 1.8s ease forwards; animation-delay: 0.6s;
}
@keyframes headerFade { to { opacity: 1; transform: translateY(0); } }

.site-logo img {
  height: 120px;
  filter: drop-shadow(0 0 20px #00bfff) brightness(1.4);
  transition: all 0.3s ease-in-out;
  opacity: 0; transform: translateY(-10px);
  animation: logoFade 1.5s ease-out forwards; animation-delay: 0.3s;
}
@keyframes logoFade {
  from { opacity: 0; transform: translateY(-10px); filter: drop-shadow(0 0 5px #00bfff); }
  to   { opacity: 1; transform: translateY(0);   filter: drop-shadow(0 0 25px #00bfff); }
}

.tech-nav ul { display: flex; gap: 30px; list-style: none; }
.tech-nav a {
  color: #d9e1ff; font-weight: 600; text-decoration: none; font-size: 16px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.tech-nav a:hover { color: #00bfff; text-shadow: 0 0 10px #00bfff; }

/* =========================================
   HERO SLIDER
   ========================================= */
/* === HERO FINALE COMPLÉTA === */
.tech-hero-slider {
  margin-top: 140px !important;
  height: 88vh;
  overflow: hidden;
  position: relative;
}

.tech-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover !important;
  background-position: center !important;
  pointer-events: none;
  filter: brightness(1.1) contrast(1.05);
}

.tech-hero-slide.active {
  opacity: 1 !important;
  z-index: 2;
  pointer-events: all;
}

/* PS5 */
.tech-hero-ps5 {
  background-image: url('/cdn/shop/files/hero-ps5_png.png?v=1760265090');
}

/* NOTEBOOK */
.tech-hero-notebook {
  background-image: url('/cdn/shop/files/hero-notebook_png.png?v=1760268849');
}

/* Posizione pulsanti */
.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 45px;
  right: 7%;
  text-align: right;
}

.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Pulsanti migliorati */
.hero-button {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 40px;
  background: linear-gradient(90deg, #00c3ff, #ff00ff);
  color: white;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  transition: all 0.25s ease-in-out;
  pointer-events: all;
}

.hero-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.9);
}



/* NOTEBOOK HERO BG + OVERLAY */
.tech-hero-notebook {
  background: url('/cdn/shop/files/hero-notebook_png.png?v=1760268849') center/cover no-repeat;
}
.tech-hero-notebook::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative; z-index: 2; color: #e2eaff; max-width: 700px; padding: 80px;
}
.hero-content.right { text-align: right; margin-left: auto; padding-right: 6%; }
.hero-content.left  { text-align: left;  margin-right: auto; padding-left: 6%; }

.hero-title {
  font-size: 3.5rem; font-weight: 800;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0,191,255,0.5);
}
.hero-subtitle {
  font-size: 1.3rem; color: #d1d9ff; margin: 15px 0 35px;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* HERO BUTTON + SHIMMER */
.hero-button {
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff; text-decoration: none; padding: 14px 38px;
  border-radius: 40px; font-size: 1.1rem; font-weight: 600; text-transform: uppercase;
  box-shadow: 0 0 20px #00bfff; position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.hero-button::before {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg); animation: shimmer 4s infinite;
}
@keyframes shimmer { 0% { left: -75%; } 100% { left: 125%; } }
.hero-button:hover { box-shadow: 0 0 30px #ff00ff, 0 0 50px #00bfff; transform: scale(1.05); }

/* =========================================
   CATEGORIE IN EVIDENZA
   ========================================= */
.tech-collections { padding: 100px 0; background: radial-gradient(circle at center, #05060a 0%, #000 100%); text-align: center; }
.section-title {
  font-size: 2.4rem; margin-bottom: 40px; font-weight: 700;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.collections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; padding: 0 40px; }
.collection-card {
  background: rgba(15, 20, 30, 0.8);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 16px; color: #e2eaff; text-decoration: none; font-size: 1.2rem;
  padding: 40px 20px; transition: all 0.3s ease; text-transform: uppercase;
}
.collection-card:hover { background: rgba(0, 191, 255, 0.1); border-color: #ff00ff; box-shadow: 0 0 25px #00bfff; transform: scale(1.05); }

/* =========================================
   PRODOTTI IN EVIDENZA
   ========================================= */
.tech-products { padding: 100px 0; background: linear-gradient(180deg, #010104 0%, #090a14 100%); text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; padding: 0 40px; }
.product-card {
  background: rgba(20, 25, 35, 0.85);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 16px; padding: 20px; transition: all 0.3s ease;
}
.product-card:hover { border-color: #ff00ff; box-shadow: 0 0 20px #00bfff; transform: translateY(-5px); }
.product-card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
.product-card h3 { font-size: 1rem; color: #e2eaff; margin: 10px 0; }
.price { color: #00bfff; font-weight: 700; font-size: 1.1rem; }

/* =========================================
   SCROLL REVEAL + RESPONSIVE
   ========================================= */
section { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
section.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .tech-header { flex-direction: column; padding: 15px 20px; }
  .tech-nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
  .site-logo img { height: 90px; }
  .hero-content { text-align: center !important; padding: 40px 20px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-button { font-size: 1rem; padding: 12px 30px; }
}
/* =========================================
   HERO DUAL CINEMATIC (PS5 + NOTEBOOK)
   ========================================= */
.tech-hero-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  position: relative;
}

.tech-hero-left,
.tech-hero-right {
  position: relative;
  background-size: cover;
  background-position: center;
}

.tech-hero-left::before,
.tech-hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  z-index: 1;
}

/* Immagini */
.tech-hero-left {
  background-image: url('/cdn/shop/files/hero-ps5_png.png?v=1760265090');
}
.tech-hero-right {
  background-image: url('/cdn/shop/files/hero-notebook_png.png?v=1760268849');
}

/* TESTO */
.tech-hero-left .hero-content {
  position: absolute;
  bottom: 15%;
  right: 8%;
  text-align: right;
  z-index: 2;
}

.tech-hero-right .hero-content {
  position: absolute;
  top: 20%;
  left: 8%;
  text-align: left;
  z-index: 2;
}

/* ADATTAMENTO MOBILE */
@media (max-width: 900px) {
  .tech-hero-dual {
    grid-template-columns: 1fr;
    height: auto;
  }
  .tech-hero-left,
  .tech-hero-right {
    height: 60vh;
  }
  .tech-hero-left .hero-content,
  .tech-hero-right .hero-content {
    position: relative;
    text-align: center;
    padding: 60px 20px;
  }
}
/* === HERO SLIDER CINEMATICO === */
.tech-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.tech-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 0;
}
.tech-hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.tech-hero-ps5 {
  background-image: url('/cdn/shop/files/hero-ps5_png.png?v=1760265090');
}
.tech-hero-notebook {
  background-image: url('/cdn/shop/files/hero-notebook_png.png?v=1760268849');
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content.center {
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0,191,255,0.6);
  margin-bottom: 15px;
  animation: fadeUp 1.6s ease forwards;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e2eaff;
  margin-bottom: 40px;
  animation: fadeUp 2.2s ease forwards;
}

.hero-button {
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 0 25px #00bfff;
  transition: all 0.3s ease;
  animation: fadeUp 2.6s ease forwards;
}
.hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #ff00ff, 0 0 60px #00bfff;
}

/* ANIMAZIONE TESTO */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-button { font-size: 1rem; padding: 12px 28px; }
}
/* === SFUMATURA LATERALE NEON DINAMICA === */
.tech-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, rgba(0,191,255,0.25), transparent 70%),
              radial-gradient(circle at right center, rgba(255,0,255,0.25), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.tech-hero-slide.active::after {
  opacity: 1;
  animation: neonFlow 10s ease-in-out infinite alternate;
}

@keyframes neonFlow {
  0% {
    background: radial-gradient(circle at left 20%, rgba(0,191,255,0.35), transparent 70%),
                radial-gradient(circle at right 80%, rgba(255,0,255,0.35), transparent 70%);
  }
  100% {
    background: radial-gradient(circle at left 80%, rgba(0,191,255,0.25), transparent 70%),
                radial-gradient(circle at right 20%, rgba(255,0,255,0.25), transparent 70%);
  }
}
/* === LOGO COMPOSA - VERSIONE FINALE === */
.site-logo img,
.logo-img {
  height: 140px;
  max-height: 140px;
  display: block;
  filter: drop-shadow(0 0 25px #00bfff) brightness(1.35);
  transition: all 0.6s ease-in-out;
  animation: logoPulse 8s ease-in-out infinite alternate;
  position: relative;
  z-index: 100;
  opacity: 1 !important;
  transform: scale(1);
}

@keyframes logoPulse {
  0% {
    filter: drop-shadow(0 0 15px #00bfff) brightness(1.15);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 35px #ff00ff) brightness(1.5);
    transform: scale(1.06);
  }
  100% {
    filter: drop-shadow(0 0 20px #00bfff) brightness(1.25);
    transform: scale(1);
  }
}

/* Glow morbido attorno al logo */
.site-logo::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  box-shadow: 0 0 60px 25px rgba(0,191,255,0.15),
              0 0 80px 40px rgba(255,0,255,0.1);
  z-index: 0;
  pointer-events: none;
}
/* === ANIMAZIONE TESTO HERO SINCRONIZZATA === */

/* Sincronizza l'effetto di respiro tra il logo e il titolo hero */
.hero-title,
.hero-subtitle,
.hero-button {
  opacity: 0;
  animation: heroFadeIn 2.5s ease forwards;
}

.hero-title {
  animation-delay: 0.8s;
}

.hero-subtitle {
  animation-delay: 1.4s;
}

.hero-button {
  animation-delay: 2.0s;
}

/* Quando la slide diventa attiva */
.tech-hero-slide.active .hero-title,
.tech-hero-slide.active .hero-subtitle,
.tech-hero-slide.active .hero-button {
  animation-name: heroFadeInUp;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Leggero respiro continuo sincronizzato con il logo */
.tech-hero-slide.active .hero-title {
  animation: heroFadeInUp 1.8s ease forwards,
             textPulse 8s ease-in-out infinite alternate;
}
.tech-hero-slide.active .hero-subtitle {
  animation: heroFadeInUp 2s ease forwards,
             textPulse 8s ease-in-out infinite alternate;
}
.tech-hero-slide.active .hero-button {
  animation: heroFadeInUp 2.5s ease forwards,
             textPulse 8s ease-in-out infinite alternate;
}

@keyframes textPulse {
  0% {
    text-shadow: 0 0 15px rgba(0,191,255,0.4), 0 0 5px rgba(255,0,255,0.3);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 30px rgba(0,191,255,0.6), 0 0 25px rgba(255,0,255,0.4);
    transform: scale(1.02);
  }
  100% {
    text-shadow: 0 0 20px rgba(0,191,255,0.5), 0 0 10px rgba(255,0,255,0.3);
    transform: scale(1);
  }
}
/* === SEZIONE OFFERTE LIVE === */
.tech-deals {
  padding: 100px 0;
  background: radial-gradient(circle at center, #040510 0%, #000 100%);
  text-align: center;
}

.tech-deals .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 0 40px;
}

.deal-card {
  background: rgba(20, 25, 35, 0.85);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #00bfff, 0 0 40px #ff00ff;
  border-color: #ff00ff;
}

.deal-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.deal-info {
  padding: 25px;
}

.deal-info h3 {
  font-size: 1.1rem;
  color: #e2eaff;
  margin-bottom: 10px;
}

.deal-info .price {
  color: #00bfff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.deal-button {
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 15px #00bfff;
  transition: all 0.3s ease;
}

.deal-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff00ff, 0 0 45px #00bfff;
}
/* === COUNTDOWN NEON GLOW === */
.countdown-timer {
  font-size: 0.95rem;
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00bfff, 0 0 20px #ff00ff;
  animation: countdownGlow 2.5s ease-in-out infinite alternate;
}

@keyframes countdownGlow {
  0% { text-shadow: 0 0 10px #00bfff, 0 0 15px #ff00ff; }
  100% { text-shadow: 0 0 25px #00bfff, 0 0 30px #ff00ff; }
}

.countdown-timer.expired {
  color: #888;
  text-shadow: none;
  animation: none;
}
/* === NAVIGATION BAR - COMPOSA NEON GRADIENT === */
.tech-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 14px 35px;
  position: relative;
  z-index: 200;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.15);
}

.tech-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.tech-nav a {
  color: #e0eaff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(0,191,255,0.25);
}

.tech-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  box-shadow: 0 0 8px #00bfff, 0 0 15px #ff00ff;
  transition: width 0.3s ease;
}

.tech-nav a:hover {
  color: #fff;
  text-shadow: 0 0 15px #00bfff, 0 0 25px #ff00ff;
}

.tech-nav a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .tech-nav {
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 20px;
  }
  .tech-nav a {
    font-size: 0.95rem;
  }
}
/* === ANIMAZIONE LASER LIGHT MENU === */
@keyframes neonSweep {
  0% {
    background-position: -200%;
  }
  100% {
    background-position: 200%;
  }
}

.tech-nav a {
  background: linear-gradient(90deg, #00bfff, #ff00ff, #00bfff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: neonSweep 10s linear infinite;
  text-shadow: 0 0 12px rgba(0,191,255,0.25);
}

.tech-nav a:hover {
  -webkit-text-fill-color: #fff;
  text-shadow: 0 0 25px #00bfff, 0 0 40px #ff00ff;
  animation: none; /* ferma il movimento durante hover per leggibilità */
}
/* === COMPOSA NEON HEADER - VERSIONE EQUILIBRATA === */
.tech-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(10, 10, 25, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 14px 35px;
  position: relative;
  z-index: 200;
  margin: 25px auto;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.12);
  width: fit-content;
}

.tech-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.tech-nav a {
  color: #e0eaff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(0,191,255,0.25);
  background: linear-gradient(90deg, #00bfff, #ff00ff, #00bfff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: neonSweep 10s linear infinite;
}

.tech-nav a:hover {
  -webkit-text-fill-color: #fff;
  text-shadow: 0 0 25px #00bfff, 0 0 40px #ff00ff;
  animation: none;
}

.tech-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  box-shadow: 0 0 10px #00bfff, 0 0 15px #ff00ff;
  transition: width 0.3s ease;
}

.tech-nav a:hover::after {
  width: 100%;
}

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

@media (max-width: 900px) {
  .tech-nav {
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 20px;
  }
  .tech-nav a {
    font-size: 0.95rem;
  }
}
/* === HERO NOTEBOOK - Testo in basso a destra (responsive) === */
.tech-hero-slide.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 8%;
  right: 6%;
  text-align: right;
  max-width: 40%;
}

.tech-hero-slide.tech-hero-notebook .hero-subtitle {
  font-size: 1.2rem;
  color: #dce9ff;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(0, 191, 255, 0.25);
}

.tech-hero-slide.tech-hero-notebook .hero-button {
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 40px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0,191,255,0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.tech-hero-slide.tech-hero-notebook .hero-button:hover {
  box-shadow: 0 0 35px rgba(255,0,255,0.6), 0 0 45px rgba(0,191,255,0.5);
  transform: scale(1.05);
}

/* === Mobile Responsive Fix === */
@media (max-width: 900px) {
  .tech-hero-slide.tech-hero-notebook .hero-content {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 60px 0;
  }

  .tech-hero-slide.tech-hero-notebook .hero-subtitle {
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
  }

  .tech-hero-slide.tech-hero-notebook .hero-button {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 10px 26px;
  }
}
/* === HERO PS5 - Testo in basso a destra === */
.tech-hero-slide.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 8%;
  right: 6%;
  text-align: right;
  max-width: 40%;
}

.tech-hero-slide.tech-hero-ps5 .hero-subtitle {
  font-size: 1.2rem;
  color: #e2ebff;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(0,191,255,0.25);
}

.tech-hero-slide.tech-hero-ps5 .hero-button {
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 40px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0,191,255,0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.tech-hero-slide.tech-hero-ps5 .hero-button:hover {
  box-shadow: 0 0 35px rgba(255,0,255,0.6), 0 0 45px rgba(0,191,255,0.5);
  transform: scale(1.05);
}

/* === Mobile Responsive Fix === */
@media (max-width: 900px) {
  .tech-hero-slide.tech-hero-ps5 .hero-content {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 60px 0;
  }

  .tech-hero-slide.tech-hero-ps5 .hero-subtitle {
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0,191,255,0.2);
  }

  .tech-hero-slide.tech-hero-ps5 .hero-button {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 10px 26px;
  }
}
/* === Spazio superiore per il blocco hero (versione pulita) === */
.tech-hero-slider {
  margin-top: 120px; /* regola tra 100 e 150px per adattarlo perfettamente al logo */
  position: relative;
  z-index: 1;
}
/* Centra meglio il pulsante PS5 */
.tech-hero-ps5 .hero-content {
  bottom: 60px; /* regola tra 50 e 100 per alzarlo o abbassarlo */
}
/* Posizionamento centrato per i pulsanti hero */
.tech-hero-slide .hero-content {
  position: absolute;
  bottom: 80px; /* regola l'altezza se serve */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
/* === Ottimizzazione HERO PS5 + NOTEBOOK === */
.tech-hero-slider {
  margin-top: 130px; /* distacco dal logo */
  height: 90vh; /* proporzione visiva ottimale */
  overflow: hidden;
  position: relative;
}

/* immagini background più armoniche */
.tech-hero-slide {
  background-size: cover;
  background-position: center;
  height: 100%;
}

/* --- Pulsante migliorato --- */
.hero-button {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(90deg, #00c3ff, #ff00ff);
  color: white;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 10;
}

.hero-button:hover {
  transform: scale(1.07);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.8);
}

/* --- Posizione personalizzata per ogni slide --- */
.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 50px; /* spostamento in basso */
  right: 8%; /* posizionato verso destra */
  text-align: right;
}

.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 60px; /* leggermente più alto per simmetria */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* --- Fix clic pulsante notebook (overlay invisibile) --- */
.tech-hero-slide .hero-content,
.hero-button {
  z-index: 15;
  pointer-events: auto;
}

.tech-hero-slide {
  pointer-events: none;
}

.tech-hero-slide.active {
  pointer-events: all;
}
/* === FIX HERO COMPLETO 2025 (ComporA Neon Tech) === */

/* 1. Spazio e proporzione generale */
.tech-hero-slider {
  margin-top: 140px !important; /* abbassa tutto sotto il logo */
  height: 90vh !important;
  overflow: hidden;
  position: relative;
  display: block;
}

/* 2. Background immagini */
.tech-hero-slide {
  background-size: cover !important;
  background-position: center center !important;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.tech-hero-slide.active {
  opacity: 1 !important;
  z-index: 2;
  pointer-events: all;
}

/* 3. Contenitore pulsante */
.tech-hero-slide .hero-content {
  position: absolute;
  z-index: 10;
}

/* PS5 → pulsante in basso a destra */
.tech-hero-ps5 .hero-content {
  bottom: 50px;
  right: 7%;
  text-align: right;
}

/* NOTEBOOK → pulsante centrato e cliccabile */
.tech-hero-notebook .hero-content {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* 4. Pulsante migliorato */
.hero-button {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 40px;
  background: linear-gradient(90deg, #00c3ff, #ff00ff);
  color: white;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  transition: all 0.25s ease-in-out;
  pointer-events: all;
  position: relative;
}

.hero-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.9);
}
/* === Ridimensionamento leggero HERO === */
.tech-hero-slider {
  height: 78vh !important; /* valore ideale: tra 75vh e 80vh */
}
/* === Bottone PS5 ottimizzato neon 3D === */
.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 35px !important; /* più basso */
  right: 5% !important;    /* più verso il margine */
  text-align: right;
  z-index: 20;
}

/* --- Stile migliorato pulsante --- */
.hero-button {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 45px;
  background: linear-gradient(90deg, #00baff, #ff00ff);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.4), 0 0 50px rgba(0, 191, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

/* effetto bagliore neon pulsante */
.hero-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.hero-button:hover::before {
  transform: scale(1);
  opacity: 1;
}

.hero-button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.9), 0 0 60px rgba(255, 0, 255, 0.7);
}
/* === HERO PS5 + NOTEBOOK FINALE COMPOSA === */
.tech-hero-slider {
  margin-top: 140px !important;
  height: 80vh !important; /* riduce leggermente l'altezza */
  overflow: hidden;
  position: relative;
}

/* Gestione immagini */
.tech-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover !important;
  background-position: center bottom !important; /* centrata più in basso */
  filter: brightness(1.1) contrast(1.05);
  pointer-events: none;
}

.tech-hero-slide.active {
  opacity: 1 !important;
  z-index: 2;
  pointer-events: all;
}

/* --- PS5 Slide --- */
.tech-hero-ps5 {
  background-image: url('/cdn/shop/files/hero-ps5_png.png?v=1760265090') !important;
}

.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 25px !important; /* ora più in basso */
  right: 4% !important; /* spostato bene a destra */
  text-align: right;
  z-index: 15;
}

/* --- Notebook Slide --- */
.tech-hero-notebook {
  background-image: url('/cdn/shop/files/hero-notebook_png.png?v=1760268849') !important;
}

.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 15;
}

/* --- Bottone neon tech migliorato --- */
.hero-button {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.5), 0 0 40px rgba(0,191,255,0.3);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.hero-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.hero-button:hover::before {
  transform: scale(1);
  opacity: 1;
}

.hero-button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.6);
}
/* === COMPOSA FIX POSIZIONAMENTO HERO === */

/* Hero: spinta in basso dal logo */
.tech-hero-slider {
  margin-top: 200px !important; /* prima era 140, ora 200: spinge tutto più giù */
  height: 82vh !important; /* altezza proporzionata */
  overflow: hidden;
  position: relative;
  display: block;
}

/* Slide immagini */
.tech-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover !important;
  background-position: center bottom !important; /* centrata più in basso */
  filter: brightness(1.08) contrast(1.05);
  pointer-events: none;
}

.tech-hero-slide.active {
  opacity: 1 !important;
  z-index: 2;
  pointer-events: all;
}

/* Immagini PS5 e Notebook */
.tech-hero-ps5 {
  background-image: url('/cdn/shop/files/hero-ps5_png.png?v=1760265090') !important;
}

.tech-hero-notebook {
  background-image: url('/cdn/shop/files/hero-notebook_png.png?v=1760268849') !important;
}

/* Posizionamento bottone PS5 */
.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 20px !important; /* scende ancora */
  right: 5% !important;
  text-align: right;
  z-index: 20;
}

/* Posizionamento bottone Notebook */
.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}

/* Pulsante Neon Tech migliorato */
.hero-button {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 45px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.8px;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.5), 0 0 40px rgba(0,191,255,0.3);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.hero-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.hero-button:hover::before {
  transform: scale(1);
  opacity: 1;
}

.hero-button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.6);
}
/* === COMPOSA HERO DEFINITIVA - Leona Dev Mode === */
.tech-hero-slider {
  margin-top: 200px !important; /* distacco sotto il logo */
  height: 78vh !important; /* proporzione perfetta */
  overflow: hidden;
  position: relative;
}

.tech-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover !important;
  background-position: center bottom !important;
  filter: brightness(1.1) contrast(1.05);
  pointer-events: none;
}

.tech-hero-slide.active {
  opacity: 1 !important;
  z-index: 2;
  pointer-events: all;
}

/* PS5 slide background */
.tech-hero-ps5 {
  background-image: url('/cdn/shop/files/hero-ps5_png.png?v=1760265090') !important;
}

/* Notebook slide background */
.tech-hero-notebook {
  background-image: url('/cdn/shop/files/hero-notebook_png.png?v=1760268849') !important;
}

/* --- PS5 button position (bottom-right) --- */
.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 35px !important;
  right: 5% !important;
  text-align: right;
  z-index: 20;
}

/* --- Notebook button (center bottom) --- */
.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}

/* --- Neon button styling --- */
.hero-button {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.8px;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.5), 0 0 40px rgba(0,191,255,0.3);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.hero-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.hero-button:hover::before {
  transform: scale(1);
  opacity: 1;
}

.hero-button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 35px rgba(0, 191, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.6);
}

/* === HERO POSIZIONATA E OTTIMIZZATA === */
.tech-hero-slider {
  margin-top: 230px !important;
  height: 75vh !important;
  overflow: hidden;
  position: relative;
}

/* PS5 in basso a destra */
.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 40px !important;
  right: 8% !important;
  text-align: right;
  z-index: 20;
}

/* Notebook in basso e centrato */
.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 60px !important;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}

/* Overlay per migliorare contrasto */
.tech-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

/* mantiene i contenuti sopra */
.tech-hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

/* Bottone Neon + glow animato */
.hero-button {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00c6ff, #ff00ff);
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.7px;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.6),
              0 0 45px rgba(255, 0, 255, 0.4);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  animation: pulseGlow 3s infinite ease-in-out;
}

/* effetto hover più forte */
.hero-button:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0,191,255,0.9),
              0 0 80px rgba(255,0,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

/* animazione bagliore */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.6),
                0 0 45px rgba(255, 0, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.9),
                0 0 70px rgba(255, 0, 255, 0.7);
    transform: scale(1.06);
  }
}
/* === ENHANCEMENTS BY LEONA DEV MODE === */

/* overlay leggero per migliorare contrasto su PS5 e notebook */
.tech-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

/* mantenere i contenuti sopra l’overlay */
.tech-hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

/* effetto glow pulsante ciclico (ogni 3s) */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.6),
                0 0 45px rgba(255, 0, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.9),
                0 0 70px rgba(255, 0, 255, 0.7);
    transform: scale(1.06);
  }
}

/* applica il glow ciclico */
.hero-button {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* intensifica l’effetto al passaggio del mouse */
.hero-button:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0,191,255,0.9),
              0 0 80px rgba(255,0,255,0.7);
}
/* === FIX POSIZIONAMENTO HERO COMPLETO === */

/* Sposta tutto il blocco hero più in basso (~10 cm) */
.tech-hero-slider {
  margin-top: 320px !important;   /* prima 230px → scende di ~90 px */
  height: 78vh !important;
  overflow: hidden;
  position: relative;
  display: block;
}

/* Rende il bottone notebook sempre cliccabile */
.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 9999;                /* sopra overlay e immagini */
  pointer-events: all !important;
}

/* Aggiunge un secondo bottone di sicurezza visibile sempre */
.tech-hero-notebook::after {
  content: "Scopri i Notebook";
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 42px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.5), 0 0 40px rgba(0,191,255,0.3);
  cursor: pointer;
  z-index: 9998;
}

/* Rende il pseudo-bottone cliccabile */
.tech-hero-notebook::after:hover {
  transform: translateX(-50%) scale(1.05);
}

/* Link effettivo sul pseudo-bottone */
.tech-hero-notebook::after {
  pointer-events: all;
}
.tech-hero-notebook::after {
  content: attr(content);
}
.tech-hero-notebook::after {
  cursor: pointer;
}
.tech-hero-notebook::after {
  content: "Scopri i Notebook";
}
.tech-hero-notebook::after {
  pointer-events: all;
}
.tech-hero-notebook::after {
  content: "Scopri i Notebook";
}
.tech-hero-notebook::after {
  cursor: pointer;
}
.tech-hero-notebook::after {
  pointer-events: all;
}
/* === FIX RIDIMENSIONAMENTO IMMAGINI HERO === */

/* adatta entrambe le immagini all’interno della slide */
.tech-hero-slide {
  background-size: contain !important;   /* mostra tutta l’immagine */
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
}

/* aggiunge un leggero padding sopra e sotto per dare respiro */
.tech-hero-slider {
  padding-top: 40px !important;
  padding-bottom: 20px !important;
}

/* mantiene proporzioni corrette su tutti gli schermi */
.tech-hero-slide img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}

/* bottone PS5 stabile in basso a destra */
.tech-hero-ps5 .hero-content {
  position: absolute;
  bottom: 50px;
  right: 5%;
  text-align: right;
}

/* bottone Notebook centrato e cliccabile */
.tech-hero-notebook .hero-content {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  text-align: center;
  pointer-events: all;
}
/* === FINE TUNING HERO IMMAGINI === */

/* riduzione PS5 per dare più spazio sopra */
.tech-hero-ps5 {
  transform: scale(0.88) translateY(25px);
  transform-origin: center bottom;
}

/* riduzione Notebook per centratura ottimale */
.tech-hero-notebook {
  transform: scale(0.85) translateY(15px);
  transform-origin: center bottom;
}

/* migliora il bottone PS5 - più elegante */
.tech-hero-ps5 .hero-button {
  background: linear-gradient(90deg, #0ff 0%, #ff00ff 100%);
  border-radius: 50px;
  font-weight: 700;
  padding: 14px 40px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0,255,255,0.4), 0 0 35px rgba(255,0,255,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-hero-ps5 .hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,255,255,0.7), 0 0 50px rgba(255,0,255,0.7);
}

/* migliora il bottone Notebook - glow reattivo */
.tech-hero-notebook .hero-button {
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  border-radius: 50px;
  font-weight: 700;
  padding: 14px 42px;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 0 25px rgba(255,0,255,0.4), 0 0 40px rgba(0,191,255,0.3);
  transition: all 0.3s ease-in-out;
}

.tech-hero-notebook .hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255,0,255,0.7), 0 0 50px rgba(0,191,255,0.7);
}
/* === INTEGRAZIONE VISIVA HERO CON LA PAGINA === */

.tech-hero-slider {
  margin-top: 80px !important; /* mantiene spazio dal menu */
  height: 90vh !important;     /* riempie più verticalmente la finestra */
  background: radial-gradient(circle at top, rgba(0,0,0,0.7), #000);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* la slide si adatta perfettamente allo spazio, senza bande nere */
.tech-hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover !important;    /* copre l’area, senza vuoti */
  background-position: center center !important;
  transition: opacity 0.8s ease-in-out;
}

/* immagine PS5 più integrata */
.tech-hero-ps5 {
  transform: scale(0.92) translateY(0px);
  background-color: transparent;
}

/* immagine notebook più immersiva */
.tech-hero-notebook {
  transform: scale(0.90) translateY(0px);
  background-color: transparent;
}

/* bottone PS5 in basso a destra elegante */
.tech-hero-ps5 .hero-button {
  position: absolute;
  bottom: 60px;
  right: 80px;
  background: linear-gradient(90deg, #00d4ff, #ff00ff);
  border-radius: 50px;
  font-weight: 700;
  padding: 14px 42px;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,191,255,0.4), 0 0 40px rgba(255,0,255,0.3);
  transition: all 0.3s ease-in-out;
}

.tech-hero-ps5 .hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0,191,255,0.6), 0 0 55px rgba(255,0,255,0.6);
}

/* bottone notebook centrato e cliccabile */
.tech-hero-notebook .hero-button {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00bfff, #ff00ff);
  border-radius: 50px;
  font-weight: 700;
  padding: 14px 42px;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 0 25px rgba(255,0,255,0.4), 0 0 40px rgba(0,191,255,0.3);
  transition: all 0.3s ease-in-out;
  pointer-events: all;
}
/* === SFONDO UNIFORME E NEON TECH === */

body {
  background-color: #000000 !important; /* nero puro elegante */
  color: #ffffff;
  overflow-x: hidden;
}

/* miglior fusione del menu e del logo con lo sfondo */
header, .tech-header, .site-header {
  background: transparent !important;
  box-shadow: none !important;
  position: relative;
  z-index: 1000;
}

/* aggiunge leggero glow sotto il menu per effetto neon */
.tech-nav {
  box-shadow: 0 0 20px rgba(0,255,255,0.3), 0 0 30px rgba(255,0,255,0.2);
  border-radius: 60px;
}
/* === OTTIMIZZAZIONE HERO SLIDER - VERSIONE STABILE === */
.tech-hero-slider {
  position: relative;
  width: 100%;
  height: 90vh; /* altezza ottimale, integrata con header */
  margin-top: 60px; /* abbassa la hero di circa 6 cm reali sullo schermo */
  overflow: hidden;
  background-color: #000; /* elimina bande grigie o trasparenti */
}

.tech-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  transition: opacity 1.2s ease-in-out;
  opacity: 0;
}

.tech-hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* PS5: centrata, ridimensionata e integrata meglio */
.tech-hero-ps5 {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center bottom;
  transform: scale(0.96);
}

/* Notebook: più nitido e centrato */
.tech-hero-notebook {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center bottom;
  transform: scale(0.98);
}

/* Bottone PS5 - in basso a destra */
.tech-hero-ps5 .hero-button {
  position: absolute;
  bottom: 55px;
  right: 65px;
  background: linear-gradient(90deg, #00c3ff, #ff00ff);
  color: white;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
  transition: all 0.3s ease;
}
.tech-hero-ps5 .hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.6);
}

/* Bottone Notebook - centrato e cliccabile */
.tech-hero-notebook .hero-button {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00c3ff, #ff00ff);
  color: white;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease;
  pointer-events: all;
}
.tech-hero-notebook .hero-button:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 0 35px rgba(0, 200, 255, 0.6);
}
/* === MIGLIORAMENTO VISIVO SLIDE PS5 === */
.tech-hero-ps5 {
  filter: brightness(1.15) contrast(1.25) saturate(1.3);
  background-blend-mode: overlay;
  background-color: rgba(10, 10, 30, 0.35);
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center bottom;
  transform: scale(0.97);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: filter 0.6s ease-in-out;
}

.tech-hero-ps5.active {
  filter: brightness(1.25) contrast(1.35) saturate(1.4);
}

/* Effetto di profondità al bottone PS5 */
.tech-hero-ps5 .hero-button {
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.4), 0 0 40px rgba(0, 200, 255, 0.3);
}
.tech-hero-ps5 .hero-button:hover {
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.6), 0 0 55px rgba(0, 200, 255, 0.4);
}
/* === MIGLIORAMENTO VISIVO SLIDE NOTEBOOK === */
.tech-hero-notebook {
  filter: brightness(1.2) contrast(1.3) saturate(1.35);
  background-blend-mode: overlay;
  background-color: rgba(15, 10, 40, 0.4);
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center bottom;
  transform: scale(0.97);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: filter 0.6s ease-in-out;
}

.tech-hero-notebook.active {
  filter: brightness(1.3) contrast(1.35) saturate(1.45);
}

/* Effetto bagliore sul bottone NOTEBOOK */
.tech-hero-notebook .hero-button {
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.4), 0 0 40px rgba(255, 0, 255, 0.3);
}
.tech-hero-notebook .hero-button:hover {
  box-shadow: 0 0 35px rgba(0, 200, 255, 0.6), 0 0 55px rgba(255, 0, 255, 0.4);
}
/* === TRANSIZIONE FADE TRA SLIDES === */
.tech-hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.tech-hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* === POSIZIONE E STILE PULSANTE HERO === */
.hero-button {
  position: absolute;
  bottom: 10%;
  right: 12%;
  transform: translateY(20px);
  background: linear-gradient(90deg, #00cfff, #ff00ff);
  color: #fff;
  padding: 14px 38px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.3), 0 0 35px rgba(0, 200, 255, 0.25);
  transition: all 0.3s ease-in-out;
}

.hero-button:hover {
  transform: translateY(25px) scale(1.05);
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
}
/* === Sposta ulteriormente il pulsante PS5 verso il basso e destra === */
.tech-hero-ps5 .hero-button {
  bottom: 20px !important;  /* più basso */
  right: 5% !important;     /* più verso il bordo destro */
  padding: 16px 44px;
  font-size: 1.05rem;
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
}

/* === Metti in risalto il bottone Notebook === */
.tech-hero-notebook .hero-button {
  padding: 18px 48px;  /* più grande */
  font-size: 1.1rem;
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.6), 0 0 70px rgba(255, 0, 255, 0.5);
  transition: all 0.3s ease;
}

.tech-hero-notebook .hero-button:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 55px rgba(0, 200, 255, 0.8), 0 0 90px rgba(255, 0, 255, 0.7);
}
/* === UNIFICA STILE BOTTONE PS5 E NOTEBOOK === */

/* Bottone PS5 (Scopri le Offerte) */
.tech-hero-ps5 .hero-button {
  position: absolute;
  bottom: 25px !important;
  right: 5% !important;
  background: linear-gradient(90deg, #00cfff, #ff00ff);
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease-in-out;
}

.tech-hero-ps5 .hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(255, 0, 255, 0.7), 0 0 70px rgba(0, 200, 255, 0.6);
}

/* Bottone Notebook (identico per stile e comportamento) */
.tech-hero-notebook .hero-button {
  position: absolute;
  bottom: 70px; /* centrato visivamente nella slide */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00cfff, #ff00ff);
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease-in-out;
  pointer-events: all;
}

.tech-hero-notebook .hero-button:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 0 45px rgba(255, 0, 255, 0.7), 0 0 70px rgba(0, 200, 255, 0.6);
}
/* === FIX BOTTONE NOTEBOOK CLICCABILE E STILE UNIFICATO === */
.tech-hero-notebook {
  position: relative;
  z-index: 1;
}

.tech-hero-notebook .hero-content {
  position: relative;
  z-index: 99;
  pointer-events: all !important;
}

/* Bottone Notebook identico a quello PS5 */
.tech-hero-notebook .hero-button {
  position: absolute;
  bottom: 35px !important; /* più in basso e ben visibile */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00cfff, #ff00ff);
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease-in-out;
  z-index: 10000; /* forza la priorità visiva */
  pointer-events: all !important; /* riattiva il click */
}

.tech-hero-notebook .hero-button:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 0 45px rgba(255, 0, 255, 0.7), 0 0 70px rgba(0, 200, 255, 0.6);
}
/* === NUOVO BOTTONE LIVELLO SUPERIORE - NOTEBOOK === */
.hero-button-overlay {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 99999;
  pointer-events: all !important;
}

.hero-button-top {
  display: inline-block;
  background: linear-gradient(90deg, #00cfff, #ff00ff);
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.hero-button-top:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(255, 0, 255, 0.7), 0 0 70px rgba(0, 200, 255, 0.6);
}
/* === POSIZIONAMENTO DEFINITIVO BOTTONE NOTEBOOK - SINISTRA E PIÙ IN ALTO === */
.hero-button-overlay {
  position: absolute;
  bottom: 115px; /* sollevato di ~80px rispetto a prima */
  left: 10%; /* spostato verso sinistra */
  transform: none; /* rimuove il centraggio */
  width: auto;
  z-index: 99999;
  pointer-events: all !important;
}

.hero-button-top {
  display: inline-block;
  background: linear-gradient(90deg, #00cfff, #ff00ff);
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease-in-out;
}

.hero-button-top:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(255, 0, 255, 0.7), 0 0 70px rgba(0, 200, 255, 0.6);
}
/* === AGGIUSTAMENTO POSIZIONE BOTTONE NOTEBOOK: +2cm A DESTRA === */
.hero-button-overlay {
  position: absolute;
  bottom: 115px;   /* stessa altezza attuale */
  left: 14%;       /* spostato ~40px più a destra rispetto a prima */
  transform: none;
  width: auto;
  z-index: 99999;
  pointer-events: all !important;
}
/* === POSIZIONE FINALE BOTTONE NOTEBOOK (+2cm A DESTRA) === */
.hero-button-overlay {
  position: absolute;
  bottom: 115px;   /* altezza invariata */
  left: 18%;       /* spostato ancora ~40px verso destra */
  transform: none;
  width: auto;
  z-index: 99999;
  pointer-events: all !important;
}
/* === RESPONSIVE FIX - BOTTONE NOTEBOOK === */

/* Tablet (max 1024px) */
@media screen and (max-width: 1024px) {
  .hero-button-overlay {
    bottom: 90px;     /* leggermente più in alto */
    left: 50%;        /* centrato visivamente */
    transform: translateX(-50%);
  }

  .hero-button-top {
    padding: 14px 38px;
    font-size: 1rem;
  }
}

/* Smartphone (max 768px) */
@media screen and (max-width: 768px) {
  .hero-button-overlay {
    bottom: 60px;     /* più vicino al bordo inferiore */
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-button-top {
    padding: 12px 32px;
    font-size: 0.95rem;
    border-radius: 35px;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4),
                0 0 35px rgba(0, 200, 255, 0.3);
  }
}
/* --- Ottimizzazione Mobile ComporA --- */
@media (max-width: 768px) {
  /* Hero */
  .tech-hero {
    padding: 40px 10px;
    text-align: center;
    background-position: center top;
  }
  .tech-hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .tech-hero p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .tech-hero .btn-neon {
    font-size: 0.95rem;
    padding: 10px 24px;
  }

  /* Categorie */
  .categorie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 20px 10px;
  }
  .categoria-card img {
    width: 90%;
    max-width: 140px;
    margin: 0 auto;
  }
  .categoria-card span {
    font-size: 0.9rem;
  }

  /* Offerte lampo */
  .offerte-lampo {
    padding: 50px 15px;
  }
  .offerte-lampo h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  .offerte-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links, .footer-social {
    margin-top: 25px;
  }
  .footer-social h4 { margin-bottom: 10px; }
  .footer-email {
    display: block;
    margin: 10px auto 0;
  }
}
@media (max-width: 480px) {
  * {
    filter: none !important;
    text-shadow: 0 0 4px rgba(0,255,204,0.4);
  }
}
html { scroll-behavior: smooth; }
/* --- Ottimizzazione versione smartphone (solo mobile) --- */
@media (max-width: 768px) {

  /* Migliora contrasto e profondità delle slide */
  .hero-slide img {
    filter: brightness(0.9) contrast(1.15);
    transition: filter 0.3s ease-in-out;
  }

  /* Riduce il velo chiaro sopra le immagini */
  .hero-slide::after {
    background: rgba(0, 0, 0, 0.25) !important;
  }

  /* Testo più leggibile con lieve ombra */
  .hero-content {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  }

  /* Pulsanti più visibili e centrati */
  .hero-content .btn-neon {
    font-size: 14px;
    padding: 10px 22px;
    margin-top: 12px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
  }

  /* Regola proporzioni dell’immagine per evitare zoom o tagli */
  .hero-slide {
    background-position: center;
    background-size: cover;
  }

  /* Migliore spaziatura del testo */
  .hero-content h1,
  .hero-content h2,
  .hero-content p {
    line-height: 1.3;
  }
}
/* --- Ottimizzazione versione smartphone (solo mobile) --- */
@media (max-width: 768px) {

  /* Migliora contrasto e profondità delle slide */
  .hero-slide img {
    filter: brightness(0.9) contrast(1.15);
    transition: filter 0.3s ease-in-out;
  }

  /* Riduce il velo chiaro sopra le immagini */
  .hero-slide::after {
    background: rgba(0, 0, 0, 0.25) !important;
  }

  /* Testo più leggibile con lieve ombra */
  .hero-content {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  }

  /* Pulsanti più visibili e centrati */
  .hero-content .btn-neon {
    font-size: 14px;
    padding: 10px 22px;
    margin-top: 12px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
  }

  /* Regola proporzioni dell’immagine per evitare zoom o tagli */
  .hero-slide {
    background-position: center;
    background-size: cover;
  }

  /* Migliore spaziatura del testo */
  .hero-content h1,
  .hero-content h2,
  .hero-content p {
    line-height: 1.3;
  }

  /* --- Aggiunta transizione fade tra slide --- */
  .hero-slider {
    position: relative;
    overflow: hidden;
  }

  .hero-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slide.active {
    opacity: 1;
    position: relative;
  }
}
/* --- Effetto neon per icona carrello --- */
.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.cart-icon i {
  transition: all 0.3s ease;
}

.cart-icon:hover i {
  color: #00ffff;
  text-shadow: 0 0 12px #00ffff, 0 0 24px #00ffff;
  transform: scale(1.1);
}

/* Glow automatico se ci sono articoli nel carrello */
.cart-icon span {
  animation: pulse-neon 1.8s infinite alternate;
}

@keyframes pulse-neon {
  from {
    box-shadow: 0 0 6px #00ffff, 0 0 12px #00ffff;
  }
  to {
    box-shadow: 0 0 12px #00ffff, 0 0 24px #00ffff;
  }
}
.btn-neon {
  background: transparent;
  border: 1.5px solid #00ffff;
  color: #00ffff;
  padding: 12px 28px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  transiti.on: all 0.3s ease;
}

.btn-neon:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}
/* --- Animazione shake neon al click (aggiunta prodotto) --- */
@keyframes cart-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}

.cart-icon.shake {
  animation: cart-shake 0.35s ease-in-out;
}
.cart-icon svg,
.cart-icon i {
  color: #00ffff !important;
  stroke: #00ffff !important;
}
/* --- HEADER NEON STYLE --- */
.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.85);
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,255,255,0.2);
}

.tech-nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-nav ul li a:hover {
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
}

/* --- Icona carrello neon --- */
.cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cart-btn {
  position: relative;
  display: inline-block;
  padding: 12px 32px; /* più grande */
  border-radius: 35px;
  background: linear-gradient(90deg, #00ffff, #8b00ff);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  box-shadow: 0 0 14px #00ffff, 0 0 30px #8b00ff;
  transition: all 0.25s ease;
}
.cart-btn:hover {
  transform: scale(1.08);

/* Cart button neon (preciso e stabile) */
.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #00ffff, #8b00ff);
  color: #fff;
  padding: 12px 30px;
  border-radius: 35px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  box-shadow: 0 0 15px #00ffff, 0 0 25px #8b00ff;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}
.cart-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px #00ffff, 0 0 45px #8b00ff;
}

.cart-count {
  position: absolute;
  top: -9px;
  right: -11px;
  background: #00ffff;
  color: #000;
  font-size: 18px; /* font-size: 13px; */
  font-weight: 700;
  border-radius: 50%;
  padding: 2px 9px; /* padding: 3px 7px; */
  box-shadow: 0 0 10px #00ffff, 0 0 20px #8b00ff;
  -webkit-text-fill-color: #fff;
}

}

/* small adjustment for header spacing */
.tech-nav ul { display:flex; gap: 22px; align-items:center; }
.cart-btn {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #8b00ff; /* background: #00ffff; */
  color: #000;
  font-size: 16px; /* font-size: 13px; */
  font-weight: 700;
  border-radius: 50%;
  padding: 2px 8px; /* padding: 3px 7px; */
  box-shadow: 0 0 10px #00ffff, 0 0 20px #8b00ff;
  -webkit-text-fill-color: #fff;
}
.categoria-card[href*="tablet"] {
  background: url('/cdn/shop/files/tablet-neon.png?v=123456789') center/cover no-repeat;
}
.tech-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 18px; /* ← distanza equilibrata tra voci */
  margin: 0;
  padding: 0;
}
.tech-nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* ===== MENU MOBILE COMPOSIZIONE ===== */
@media (max-width: 768px) {
  .tech-header {
    padding: 12px 18px;
  }

  .tech-nav ul {
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid #00ffff;
    border-bottom: 1px solid #8b00ff;
    padding: 18px 0;
    width: 100%;
    margin-top: 12px;
  }

  .tech-nav ul li {
    text-align: center;
    width: 100%;
  }

  .tech-nav ul li a {
    display: block;
    padding: 10px 0;
    font-size: 17px;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
    transition: all 0.25s ease;
  }

  .tech-nav ul li a:hover {
    color: #fff;
    text-shadow: 0 0 12px #8b00ff, 0 0 24px #00ffff;
  }

  /* evidenziazione carrello */
  .cart-btn {
    width: 90%;
    margin: 10px auto;
    justify-content: center;
  }
}
/* --- Allineamento perfetto barra menu desktop e mobile --- */
.tech-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
}

.tech-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: color 0.2s ease;
}

.tech-nav ul li a:hover {
  color: #00ffff;
}

/* --- Ottimizzazione mobile compatta --- */
@media (max-width: 768px) {
  .tech-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .tech-nav ul {
    flex-direction: row; /* ← mantiene le voci in alto allineate */
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    background: transparent;
    padding: 0;
    margin-top: 8px;
  }

  .tech-nav ul li a {
    font-size: 15px;
    text-shadow: none;
    color: #00ffff;
  }

  .cart-btn {
    margin-left: auto;
    margin-top: 0;
  }
}
/* === NAVBAR FIX SAFE VERSION 16/10/2025 === */
.tech-header .tech-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px; /* spaziatura equilibrata */
}

.tech-header .cart-button {
  margin-left: 36px; /* separa dal menu senza spostare blocchi */
}

.site-logo img {
  vertical-align: middle; /* centratura visiva */
}

/* Hover links più fluido */
.tech-header .tech-nav a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.tech-header .tech-nav a:hover {
  transform: translateY(-1px);
}

/* Ottimizzazione mobile */
@media (max-width: 768px) {
  .tech-header .tech-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  .tech-header .cart-button {
    margin-left: 0;
  }
}
/* === NAVBAR ALIGNMENT FINAL FIX 16/10/2025 === */
.tech-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
}

/* Allinea e centra le voci del menu */
.tech-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Corregge posizione carrello */
.cart-btn {
  margin-left: 40px !important;
  position: relative;
  top: 0;
}

/* Centra perfettamente il logo rispetto alla barra */
.site-logo img {
  vertical-align: middle;
  margin-top: -4px;
}
/* --- Responsive Header per dispositivi mobili --- */
@media (max-width: 1024px) {
  .tech-header {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }

  .tech-header .logo-img {
    max-height: 85px;
    margin-bottom: 10px;
  }

  .tech-header nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-left: 0;
  }

  .tech-header a {
    font-size: 14px;
  }
}

/* Smartphone più piccoli */
@media (max-width: 600px) {
  .tech-header nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tech-header a {
    font-size: 13px;
  }

  .tech-header .logo-img {
    max-height: 70px;
  }
}


/* #MOD 31/10/2025 Imposto una larghezza fissa al pulsante del carrello */
.tech-nav a.cart-btn {
    min-width: 180px;
}
/* #MOD 31/10/2025 Sistemo gli spazi e allineamenti */
@media (max-width: 1024px) {
  body #shopify-section-tech-header .tech-header {
      padding: 15px;
  }
  body #shopify-section-tech-header .tech-header nav {
    margin: 0 auto;
  }
  .tech-nav a.cart-btn {
      min-width: 160px;
  }
}
@media (max-width: 900px) {
  .tech-nav ul {
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  .tech-header a {
    font-size: 12px;
  }
  .cart-btn {
    margin-left: auto !important;
  }
}
@media (max-width: 768px) {
  .footer-desc { margin: 0 auto; }
}
/* #MOD# */