/*
Theme Name: AimXpert Gaming
Theme URI: https://scriptaimxpert.it
Description: Tema custom gaming dark per AimXpert — production quality con effetti 3D, particelle canvas, glitch text
Author: Marco Eugenio Monaco
Version: 2.0
License: Proprietary
Text Domain: aimxpert
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ================================================================
   VARIABLES
   ================================================================ */
:root {
  --ax-bg: #0a0a0a;
  --ax-bg2: #0e0e0e;
  --ax-surface: #111111;
  --ax-surface2: #141414;
  --ax-border: rgba(0, 174, 239, 0.15);
  --ax-border-solid: #1a1a1a;
  --ax-accent: #00AEEF;
  --ax-accent-hover: #0077B6;
  --ax-accent2: #00c8ff;
  --ax-accent-glow: rgba(0, 174, 239, 0.3);
  --ax-white: #FFFFFF;
  --ax-muted: #8A8A8A;
  --ax-danger: #e63946;
  --ax-success: #2a9d8f;
  --ax-warning: #f4a261;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-display: 'Orbitron', 'Poppins', monospace;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--ax-bg);
  color: var(--ax-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--ax-accent); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ax-bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ax-accent); }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: clamp(32px, 6vw, 72px); }
h2 { font-size: clamp(24px, 4vw, 48px); }
h3 { font-size: clamp(18px, 2.5vw, 28px); }
p { color: var(--ax-muted); line-height: 1.7; font-weight: 300; }

.text-accent { color: var(--ax-accent); }
.text-gradient {
  background: linear-gradient(135deg, var(--ax-accent), var(--ax-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.ax-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 5%;
  height: 70px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ax-border);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ax-navbar.hidden { transform: translateY(-100%); }

.ax-navbar-logo { display: flex; align-items: center; gap: 12px; }
.ax-navbar-logo-img {
  height: 20px;
  width: auto;
  transition: filter 0.3s;
}
.ax-navbar-logo:hover .ax-navbar-logo-img {
  filter: drop-shadow(0 0 15px var(--ax-accent-glow));
}
/* Fallback testo per footer */
.ax-navbar-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--ax-white);
}

.ax-navbar-links { display: flex; gap: 8px; align-items: center; }
.ax-navbar-links a {
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--ax-muted);
  border-radius: 8px;
  transition: all 0.2s;
  text-transform: uppercase;
  position: relative;
}
.ax-navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--ax-accent);
  transition: all 0.3s;
  border-radius: 1px;
}
.ax-navbar-links a:hover,
.ax-navbar-links a.active {
  color: var(--ax-accent);
}
.ax-navbar-links a.active::after,
.ax-navbar-links a:hover::after {
  left: 16px;
  right: 16px;
}

.ax-navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--ax-accent);
  color: #000 !important;
  font-family: var(--font-body);
  font-weight: 600 !important;
  font-size: 13px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.ax-navbar-cta:hover {
  background: var(--ax-accent2);
  box-shadow: 0 0 30px var(--ax-accent-glow);
  transform: translateY(-1px);
}

/* Burger */
.ax-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.ax-burger span { display: block; width: 22px; height: 2px; background: var(--ax-white); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.ax-mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 30px 5%;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ax-mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.ax-mobile-menu a {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ax-muted);
  border-radius: 12px;
  transition: all 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ax-mobile-menu a:hover { color: var(--ax-accent); background: rgba(0,174,239,0.05); }

/* ================================================================
   HERO
   ================================================================ */
.ax-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

/* Slideshow */
.ax-hero-slideshow { position: absolute; inset: 0; }
.ax-hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease, transform 8s ease;
}
.ax-hero-slide.active {
  opacity: 0.35;
  transform: scale(1);
}

/* Canvas particles */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Overlay & effects */
.ax-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 60%, var(--ax-bg) 100%);
  z-index: 1;
}
.ax-hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--ax-accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 3;
}
.ax-hero-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ax-accent) 50%, transparent);
  opacity: 0.6;
  z-index: 4;
}
.ax-hero-line-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ax-accent) 50%, transparent);
  opacity: 0.3;
  z-index: 4;
}

/* Scan line */
.ax-hero-scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ax-accent), transparent);
  opacity: 0.15;
  animation: scan-down 4s linear infinite;
  pointer-events: none;
  z-index: 4;
}
@keyframes scan-down {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Hero content */
.ax-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
}

/* Logo */
.ax-hero-logo {
  width: 120px; height: 120px;
  object-fit: cover;
  margin: 0 auto 28px;
  border-radius: 20px;
  animation: fadeInUp 0.6s ease-out;
  filter: drop-shadow(0 0 30px var(--ax-accent-glow));
}

/* Badge */
.ax-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--ax-border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ax-accent);
  background: rgba(0,174,239,0.05);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out;
}
.ax-hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--ax-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Glitch headline */
.ax-hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
  text-shadow: 0 0 40px rgba(0,174,239,0.5);
}
.ax-glitch {
  position: relative;
  display: inline-block;
}
.ax-glitch::before,
.ax-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.ax-glitch::before {
  color: var(--ax-accent);
  z-index: -1;
  animation: glitch-1 3s infinite linear alternate-reverse;
}
.ax-glitch::after {
  color: #ff0040;
  z-index: -2;
  animation: glitch-2 2s infinite linear alternate-reverse;
}
@keyframes glitch-1 {
  0%, 90%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  92% { clip-path: inset(20% 0 40% 0); transform: translate(-3px, 1px); }
  94% { clip-path: inset(60% 0 10% 0); transform: translate(3px, -1px); }
  96% { clip-path: inset(30% 0 50% 0); transform: translate(-2px, 2px); }
  98% { clip-path: inset(70% 0 5% 0); transform: translate(2px, -2px); }
}
@keyframes glitch-2 {
  0%, 88%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  90% { clip-path: inset(40% 0 20% 0); transform: translate(2px, -1px); }
  93% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 1px); }
  95% { clip-path: inset(50% 0 30% 0); transform: translate(1px, 2px); }
  97% { clip-path: inset(5% 0 70% 0); transform: translate(-1px, -1px); }
}

/* Hero desc & buttons */
.ax-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--ax-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.ax-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Buttons */
.ax-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--ax-accent);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.ax-btn-primary:hover {
  background: var(--ax-accent2);
  box-shadow: 0 0 40px var(--ax-accent-glow), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.ax-btn-glow {
  animation: glow-pulse 3s ease-in-out infinite;
}
.ax-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.12);
  color: var(--ax-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}
.ax-btn-outline:hover {
  border-color: var(--ax-accent);
  color: var(--ax-accent);
  background: rgba(0,174,239,0.05);
}

/* Hero stats */
.ax-hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}
.ax-hero-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ax-white);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ax-hero-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--ax-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ================================================================
   SECTIONS COMMON
   ================================================================ */
.ax-section {
  padding: 100px 5%;
  position: relative;
}
.ax-section-alt { background: var(--ax-bg2); }
.ax-section-border { border-top: 1px solid var(--ax-border-solid); }
.ax-container { max-width: 1200px; margin: 0 auto; }

.ax-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.ax-section-header p {
  font-size: 17px;
  max-width: 500px;
  margin: 16px auto 0;
  color: #bbb !important;
}
.ax-section-header .ax-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ax-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

/* ================================================================
   GAME SHOWCASE
   ================================================================ */
.ax-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ax-showcase-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.ax-showcase-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.3s;
  transform-style: preserve-3d;
  border: 1px solid var(--ax-border-solid);
  will-change: transform;
}
.ax-showcase-card:hover .ax-showcase-card-inner {
  border-color: var(--ax-accent);
  box-shadow: 0 0 30px rgba(0,174,239,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.ax-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.ax-showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 2;
}
.ax-showcase-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.ax-showcase-card:hover .ax-showcase-card-glow {
  opacity: 1;
}
.ax-showcase-card-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.ax-showcase-card-shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%);
  transition: none;
}
.ax-showcase-card:hover .ax-showcase-card-shine::before {
  animation: shine-sweep 0.6s ease-out forwards;
}
@keyframes shine-sweep {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}
.ax-showcase-card-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ax-white);
  letter-spacing: 1px;
  transform: translateY(4px);
  transition: transform 0.3s;
}
.ax-showcase-card:hover .ax-showcase-card-title {
  transform: translateY(0);
}

/* ================================================================
   CATEGORIES
   ================================================================ */
.ax-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ax-category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  perspective: 1000px;
  display: block;
}
.ax-category-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.3s;
  transform-style: preserve-3d;
  border: 1px solid var(--ax-border-solid);
  will-change: transform;
}
.ax-category-card:hover .ax-category-card-inner {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,174,239,0.1);
}
.ax-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.ax-category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: 2;
}
.ax-category-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.ax-category-card:hover .ax-category-card-glow { opacity: 1; }
.ax-category-card-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.ax-category-card-shine::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.06) 45%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.06) 55%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%);
}
.ax-category-card:hover .ax-category-card-shine::before {
  animation: shine-sweep 0.6s ease-out forwards;
}
.ax-category-card-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 5;
  transition: box-shadow 0.3s;
}
.ax-category-card:hover .ax-category-card-line {
  box-shadow: 0 0 20px currentColor;
}
.ax-category-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 6;
}
.ax-category-card-price {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.ax-category-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ax-white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.ax-category-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.ax-category-card-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.ax-category-card:hover .ax-category-card-link {
  color: var(--ax-accent);
  gap: 10px;
}

/* ================================================================
   AI AIMBOT COMING SOON
   ================================================================ */
.ax-ai-section {
  position: relative;
  padding: 120px 5%;
  overflow: hidden;
}
.ax-ai-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,174,239,0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0,174,239,0.05) 0%, transparent 50%);
  z-index: 0;
}
.ax-ai-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,174,239,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,174,239,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(30deg);
  transform-origin: center top;
  opacity: 0.5;
  z-index: 0;
  animation: grid-pulse 4s ease-in-out infinite;
}
@keyframes grid-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.ax-ai-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,174,239,0.02) 10px,
    rgba(0,174,239,0.02) 20px
  );
  animation: scanlines-move 20s linear infinite;
  z-index: 0;
}
@keyframes scanlines-move {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}
.ax-ai-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.ax-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1px solid var(--ax-border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ax-accent);
  background: rgba(0,174,239,0.08);
  margin-bottom: 24px;
}
.ax-ai-badge .pulse {
  width: 8px; height: 8px;
  background: var(--ax-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--ax-accent);
}
.ax-ai-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.ax-ai-feature-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(17,17,17,0.8);
  border: 1px solid var(--ax-border);
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.ax-ai-feature-card:hover {
  border-color: rgba(0,174,239,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ax-ai-feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0,174,239,0.1);
}
.ax-ai-feature-icon svg {
  width: 28px; height: 28px;
  stroke: var(--ax-accent);
  fill: none;
  stroke-width: 1.5;
}
.ax-ai-feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ax-ai-feature-card p {
  font-size: 14px;
  color: var(--ax-muted);
  line-height: 1.6;
}

/* ================================================================
   FEATURES
   ================================================================ */
.ax-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ax-feature-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--ax-surface);
  border: 1px solid var(--ax-border-solid);
  transition: all 0.3s;
}
.ax-feature-card:hover {
  border-color: rgba(0,174,239,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(0,174,239,0.05);
}
.ax-feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ax-feature-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke-width: 1.5;
}
.ax-feature-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
}
.ax-feature-card p {
  font-size: 14px;
  color: var(--ax-muted);
  line-height: 1.6;
}

/* ================================================================
   STATS
   ================================================================ */
.ax-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ax-stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: var(--ax-surface);
  border: 1px solid var(--ax-border-solid);
  transition: all 0.3s;
}
.ax-stat-card:hover {
  border-color: var(--ax-border);
  box-shadow: 0 0 40px rgba(0,174,239,0.05);
}
.ax-stat-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--ax-accent);
  margin-bottom: 8px;
  text-align: center;
  display: block;
  width: 100%;
}
.ax-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ax-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================================
   CTA
   ================================================================ */
.ax-cta-box {
  position: relative;
  padding: 80px 60px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--ax-border);
}
.ax-cta-box-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,174,239,0.08) 0%, transparent 60%);
}
.ax-cta-box-blur {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  opacity: 0.15;
}
.ax-cta-box-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--ax-accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.ax-cta-box h2 { margin-bottom: 16px; position: relative; z-index: 1; }
.ax-cta-box p { margin-bottom: 36px; font-size: 18px; position: relative; z-index: 1; }
.ax-cta-box .ax-hero-buttons { position: relative; z-index: 1; }

/* ================================================================
   FOOTER
   ================================================================ */
.ax-footer {
  padding: 60px 5% 30px;
  border-top: 1px solid var(--ax-border-solid);
  background: var(--ax-bg);
}
.ax-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.ax-footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  max-width: 300px;
}
.ax-footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ax-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.ax-footer-links a {
  display: block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ax-muted);
  transition: color 0.2s;
}
.ax-footer-links a:hover { color: var(--ax-accent); }

.ax-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--ax-border-solid);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ax-footer-bottom p {
  font-size: 13px;
  color: var(--ax-muted);
}
.ax-footer-bottom a { color: var(--ax-accent); }
.ax-footer-bottom a:hover { text-decoration: underline; }

/* ================================================================
   WOOCOMMERCE OVERRIDES
   ================================================================ */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.woocommerce ul.products li.product {
  background: var(--ax-surface) !important;
  border: 1px solid var(--ax-border-solid) !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  overflow: hidden;
  transition: all 0.3s !important;
}
.woocommerce ul.products li.product:hover {
  border-color: rgba(0,174,239,0.2) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.woocommerce ul.products li.product img {
  border-radius: 0 !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ax-white) !important;
  padding: 16px 20px 4px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}
.woocommerce ul.products li.product .price {
  color: var(--ax-accent) !important;
  font-weight: 700 !important;
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  padding: 0 20px 8px !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--ax-muted) !important;
  font-size: 14px !important;
}
.woocommerce ul.products li.product .button {
  margin: 0 20px 20px !important;
  background: var(--ax-accent) !important;
  color: #000 !important;
  border-radius: 50px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 10px 24px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: all 0.3s !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--ax-accent2) !important;
  box-shadow: 0 0 20px var(--ax-accent-glow) !important;
}

/* Single product */
.woocommerce div.product {
  color: var(--ax-white);
}
.woocommerce div.product .product_title {
  color: var(--ax-white) !important;
  font-family: var(--font-display) !important;
}
.woocommerce div.product p.price {
  color: var(--ax-accent) !important;
  font-family: var(--font-display) !important;
  font-size: 28px !important;
}
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .woocommerce-Tabs-panel p {
  color: var(--ax-muted) !important;
}
.woocommerce div.product .single_add_to_cart_button {
  background: var(--ax-accent) !important;
  color: #000 !important;
  border-radius: 50px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  padding: 14px 36px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s !important;
}
.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--ax-accent2) !important;
  box-shadow: 0 0 30px var(--ax-accent-glow) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background: transparent !important;
  border: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: var(--ax-surface) !important;
  border-color: var(--ax-border-solid) !important;
  border-radius: 8px 8px 0 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--ax-muted) !important;
  font-family: var(--font-body) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--ax-surface2) !important;
  border-bottom-color: var(--ax-surface2) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ax-accent) !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  background: var(--ax-surface2) !important;
  border-color: var(--ax-border-solid) !important;
}
.woocommerce .quantity .qty {
  background: var(--ax-surface) !important;
  color: var(--ax-white) !important;
  border: 1px solid var(--ax-border-solid) !important;
  border-radius: 8px !important;
}
.woocommerce .star-rating span::before { color: var(--ax-warning) !important; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--ax-surface) !important;
  color: var(--ax-muted) !important;
  border-color: var(--ax-border-solid) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ax-accent) !important;
  color: #000 !important;
}

/* WooCommerce notices / messages */
.woocommerce-message,
.woocommerce-info {
  background: var(--ax-surface) !important;
  border-top-color: var(--ax-accent) !important;
  color: var(--ax-white) !important;
}
.woocommerce-error {
  background: var(--ax-surface) !important;
  border-top-color: var(--ax-danger) !important;
  color: var(--ax-white) !important;
}
.woocommerce-message a,
.woocommerce-info a {
  color: var(--ax-accent) !important;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--ax-accent-glow); }
  50% { box-shadow: 0 0 40px var(--ax-accent-glow), 0 0 80px rgba(0,174,239,0.1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ================================================================
   HERO LOGO TEXT (immagine scritta AIMXPERT)
   ================================================================ */
.ax-hero-logo-text {
  max-width: 500px;
  width: 80%;
  height: auto;
  margin: 0 auto 24px;
  animation: fadeInUp 0.6s ease-out;
  filter: drop-shadow(0 0 40px var(--ax-accent-glow));
  border-radius: 12px;
}
.ax-hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ax-muted);
  margin-bottom: 8px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* ================================================================
   SOCIAL BAR
   ================================================================ */
.ax-social-bar {
  padding: 80px 5%;
  background: var(--ax-bg2);
  border-top: 1px solid var(--ax-border-solid);
}
.ax-social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.ax-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border-radius: 12px;
  background: var(--ax-surface);
  border: 1px solid var(--ax-border-solid);
  transition: all 0.3s;
  text-align: center;
  overflow: hidden;
}
.ax-social-card:hover {
  border-color: var(--social-color, var(--ax-accent));
  transform: translateY(-4px);
  box-shadow: 0 0 30px color-mix(in srgb, var(--social-color, var(--ax-accent)) 20%, transparent);
}
.ax-social-card svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  color: var(--social-color, var(--ax-accent));
  transition: transform 0.3s;
  flex-shrink: 0;
}
.ax-social-card:hover svg {
  transform: scale(1.1);
}
.ax-social-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ax-muted);
  transition: color 0.3s;
}
.ax-social-card:hover span {
  color: var(--ax-white);
}

/* ================================================================
   SHOP CUSTOM PAGE
   ================================================================ */
.ax-shop-hero {
  position: relative;
  padding: 140px 5% 60px;
  text-align: center;
  background: linear-gradient(to bottom, #0e0e0e, var(--ax-bg));
  overflow: hidden;
}
.ax-shop-hero h1 {
  color: #ffffff !important;
}
.ax-shop-hero p {
  color: #cccccc !important;
}
.ax-shop-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.ax-shop-nav-link {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ax-muted);
  border: 1px solid var(--ax-border-solid);
  transition: all 0.3s;
}
.ax-shop-nav-link:hover {
  color: var(--cat-color, var(--ax-accent));
  border-color: var(--cat-color, var(--ax-accent));
  background: color-mix(in srgb, var(--cat-color, var(--ax-accent)) 8%, transparent);
}

/* Product grid */
.ax-products-grid {
  display: grid;
  gap: 20px;
}
.ax-products-grid-1 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
.ax-products-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ax-products-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ax-products-grid-4,
.ax-products-grid-5 { grid-template-columns: repeat(3, 1fr); }

/* Product card */
.ax-product-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.ax-product-card-inner {
  background: var(--ax-surface);
  border: 1px solid var(--ax-border-solid);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s;
}
.ax-product-card:hover .ax-product-card-inner {
  border-color: var(--card-color, var(--ax-accent));
}
.ax-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  letter-spacing: 1px;
}
.ax-product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #080808;
}
.ax-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ax-product-card:hover .ax-product-img img {
  transform: scale(1.05);
}
.ax-product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ax-product-info h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--ax-white);
}
.ax-product-info p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ax-muted);
  flex: 1;
  margin-bottom: 16px;
}
.ax-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ax-border-solid);
}
.ax-product-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
}
.ax-product-buy {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.ax-product-buy:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 20px color-mix(in srgb, var(--card-color, var(--ax-accent)) 30%, transparent);
  transform: translateY(-1px);
}

/* ================================================================
   STATS GRID FIX — centra quando sono meno di 4
   ================================================================ */
.ax-stats-grid {
  justify-content: center;
  justify-items: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================================
   SHOP CATEGORY CARDS
   ================================================================ */
.ax-shop-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ax-shop-cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.4s;
}
.ax-shop-cat-card:hover { transform: translateY(-6px); }
.ax-shop-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.ax-shop-cat-card:hover img { transform: scale(1.08); }
.ax-shop-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.ax-shop-cat-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transition: box-shadow 0.3s;
}
.ax-shop-cat-card:hover .ax-shop-cat-line {
  box-shadow: 0 0 20px currentColor;
}
.ax-shop-cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.ax-shop-cat-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--ax-white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.ax-shop-cat-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 12px;
}
.ax-shop-cat-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--cat-color, var(--ax-accent));
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ax-shop-cat-card:hover .ax-shop-cat-cta { gap: 8px; }

/* ================================================================
   REVIEWS CAROUSEL
   ================================================================ */
.ax-reviews-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.ax-reviews-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.ax-review-slide {
  flex: 0 0 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ax-border-solid);
  background: var(--ax-surface);
  transition: transform 0.3s, border-color 0.3s;
}
.ax-review-slide:hover {
  transform: scale(1.03);
  border-color: rgba(0,174,239,0.3);
}
.ax-review-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.ax-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.ax-reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ax-border-solid);
  cursor: pointer;
  transition: all 0.3s;
}
.ax-reviews-dot.active {
  background: var(--ax-accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .ax-review-slide { flex: 0 0 260px; }
}
@media (max-width: 480px) {
  .ax-review-slide { flex: 0 0 220px; }
}

/* ================================================================
   COMPARISON TABLE
   ================================================================ */
.ax-comparison-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--ax-border-solid);
}
.ax-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ax-comparison-table thead th {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  background: var(--ax-surface);
  border-bottom: 2px solid var(--ax-border-solid);
  color: var(--ax-muted);
}
.ax-comparison-table thead th:first-child {
  text-align: left;
  color: var(--ax-white);
}
.ax-col-silver { color: #c0c0c0 !important; }
.ax-col-gold { color: #FFD700 !important; }
.ax-col-platinum { color: var(--ax-accent) !important; border-left: 1px solid rgba(0,174,239,0.2) !important; border-right: 1px solid rgba(0,174,239,0.2) !important; }
.ax-comparison-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--ax-border-solid);
  color: var(--ax-muted);
  font-weight: 500;
}
.ax-comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--ax-white);
}
.ax-comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}
.ax-cell {
  text-align: center;
  font-weight: 600;
}
.ax-check { color: #2a9d8f; font-size: 18px; }
.ax-cross { color: #e63946; font-size: 18px; opacity: 0.5; }
.ax-comparison-table tfoot td {
  padding: 20px;
  border-top: 2px solid var(--ax-border-solid);
  background: var(--ax-surface);
}
.ax-comparison-table tfoot td:first-child {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ax-white);
}
/* Platinum colonna evidenziata */
.ax-comparison-table tbody td:last-child,
.ax-comparison-table tfoot td:last-child {
  background: rgba(0,174,239,0.03);
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.ax-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}
.ax-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.ax-wa-float svg {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  fill: #fff;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .ax-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-social-grid { grid-template-columns: repeat(3, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  /* Navbar */
  .ax-navbar-links { display: none; }
  .ax-navbar-cta { display: none; }
  .ax-burger { display: flex; }
  .ax-navbar { justify-content: space-between; gap: 0; padding: 0 16px; }
  .ax-navbar-logo-img { height: 16px; }

  /* Hero */
  .ax-hero { padding: 100px 20px 60px; }
  .ax-hero h1 { font-size: 36px; }
  .ax-hero-content { text-align: center; }
  .ax-hero-desc { font-size: 15px; }
  .ax-hero-stats { gap: 24px; justify-content: center; }
  .ax-hero-stat-value { font-size: 28px; }
  .ax-hero-logo { width: 90px; height: 90px; }
  .ax-hero-tagline { font-size: 16px !important; letter-spacing: 2px; }
  .ax-hero-badge { font-size: 11px; padding: 6px 14px; }

  /* Sezioni */
  .ax-section { padding: 60px 20px; }
  .ax-section-header { text-align: center; margin-bottom: 40px; }
  .ax-section-header h2 { font-size: 24px; }
  .ax-section-header p { font-size: 14px; }

  /* Showcase */
  .ax-showcase-grid { grid-template-columns: 1fr; }

  /* Features */
  .ax-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ax-feature-card { padding: 20px; }
  .ax-feature-card h3 { font-size: 14px; }
  .ax-feature-card p { font-size: 12px; }
  .ax-feature-icon { width: 40px; height: 40px; margin-bottom: 12px; }

  /* Stats */
  .ax-stats-grid { grid-template-columns: 1fr 1fr; max-width: 400px; margin: 0 auto; }
  .ax-stat-card { text-align: center; padding: 24px 16px; }
  .ax-stat-value { text-align: center; display: block; width: 100%; font-size: 32px; }
  .ax-stat-label { text-align: center; font-size: 11px; }

  /* AI section */
  .ax-ai-features { grid-template-columns: 1fr; }

  /* CTA */
  .ax-cta-box { padding: 40px 20px; }
  .ax-cta-box h2 { font-size: 24px; }

  /* Shop */
  .ax-shop-hero { padding: 110px 20px 40px; }
  .ax-shop-hero h1 { font-size: 36px; text-align: center; }
  .ax-shop-hero p { text-align: center; font-size: 15px; }
  .ax-shop-categories { grid-template-columns: 1fr; }
  .ax-shop-cat-content h3 { font-size: 18px; }
  .ax-shop-nav { gap: 6px; }
  .ax-shop-nav-link { padding: 8px 14px; font-size: 10px; }
  .ax-products-grid-2,
  .ax-products-grid-3,
  .ax-products-grid-4,
  .ax-products-grid-5 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ax-products-grid-1 { max-width: 100%; }
  .ax-product-info { padding: 12px; }
  .ax-product-price { font-size: 18px; }
  .ax-product-buy { padding: 8px 14px; font-size: 12px; }

  /* Comparison table */
  .ax-comparison-table { font-size: 12px; }
  .ax-comparison-table thead th { font-size: 11px; padding: 10px 8px; }
  .ax-comparison-table tbody td { padding: 10px 8px; }
  .ax-comparison-table tfoot td { padding: 12px 8px; }

  /* Social */
  .ax-social-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-social-card { padding: 16px 10px; }

  /* Footer */
  .ax-footer { padding: 40px 20px 20px; }
  .ax-footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .ax-footer-brand { text-align: center; }
  .ax-footer-brand p { margin: 12px auto 0; }
  .ax-footer h4 { margin-bottom: 12px; }
  .ax-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .ax-hero h1 { font-size: 28px; }
  .ax-hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .ax-btn-primary, .ax-btn-outline { width: 100%; justify-content: center; text-align: center; }
  .ax-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .ax-stats-grid { grid-template-columns: 1fr; max-width: 200px; }
  .ax-features-grid { grid-template-columns: 1fr; }
  .ax-social-grid { grid-template-columns: 1fr 1fr; }
  .ax-products-grid-2,
  .ax-products-grid-3,
  .ax-products-grid-4,
  .ax-products-grid-5 { grid-template-columns: 1fr; }
  .ax-comparison-table { font-size: 10px; }
  .ax-comparison-table thead th { font-size: 9px; padding: 8px 4px; }
  .ax-comparison-table tbody td { padding: 8px 4px; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}


/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
#ax-consent-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
#ax-consent-banner {
  background: var(--ax-surface); border: 1px solid var(--ax-border-solid);
  border-radius: 16px; padding: 32px; max-width: 640px; width: 100%;
  color: var(--ax-white); font-family: var(--font-body);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
#ax-consent-banner h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
#ax-consent-banner p { font-size: 14px; line-height: 1.7; color: var(--ax-muted); margin-bottom: 12px; }
.ax-cb-links a { color: var(--ax-accent); text-decoration: underline; }
.ax-cb-links a:hover { color: var(--ax-white); }
.ax-cb-buttons { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.ax-cb-btn { padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; font-family: var(--font-body); white-space: nowrap; }
.ax-cb-primary { background: var(--ax-accent); color: #000; }
.ax-cb-primary:hover { box-shadow: 0 4px 20px var(--ax-accent-glow); }
.ax-cb-secondary { background: transparent; color: var(--ax-muted); border: 1px solid var(--ax-border-solid); }
.ax-cb-secondary:hover { color: var(--ax-white); border-color: var(--ax-muted); }
.ax-cb-outline { background: transparent; color: var(--ax-accent); border: 1px solid rgba(0,174,239,0.3); }
.ax-cb-outline:hover { background: rgba(0,174,239,0.08); border-color: var(--ax-accent); }
.ax-cb-category { border: 1px solid var(--ax-border-solid); border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.ax-cb-cat-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.ax-cb-cat-row strong { color: var(--ax-white); font-size: 14px; }
.ax-cb-category > p { margin-bottom: 0; font-size: 13px; }
.ax-cb-switch { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; flex-shrink: 0; }
.ax-cb-switch.ax-cb-disabled { opacity: 0.5; cursor: not-allowed; }
.ax-cb-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.ax-cb-track { position: absolute; inset: 0; background: rgba(255,255,255,0.1); border-radius: 24px; transition: background 0.3s; }
.ax-cb-track::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform 0.3s; }
.ax-cb-switch input:checked + .ax-cb-track { background: var(--ax-accent); }
.ax-cb-switch input:checked + .ax-cb-track::before { transform: translateX(20px); }
#ax-consent-icon {
  position: fixed; bottom: 16px; left: 16px; z-index: 99998;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ax-surface); border: 1px solid var(--ax-border-solid);
  color: var(--ax-muted); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
#ax-consent-icon:hover { color: var(--ax-white); border-color: var(--ax-accent); transform: scale(1.1); }
@media (max-width: 768px) {
  #ax-consent-banner { padding: 20px; border-radius: 12px; }
  .ax-cb-buttons { flex-direction: column; }
  .ax-cb-btn { width: 100%; text-align: center; }
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.ax-legal { color: var(--ax-muted); font-size: 15px; line-height: 1.8; }
.ax-legal h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 2px; color: var(--ax-white); margin: 48px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--ax-border-solid); }
.ax-legal h3 { font-size: 16px; font-weight: 600; color: var(--ax-white); margin: 24px 0 8px; }
.ax-legal p { margin-bottom: 12px; }
.ax-legal ul, .ax-legal ol { margin: 8px 0 16px 24px; list-style: disc; }
.ax-legal li { margin-bottom: 6px; }
.ax-legal a { color: var(--ax-accent); text-decoration: underline; }
.ax-legal a:hover { color: var(--ax-white); }
.ax-legal strong { color: var(--ax-white); }
.ax-legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.ax-legal th, .ax-legal td { border: 1px solid var(--ax-border-solid); padding: 10px 12px; text-align: left; }
.ax-legal th { background: rgba(0,174,239,0.08); color: var(--ax-white); font-weight: 600; white-space: nowrap; }
.ax-legal-box { background: var(--ax-surface2); border: 1px solid var(--ax-border-solid); border-radius: 10px; padding: 24px; margin: 24px 0; }
.ax-legal-update { font-size: 13px; color: var(--ax-muted); margin-top: 48px; padding-top: 16px; border-top: 1px solid var(--ax-border-solid); }
@media (max-width: 768px) { .ax-legal table { font-size: 12px; } .ax-legal th, .ax-legal td { padding: 8px; } }
