@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
/* ================================================================================
   RESET E BASE
   ================================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background: #0B1A40;
    background-image: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(106, 13, 173, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: #00BFFF;
    color: #0f172a;
}

a {
    color: #00BFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #33cfff;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00BFFF 0%, #6A0DAD 100%); border-radius: 10px; }

 
/* ================================================================================
   PAGINA PRODOTTO - FUTURE SOUND THEME - CSS FINALE
   ================================================================================ */

.product-main {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 30px !important;
    padding: 30px 0 !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
}

.pm-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.main-image-box {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.main-image-box:hover {
    border-color: #00BFFF;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
}

.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-ribbon,
.js-discount-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF00FF 0%, #6A0DAD 100%);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 3px solid #fff;
    text-align: center;
    line-height: 1;
}

.zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid #00BFFF;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    display: none;
    z-index: 100;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

.main-image-box:hover .zoom-lens {
    display: block;
}

.thumbs-container {
    position: relative;
    width: 100%;
}

.thumbs-rail {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
    scroll-behavior: smooth;
    max-width: 400px;
    scrollbar-width: thin;
    scrollbar-color: #00BFFF #0f172a;
}

.thumbs-rail::-webkit-scrollbar {
    height: 6px;
}

.thumbs-rail::-webkit-scrollbar-track {
    background: #0f172a;
    border-radius: 10px;
}

.thumbs-rail::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00BFFF 0%, #6A0DAD 100%);
    border-radius: 10px;
}

.thumb-item {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumb-item:hover {
    border-color: #00BFFF;
    transform: scale(1.05);
}

.thumb-item.active {
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.thumb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 191, 255, 0.2);
    border: 1px solid #00BFFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00BFFF;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.thumb-arrow:hover {
    background: rgba(0, 191, 255, 0.4);
}

.thumb-arrow-left { left: -10px; }
.thumb-arrow-right { right: -10px; }
.thumb-arrow.hidden { display: none; }

.pm-center {
    padding: 0 20px;
}

.prod-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.3);
}

.prod-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.prod-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.prod-tag-new {
    background: linear-gradient(135deg, #39FF14, #00D4AA);
    color: #0B1A40;
}

.prod-tag-featured {
    background: linear-gradient(135deg, #FF00FF, #6A0DAD);
    color: #fff;
}

.prod-tag-sale {
    background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
    color: #fff;
}

.prod-price {
    margin: 20px 0;
}

.prod-price .old-price {
    font-size: 20px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 12px;
}

.prod-price .current-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00BFFF;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

.prod-variants {
    margin: 25px 0;
}

.variant-group {
    margin-bottom: 18px;
}

.variant-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #00BFFF;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.variant-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-select:hover {
    border-color: #00BFFF;
}

.variant-select:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.variant-select option {
    background: #1e293b;
    color: #fff;
}

.prod-bullets {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    list-style: none;
}

.prod-bullets li {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    font-size: 15px;
    color: #cbd5e1;
}

.prod-bullets li:last-child {
    border-bottom: none;
}

.prod-bullets li strong {
    color: #00BFFF;
    font-weight: 600;
    min-width: 120px;
    margin-right: 12px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

.product-desc {
    padding: 20px;
    background: rgba(30, 41, 59, 0.3);
    border-left: 4px solid #00BFFF;
    border-radius: 6px;
    line-height: 1.7;
    color: #cbd5e1;
    font-size: 15px;
    margin-top: 15px;
}

.pm-right {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.buy-box {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.buy-price-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.15);
}

.buy-price-row .old-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
    margin-bottom: 8px;
}

.buy-price-row .current-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    color: #00BFFF;
    font-weight: 700;
    display: block;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.buy-info,
.buy-stock {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.buy-info .js-stock,
.buy-stock .js-stock {
    color: #00BFFF;
    font-weight: 700;
}

.buy-quantity,
.buy-qty {
    margin: 20px 0;
}

.buy-quantity label,
.buy-quantity span,
.buy-qty span {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #00BFFF;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.buy-quantity input[type="number"],
.buy-qty input[type="number"] {
    width: 100%;
    padding: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.btn-buy-primary,
.btn-buy-secondary {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.btn-buy-primary {
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    color: #fff;
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
}

.btn-buy-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

.btn-buy-secondary {
    background: transparent;
    color: #00BFFF;
    border: 2px solid #00BFFF;
}

.btn-buy-secondary:hover:not(:disabled) {
    background: rgba(0, 191, 255, 0.1);
}

.btn-buy-primary:disabled,
.btn-buy-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.buy-extra {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 191, 255, 0.15);
    font-size: 13px;
    color: #94a3b8;
}

.product-bottom {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 50px auto 0;
    padding: 40px 0;
}

.specs-section {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.specs-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #00BFFF;
    margin: 0 0 20px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th {
    text-align: left;
    padding: 15px 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #00BFFF;
    text-transform: uppercase;
    width: 35%;
}

.specs-table td {
    padding: 15px 12px;
    color: #cbd5e1;
    font-size: 15px;
}

.pb-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-box {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
}

.side-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #00BFFF;
    margin: 0 0 15px 0;
}

.side-box p {
    margin: 8px 0;
    font-size: 14px;
    color: #cbd5e1;
}

.trust-badges-section {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding: 40px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 16px;
}

.trust-badges-section h3 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00BFFF;
    margin: 0 0 35px 0;
}

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

.trust-badge {
    text-align: center;
    padding: 25px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    border-color: #00BFFF;
}

.trust-badge-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.trust-badge strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #00BFFF;
    display: block;
    margin-bottom: 8px;
}

.trust-badge-text {
    font-size: 13px;
    color: #94a3b8;
}

.description-section {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding: 40px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 16px;
}

.description-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    color: #00BFFF;
    margin: 0 0 25px 0;
}

.desc-text {
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 15px;
}

.desc-text p {
    margin: 15px 0;
}

.desc-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #00BFFF;
    margin: 30px 0 15px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .product-main {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 25px !important;
    }
    .main-image-box { height: 350px; }
    .product-bottom { grid-template-columns: 300px 1fr; }
}

@media (max-width: 900px) {
    .product-main {
        grid-template-columns: 1fr 1fr !important;
    }
    .pm-right {
        position: relative;
        top: 0;
        grid-column: 1 / -1;
    }
    .buy-box { max-width: 600px; margin: 0 auto; }
    .product-bottom { grid-template-columns: 1fr; }
    .trust-badges { grid-template-columns: repeat(2, 1fr); }
}


/* ================================================================================
   PAGINA PRODOTTO - MOBILE RESPONSIVE
   ================================================================================ */

/* TABLET - max 992px */
@media (max-width: 992px) {
    .product-main {
        grid-template-columns: 1fr !important;
        padding: 25px 20px !important;
        gap: 30px;
    }
    
    .main-image-box {
        height: 400px;
    }
    
    .prod-title {
        font-size: 26px;
    }
}

/* MOBILE - max 768px */
@media (max-width: 768px) {
    .product-main {
        grid-template-columns: 1fr !important;
        padding: 20px 15px !important;
    }
    
    .main-image-box {
        height: 350px;
    }
    
    .prod-title {
        font-size: 24px;
    }
    
    /* CONTAINER MINIATURE */
    .thumbs-container {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* GALLERIA MINIATURE - ESATTAMENTE 5 VISIBILI */
    .thumbs-rail {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        
        /* CALCOLO PRECISO: 5 miniature da 70px + 4 gap da 10px = 390px */
        max-width: 390px !important;
        width: 100% !important;
        
        /* Nasconde scrollbar */
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        
        padding: 0 !important;
        margin: 15px 0 0 0 !important;
    }
    
    .thumbs-rail::-webkit-scrollbar {
        display: none !important;
    }
    
    .thumb-item {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        max-width: 70px !important;
        flex-shrink: 0 !important;
    }
    
    /* FRECCE NAVIGAZIONE MINIATURE */
    .thumb-arrow {
        width: 25px !important;
        height: 25px !important;
        font-size: 14px !important;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .prod-actions {
        gap: 12px;
    }
    
    .btn-add-cart,
    .btn-buy-now,
    .btn-buy-primary,
    .btn-buy-secondary {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .prod-price .current-price,
    .buy-price-row .current-price {
        font-size: 28px;
    }
    
    .prod-description,
    .product-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .prod-variants,
    .prod-options {
        font-size: 14px;
    }
}

/* MOBILE SMALL - max 480px */
@media (max-width: 480px) {
    .product-main {
        padding: 15px 10px !important;
    }
    
    .main-image-box {
        height: 250px;
    }
    
    .prod-title {
        font-size: 20px;
    }
    
    /* CONTAINER MINIATURE */
    .thumbs-container {
        max-width: 100% !important;
    }
    
    /* MINIATURE - ESATTAMENTE 5 VISIBILI PIÙ PICCOLE */
    .thumbs-rail {
        gap: 8px !important;
        margin-top: 12px !important;
        
        /* CALCOLO: 5 miniature da 60px + 4 gap da 8px = 332px */
        max-width: 332px !important;
    }
    
    .thumb-item {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
    }
    
    .btn-add-cart,
    .btn-buy-now,
    .btn-buy-primary,
    .btn-buy-secondary {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .prod-price .current-price,
    .buy-price-row .current-price {
        font-size: 24px;
    }
    
    .buy-quantity input[type="number"],
    .buy-qty input[type="number"] {
        max-width: 120px;
    }
}
/* ================================================================================
   HEADER - CENTRATO COME IL CONTENUTO
   ================================================================================ */
.header {
    position: relative;
    background: #0f172a;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    z-index: 100;
    width: 100%;
}

.header > .container,
.header .container {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ================================================================================
   TOPBAR - STESSA LARGHEZZA DELL'HEADER (CORRETTA)
   ================================================================================ */
.topbar {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 191, 255, 0.15);
    width: 100%;
}

/* Container interno della topbar */
.topbar > div,
.topbar > nav,
.topbar .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 20px;
}

.topbar nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.topbar nav ul li {
    list-style: none;
}

.topbar nav ul li::before,
.topbar nav ul li::marker {
    content: none;
    display: none;
}

.topbar nav ul li a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 6px 10px;
    transition: all 0.2s ease;
}

.topbar nav ul li a:hover {
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}
@media (max-width: 480px) {
    .topbar {
        display: block;
    }

    .topbar nav ul {
        justify-content: center;
        gap: 10px;
    }

    .topbar nav ul li a {
        font-size: 11px;
        padding: 4px 6px;
    }
}

/* ================================================================================
   TOP BAR - FIX LARGHEZZA COMPLETA DEFINITIVO
   ================================================================================ */

/* Topbar esce dal container e occupa TUTTO */
.topbar {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: rgba(15, 23, 42, 0.8) !important;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* Menu centrato */
.topbar nav {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.topbar nav ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 12px 0 !important;
}

.topbar nav ul li {
    margin: 0 !important;
}

.topbar nav ul li a {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.topbar nav ul li a:hover {
    color: #00BFFF !important;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5) !important;
}

/* Forza il container padre a non limitare */
.header .container {
    max-width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Responsive */
@media (max-width: 992px) {
    .topbar nav ul {
        gap: 25px !important;
    }
}

@media (max-width: 768px) {
    .topbar nav ul {
        gap: 15px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .topbar nav ul {
        gap: 10px !important;
    }
    
    .topbar nav ul li a {
        font-size: 11px !important;
    }
}
/* ================================================================================
   SEARCH BAR / LOGO AREA - TUTTO IN RIGA
   ================================================================================ */
.search-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.logo { 
    flex-shrink: 0; 
}

.logo a { display: block; }

.logo img {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 191, 255, 0.4));
    transition: all 0.3s ease;
}

.logo img:hover { 
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6)); 
    transform: scale(1.02); 
}

/* Header actions - ORDINE: Campo testo, Lente, Login, Cuore, Carrello */
.header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* SEARCH FORM - Campo testo + Lente IN RIGA */
.search-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    position: relative;
}

.search-form input,
.search-form input[type="search"],
input[type="search"] {
    width: 250px;
    padding: 10px 18px;
    background: #1e293b;
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 50px 0 0 50px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    line-height: 1.2;
    height: 42px;
}

.search-form input:focus,
.search-form input[type="search"]:focus {
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
    background: #1a2540;
}

.search-form input::placeholder,
input[type="search"]::placeholder {
    color: #64748b;
    opacity: 1;
}

.search-form button,
.search-form .search-icon,
.search-form .btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-left: none;
    border-radius: 0 50px 50px 0;
    color: #00BFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    padding: 0;
}

.search-form button:hover,
.search-form .search-icon:hover,
.search-form .btn-search:hover {
    background: #00BFFF;
    color: #0f172a;
}

.search-form button svg,
.search-form .search-icon svg {
    width: 18px;
    height: 18px;
}

/* Icone header */
.icon-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
}

.icon-btn:hover {
    color: #00BFFF;
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.2);
}

.icon-btn svg, .icon-btn .icon { 
    width: 22px; 
    height: 22px; 
    flex-shrink: 0;
}

.icon-account .account-text strong { color: #ffffff; display: block; font-size: 13px; }
.icon-account .account-text small { color: #64748b; font-size: 10px; }
/* ================================================================================
   MAIN NAVBAR - CENTRATO E RIMOSSO PUNTINO
   ================================================================================ */
.main-navbar {
    background: #1e293b;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    padding: 0;
}

.main-navbar > .container,
.main-navbar .container {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* RIMOZIONE PUNTINI/BULLETS DA NAVBAR */
.navbar-container,
.navbar-container ul,
.navbar-container li,
.main-navbar ul,
.main-navbar li,
nav ul,
nav li {
    list-style: none !important;
    list-style-type: none !important;
}

.navbar-container li::before,
.navbar-container li::marker,
.main-navbar li::before,
.main-navbar li::marker,
nav li::before,
nav li::marker {
    content: none !important;
    display: none !important;
}

/* Nasconde navbar duplicata */
.navbar-mobile,
.mobile-menu,
.main-navbar + .main-navbar {
    display: none !important;
}

.navbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94a3b8;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
    border: none;
    list-style: none;
}

.navbar-item:hover, .navbar-item.active {
    color: #00BFFF;
    background: rgba(0, 191, 255, 0.1);
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #00BFFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-item:hover::after, .navbar-item.active::after {
    transform: scaleX(1);
}

.navbar-categories {
    background: rgba(0, 191, 255, 0.12);
    border-right: 1px solid rgba(0, 191, 255, 0.2);
    color: #ffffff;
}

.navbar-categories:hover {
    background: rgba(0, 191, 255, 0.2);
}

.navbar-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50px;
    background: #39FF14;
    color: #0f172a;
}

.navbar-badge.badge-red { background: #FF00FF; color: #ffffff; }
.navbar-badge.badge-orange { background: #FF6600; color: #0f172a; }

.navbar-link {
    text-decoration: none;
    color: inherit;
}

/* =====================================
   MEGA MENU – WRAPPER
   ===================================== */
.mega-menu-dropdown{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  opacity:0;
  pointer-events:none;
  z-index:900;
  background:transparent;
  margin:0;
  padding:0;
  transition:opacity .35s ease;
}
.mega-menu-dropdown.active{
  opacity:1;
  pointer-events:auto;
}

/* =====================================
   CONTENITORE VETRO OPACO - FUTURE SOUND (PIÙ TRASPARENTE)
   ===================================== */
.mega-menu-container{
  max-width:1400px;
  margin:0 auto;
  padding:44px 56px;
  background:rgba(30, 41, 59, 0.65); /* PIÙ TRASPARENTE */
  backdrop-filter:blur(28px);
  -webkit-backdrop-filter:blur(28px);
  border-radius:0 0 20px 20px;
  border:1px solid rgba(0, 191, 255, 0.25); /* bordo più trasparente */
  border-top:none;
  overflow:hidden;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(0, 191, 255, 0.15);
  display:grid;
  grid-template-columns:1fr 320px;
  gap:56px;
}

/* =====================================
   CATEGORIE
   ===================================== */
.mega-menu-categories{
  display:flex;
  gap:48px;
}
.mega-menu-column{
  flex:1;
}
.mega-menu-category{
  margin-bottom:26px;
}
.mega-menu-category-title{
  display:inline-block;
  margin-bottom:8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight:700;
  font-size:15px;
  color:#00BFFF;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:0.5px;
  transition:all .25s ease;
}
.mega-menu-category-title:hover{
  color:#0EA5E9;
  text-shadow:0 0 10px rgba(0, 191, 255, 0.6);
}

/* =====================================
   SOTTOCATEGORIE (HOVER)
   ===================================== */
.mega-menu-subcategories{
  list-style:none;
  padding:0;
  margin:6px 0 0;
  opacity:0;
  max-height:0;
  overflow:hidden;
  transform:translateY(-4px);
  transition:
    opacity .35s ease,
    transform .35s ease,
    max-height .35s ease;
}
.mega-menu-category:hover .mega-menu-subcategories{
  opacity:1;
  max-height:300px;
  transform:translateY(0);
}
.mega-menu-subcategories li{
  margin:6px 0;
}
.mega-menu-subcategories a{
  font-size:14px;
  color:#cbd5e1;
  text-decoration:none;
  opacity:.85;
  transition:all .25s ease;
}
.mega-menu-subcategories a:hover{
  opacity:1;
  color:#00BFFF;
  text-decoration:none;
  transform:translateX(3px);
}

/* =====================================
   BANNER LATERALE - FUTURE SOUND
   ===================================== */
.mega-menu-banner{
  border-left:1px solid rgba(0, 191, 255, 0.25);
  padding-left:32px;
  display:flex;
  align-items:center;
}
.mega-menu-banner .banner-content{
  background:rgba(15, 23, 42, 0.6); /* PIÙ TRASPARENTE */
  border:1px solid rgba(0, 191, 255, 0.25);
  border-radius:14px;
  padding:28px;
  box-shadow:
    inset 0 1px 0 rgba(0, 191, 255, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* ICONA SVG NEL BANNER */
.mega-menu-banner .banner-content::before{
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300BFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'%3E%3C/path%3E%3Cpolyline points='7.5 4.21 12 6.81 16.5 4.21'%3E%3C/polyline%3E%3Cpolyline points='7.5 19.79 7.5 14.6 3 12'%3E%3C/polyline%3E%3Cpolyline points='21 12 16.5 14.6 16.5 19.79'%3E%3C/polyline%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'%3E%3C/polyline%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.6));
}

.mega-menu-banner h3{
  margin:0 0 10px;
  font-family:'Orbitron', sans-serif;
  font-size:18px;
  font-weight:700;
  color:#00BFFF;
  text-shadow:0 0 15px rgba(0, 191, 255, 0.5);
  text-align: center;
}
.mega-menu-banner p{
  font-size:14px;
  margin:0 0 16px;
  color:#cbd5e1;
  line-height:1.6;
  text-align: center;
}
.mega-menu-banner .banner-btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:8px;
  background:linear-gradient(135deg, #00BFFF, #0EA5E9);
  color:#fff;
  font-family:'Rajdhani', sans-serif;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:0 4px 15px rgba(0, 191, 255, 0.4);
  transition:all .3s ease;
  width: 100%;
  text-align: center;
}
.mega-menu-banner .banner-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0, 191, 255, 0.6);
}

/* =====================================
   OVERLAY (SOLO FUNZIONALE, NON VISIVO)
   ===================================== */
.mega-menu-overlay{
  position:fixed;
  inset:0;
  background:transparent;
  opacity:0;
  pointer-events:none;
  z-index:800;
}
.mega-menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* =====================================
   MEGA MENU - RESPONSIVE MOBILE
   ===================================== */

@media (max-width: 992px) {
  .mega-menu-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 25px;
  }
  
  .mega-menu-categories {
    flex-direction: column;
    gap: 25px;
  }
  
  .mega-menu-banner {
    border-left: none;
    border-top: 1px solid rgba(0, 191, 255, 0.25);
    padding-left: 0;
    padding-top: 25px;
  }
}

@media (max-width: 768px) {
  /* Mega menu mobile - RESTA CHIUSO finché non clicchi */
  .mega-menu-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: opacity 0.3s ease;
  }
  
  /* Quando è aperto */
  .mega-menu-dropdown.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .mega-menu-container {
    border-radius: 0;
    padding: 20px 15px;
    max-width: 100%;
    margin-top: 60px; /* Spazio per evitare sovrapposizione header */
  }
  
  .mega-menu-categories {
    gap: 20px;
  }
  
  .mega-menu-column {
    width: 100%;
  }
  
  .mega-menu-category {
    margin-bottom: 20px;
  }
  
  .mega-menu-category-title {
    font-size: 14px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  }
  
  /* Sottocategorie visibili su mobile */
  .mega-menu-subcategories {
    opacity: 1;
    max-height: none;
    transform: translateY(0);
    margin-top: 10px;
  }
  
  .mega-menu-banner .banner-content {
    padding: 20px;
  }
  
  .mega-menu-banner .banner-content::before {
    width: 40px;
    height: 40px;
  }
  
  .mega-menu-banner h3 {
    font-size: 16px;
  }
  
  .mega-menu-banner p {
    font-size: 13px;
  }
  
  .mega-menu-banner .banner-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  /* Pulsante chiudi mobile */
  .mega-menu-dropdown::before {
    content: '✕';
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 191, 255, 0.2);
    border: 1px solid #00BFFF;
    border-radius: 50%;
    color: #00BFFF;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
  }
}

@media (max-width: 480px) {
  .mega-menu-container {
    padding: 15px 10px;
  }
  
  .mega-menu-category-title {
    font-size: 13px;
  }
  
  .mega-menu-subcategories a {
    font-size: 13px;
  }
  
  .mega-menu-banner .banner-content {
    padding: 18px;
  }
  
  .mega-menu-banner .banner-content::before {
    width: 36px;
    height: 36px;
  }
}
/* ================================================================================
   HERO SLIDER - FIX DEFINITIVO (NON ESCE DAL BODY)
   ================================================================================ */

.hero-slider-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;

    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

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

.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 26, 64, 0.3),
        rgba(11, 26, 64, 0.6)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-content.text-left { justify-content: flex-start; }
.hero-content.text-center { justify-content: center; text-align: center; }
.hero-content.text-right { justify-content: flex-end; text-align: right; }

/* Hero content inner - SENZA BACKGROUND per vedere l'immagine */
.hero-content-inner {
    max-width: 720px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 30px;
    border: none;
    box-shadow: none;
}

/* Testi hero con ombra per leggibilità senza box */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 14px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 17px;
    color: #ffffff;
    margin: 0 0 22px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid #00BFFF;
    color: #00BFFF;
    background: transparent;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: #00BFFF;
    color: #0f172a;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0, 191, 255, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    color: #00BFFF;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

/* Mostra le frecce solo al passaggio del mouse sullo slider */
.hero-slider-wrapper:hover .hero-prev,
.hero-slider-wrapper:hover .hero-next {
    opacity: 1;
    pointer-events: all;
}

.hero-prev:hover,
.hero-next:hover {
    background: #00BFFF;
    color: #0f172a;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(0, 191, 255, 0.6);
}

.hero-dot.active {
    background: #00BFFF;
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
}

/* ================================================================================
   SECTION TITLES
   ================================================================================ */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 25px 0 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00BFFF;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

/* ================================================================================
   PRODUCT CARD
   ================================================================================ */
.product-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 191, 255, 0.2);
    border-color: #00BFFF;
}

.pc-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #1e293b;
    flex-shrink: 0;
}

.pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .pc-image img { 
    transform: scale(1.05); 
}

.pc-ribbon {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
}

.pc-ribbon.offer, .pc-ribbon.sale { 
    background: #FF00FF; 
    color: #ffffff; 
}
.pc-ribbon.new { 
    background: #39FF14; 
    color: #0f172a; 
}
.pc-ribbon.hot { 
    background: #FF6600; 
    color: #0f172a; 
}

.pc-wishlist-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(11, 26, 64, 0.8);
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s ease;
    color: #94a3b8;
}

.pc-wishlist-btn:hover { 
    background: rgba(255, 0, 255, 0.2); 
    border-color: #FF00FF; 
    color: #FF00FF; 
}

.pc-wishlist-btn.is-wishlisted {
    background: rgba(255, 0, 255, 0.25);
    border-color: #FF00FF;
    color: #FF00FF;
}

.pc-link {
    display: block;
    text-decoration: none;
    flex: 1;
}

.pc-info {
    padding: 12px;
    background: rgba(15, 23, 42, 0.95);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card:hover .pc-title { 
    color: #00BFFF; 
}

.pc-desc {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-rating {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-top: 4px;
}

.pc-rating .star { 
    color: #64748b; 
    font-size: 11px; 
}
.pc-rating .star.filled { 
    color: #FF6600; 
}

.pc-actions {
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(0, 191, 255, 0.1);
    margin-top: auto;
}

.pc-price {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pc-price .current {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #00BFFF;
}

.pc-price .old {
    font-size: 11px;
    color: #64748b;
    text-decoration: line-through;
}

.btn-view-product {
    display: inline-block;
    padding: 6px 12px;
    background: transparent;
    color: #00BFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #00BFFF;
    border-radius: 3px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-view-product:hover {
    background: #00BFFF;
    color: #0f172a;
}

/* ================================================================================
   PRODUCT GRIDS - 5 COLONNE
   ================================================================================ */
.product-grid,
.home-offers-grid,
.home-recommended-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* ================================================================================
   CAROSELLO ULTIMI VISTI
   ================================================================================ */
.recent-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.recent-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    transition: transform 0.5s ease;
}

.recent-track .product-card {
    flex: 0 0 calc(20% - 12px);
    min-width: calc(20% - 12px);
    max-width: calc(20% - 12px);
}

/* ================================================================================
   TRUST BADGES - RESET COMPLETO + FORCE GRID 4 COLONNE
   ================================================================================ */

/* RESET TOTALE - Rimuovi FLEX e forza GRID */
.trust-badges,
.trust-container {
    /* RESET flex */
    display: grid !important;
    flex-wrap: unset !important;
    flex-direction: unset !important;
    
    /* FORCE grid 4 colonne */
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    
    /* Layout */
    max-width: 1300px !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding: 0 !important;
}

/* RESET badge singolo - Rimuovi flex width */
.trust-badge {
    /* RESET flex */
    flex: none !important;
    min-width: unset !important;
    max-width: unset !important;
    width: 100% !important;
    
    /* LAYOUT interno badge */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    
    /* Grid position */
    grid-column: auto !important;
    
    /* Stile */
    padding: 28px 24px !important;
    min-height: 110px !important;
    
    /* Glass-morphism */
    background: rgba(15, 23, 42, 0.5) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    
    /* Bordo */
    border: 1px solid rgba(0, 191, 255, 0.25) !important;
    border-radius: 16px !important;
    
    /* 3D Effect */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 191, 255, 0.1) inset,
        0 -20px 40px -20px rgba(0, 191, 255, 0.15) inset !important;
    
    transform-style: preserve-3d !important;
    perspective: 1000px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: default !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: left !important;
}

/* Trust Badges Section wrapper */
.trust-badges-section {
    width: 100% !important;
    margin: 40px 0 !important;
    padding: 40px 20px !important;
    background: transparent !important;
    border: none !important;
    display: block !important;
    grid-template-columns: unset !important;
}

.trust-badges-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00BFFF;
    text-align: center;
    margin: 0 0 35px 0 !important;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

/* Effetto riflesso superiore */
.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

/* Glow effect on hover */
.trust-badge::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(0, 191, 255, 0.4) 0%,
        rgba(106, 13, 173, 0.4) 50%,
        rgba(0, 191, 255, 0.4) 100%
    );
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

/* Hover con rotazione 3D */
.trust-badge:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(-3deg) scale(1.02) !important;
    border-color: rgba(0, 191, 255, 0.5) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 191, 255, 0.2),
        0 0 0 1px rgba(0, 191, 255, 0.3) inset !important;
}

.trust-badge:hover::after {
    opacity: 1;
}

/* Icona */
.trust-icon,
.trust-badge-icon {
    flex-shrink: 0 !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(106, 13, 173, 0.2) 100%) !important;
    border: 1px solid rgba(0, 191, 255, 0.3) !important;
    border-radius: 14px !important;
    color: #00BFFF !important;
    font-size: 30px !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    z-index: 1 !important;
}

.trust-icon svg,
.trust-badge-icon svg {
    width: 30px !important;
    height: 30px !important;
    filter: drop-shadow(0 0 6px rgba(0, 191, 255, 0.4)) !important;
    transition: all 0.3s ease !important;
}

.trust-badge:hover .trust-icon,
.trust-badge:hover .trust-badge-icon {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.35) 0%, rgba(106, 13, 173, 0.35) 100%) !important;
    border-color: #00BFFF !important;
    transform: scale(1.1) rotateZ(-5deg) !important;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.3) !important;
}

.trust-badge:hover .trust-icon svg,
.trust-badge:hover .trust-badge-icon svg {
    filter: drop-shadow(0 0 12px rgba(0, 191, 255, 0.6)) !important;
    transform: scale(1.1) !important;
}

/* Varianti colore */
.trust-icon-shipping { 
    color: #00BFFF !important; 
}

.trust-icon-warranty { 
    color: #39FF14 !important;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%) !important;
    border-color: rgba(57, 255, 20, 0.3) !important;
}

.trust-icon-payment { 
    color: #FF6600 !important;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%) !important;
    border-color: rgba(255, 102, 0, 0.3) !important;
}

.trust-icon-support { 
    color: #FF00FF !important;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%) !important;
    border-color: rgba(255, 0, 255, 0.3) !important;
}

/* Contenuto testuale */
.trust-content {
    flex: 1 !important;
    min-width: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    text-align: left !important;
}

.trust-title {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    line-height: 1.2 !important;
}

.trust-badge:hover .trust-title {
    color: #00BFFF !important;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4) !important;
}

.trust-text,
.trust-badge-text {
    font-size: 13px !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.trust-badge strong,
.trust-badge h4 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
    text-transform: uppercase !important;
    display: block !important;
    letter-spacing: 0.5px !important;
}

.trust-badge:hover strong,
.trust-badge:hover h4 {
    color: #00BFFF !important;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4) !important;
}

.trust-badge p {
    font-size: 13px !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}
.trust-badges {
    margin-top: 60px !important;
    margin-bottom: 40px !important;
    /* ... resto del CSS ... */
}
/* ========================================
   RESPONSIVE - TABLET (max 992px)
   ======================================== */
@media (max-width: 992px) {
    .trust-badges,
    .trust-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .trust-badge {
        padding: 24px 20px !important;
        min-height: 100px !important;
    }
    
    .trust-icon,
    .trust-badge-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
    }
    
    .trust-icon svg,
    .trust-badge-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
    
    .trust-title,
    .trust-badge strong,
    .trust-badge h4 {
        font-size: 15px !important;
    }
    
    .trust-text,
    .trust-badge-text,
    .trust-badge p {
        font-size: 12px !important;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (max 768px)
   ======================================== */
@media (max-width: 768px) {
    .trust-badges-section {
        padding: 30px 15px !important;
        margin: 30px 0 !important;
    }
    
    .trust-badges-section h3 {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .trust-badges,
    .trust-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .trust-badge {
        padding: 20px 16px !important;
        gap: 14px !important;
        min-height: 90px !important;
    }
    
    .trust-icon,
    .trust-badge-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
    }
    
    .trust-icon svg,
    .trust-badge-icon svg {
        width: 26px !important;
        height: 26px !important;
    }
    
    .trust-title,
    .trust-badge strong,
    .trust-badge h4 {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }
    
    .trust-text,
    .trust-badge-text,
    .trust-badge p {
        font-size: 11px !important;
    }
    
    .trust-badge:hover {
        transform: translateY(-5px) scale(1.01) !important;
    }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (max 480px)
   ======================================== */
@media (max-width: 480px) {
    .trust-badges-section {
        padding: 25px 10px !important;
        margin: 25px 0 !important;
    }
    
    .trust-badges-section h3 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .trust-badges,
    .trust-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .trust-badge {
        padding: 16px 12px !important;
        gap: 10px !important;
        min-height: 85px !important;
    }
    
    .trust-icon,
    .trust-badge-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 24px !important;
    }
    
    .trust-icon svg,
    .trust-badge-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .trust-title,
    .trust-badge strong,
    .trust-badge h4 {
        font-size: 12px !important;
        margin-bottom: 3px !important;
        line-height: 1.2 !important;
    }
    
    .trust-text,
    .trust-badge-text,
    .trust-badge p {
        font-size: 10px !important;
        line-height: 1.3 !important;
    }
    
    .trust-badge:hover {
        transform: translateY(-3px) !important;
    }
    
    .trust-badge:hover .trust-icon,
    .trust-badge:hover .trust-badge-icon {
        transform: scale(1.05) !important;
    }
}

/* ================================================================================
   FINE TRUST BADGES CSS
   ================================================================================ */
/* ================================================================================
   HOME BANNER
   ================================================================================ */
.home-banner {
    position: relative;
    padding: 40px 30px;
    margin: 25px 0;
    border-radius: 4px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.12) 0%, rgba(106, 13, 173, 0.15) 50%, rgba(57, 255, 20, 0.08) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
}

.home-hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: #ffffff;
    margin-bottom: 8px;
}

.home-hero-content p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: #94a3b8;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background: #00BFFF;
    color: #0f172a;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    background: #33cfff;
    color: #0f172a;
}

/* ================================================================================
   SIDEBAR FILTERS
   ================================================================================ */
.sidebar-filters {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 4px;
    padding: 20px;
}

.sb-block {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.sb-block:last-child { 
    margin-bottom: 0; 
    padding-bottom: 0; 
    border-bottom: none; 
}

.sb-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00BFFF;
    margin-bottom: 12px;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    padding: 10px 14px;
    background: #1e293b;
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #00BFFF;
}

input::placeholder { 
    color: #64748b; 
}

/* ================================================================================
   FOOTER - 4 COLONNE - CENTRATO COME CONTENUTO
   ================================================================================ */
footer.footer,
.footer {
    background: #0a1628;
    border-top: 1px solid rgba(0, 191, 255, 0.15);
    margin-top: 40px;
    padding-top: 0;
    width: 100%;
}

.container.footer-columns,
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00BFFF;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.footer-col p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.footer-col p a,
.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline;
}

/* ================================================================================
   NEWSLETTER - MIGLIORATA E PIÙ ACCATTIVANTE - CENTRATA
   ================================================================================ */
.container.footer-newsletter,
.footer-newsletter {
    padding: 50px 20px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(106, 13, 173, 0.05) 100%);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.newsletter-box p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.5;
}

#newsletterForm,
.newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

#newsletterForm input[type="email"],
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 24px;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(0, 191, 255, 0.25);
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    min-width: 280px;
    transition: all 0.3s ease;
}

#newsletterForm input[type="email"]:focus,
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
    background: rgba(30, 41, 59, 1);
}

#newsletterForm input[type="email"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
    color: #64748b;
    opacity: 1;
}

#newsletterForm button,
.newsletter-form button {
    padding: 16px 35px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    color: #0f172a;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.35);
    transition: all 0.3s ease;
}

#newsletterForm button:hover,
.newsletter-form button:hover {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 100%);
    box-shadow: 0 6px 30px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

#newsletterMessage,
.newsletter-message {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

.newsletter-message.success { 
    color: #39FF14; 
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}
.newsletter-message.error { 
    color: #FF00FF; 
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* Footer bottom - CENTRATO */
.container.footer-bottom,
.footer-bottom {
    padding: 20px 20px;
    text-align: center;
    font-size: 12px;
    color: #64748b;
    max-width: 1350px;
    margin: 0 auto;
}

/* ================================================================================
   COOKIE BANNER
   ================================================================================ */
#cookieBanner,
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    border-top: 2px solid #00BFFF;
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.cookie-banner-text p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: #00BFFF;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    line-height: 1;
}

.btn-cookie.btn-accept {
    background: #00BFFF;
    color: #0f172a;
    border: none;
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.25);
}

.btn-cookie.btn-accept:hover {
    background: #33cfff;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

.btn-cookie.btn-reject {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #64748b;
}

.btn-cookie.btn-reject:hover { 
    border-color: #FF00FF; 
    color: #FF00FF; 
}

.btn-cookie.btn-settings {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #64748b;
}

.btn-cookie.btn-settings:hover { 
    border-color: #00BFFF; 
    color: #00BFFF; 
}

/* Cookie Modal */
#cookieSettingsModal,
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 15px;
}

.cookie-modal-content {
    background: #0f172a;
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 8px;
    max-width: 450px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    position: sticky;
    top: 0;
    background: #0f172a;
    z-index: 1;
}

.cookie-modal-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.cookie-modal-close {
    width: 35px;
    height: 35px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid #FF00FF;
    border-radius: 50%;
    color: #FF00FF;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background: #FF00FF;
    color: #ffffff;
}

.cookie-modal-body {
    padding: 18px;
}

.cookie-category {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.08);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    margin-bottom: 6px;
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.cookie-category-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00BFFF;
}

.cookie-required {
    font-size: 9px;
    color: #64748b;
    background: #1e293b;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 4px;
}

.cookie-description {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
    margin-left: 26px;
    line-height: 1.4;
}

.cookie-modal-footer {
    display: flex;
    gap: 8px;
    padding: 18px;
    border-top: 1px solid rgba(0, 191, 255, 0.1);
    position: sticky;
    bottom: 0;
    background: #0f172a;
}

.btn-cookie.btn-save {
    flex: 1;
    background: transparent;
    color: #00BFFF;
    border: 1px solid #00BFFF;
}

.btn-cookie.btn-save:hover {
    background: #00BFFF;
    color: #0f172a;
}

/* ================================================================================
   SCROLL TO TOP
   ================================================================================ */
#scrollToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #00BFFF;
    border: none;
    border-radius: 50%;
    color: #0f172a;
    font-size: 18px;
    cursor: pointer;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

#scrollToTop::before {
    content: '↑';
    font-weight: 700;
}

#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

/* Wishlist Toast */
.wishlist-toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    padding: 12px 25px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wishlist-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.wishlist-toast.success { 
    border-color: #39FF14; 
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.25); 
}
.wishlist-toast.removed { 
    border-color: #FF00FF; 
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.25); 
}

/* ================================================================================
   RESPONSIVE
   ================================================================================ */
@media (max-width: 1330px) {
    .product-grid,
    .home-offers-grid,
    .home-recommended-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .recent-track .product-card {
        flex: 0 0 calc(25% - 12px);
        min-width: calc(25% - 12px);
        max-width: calc(25% - 12px);
    }
}

@media (max-width: 1200px) {
    .product-grid,
    .home-offers-grid,
    .home-recommended-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mega-menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
    }
    
    .mega-menu-banner {
        display: none;
    }
    
    /* Trust badges - 2 per riga su tablet */
    .trust-container {
        flex-wrap: wrap;
    }
    
    .trust-badge {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 992px) {
    .product-grid,
    .home-offers-grid,
    .home-recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .recent-track .product-card {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar nav ul {
        gap: 12px;
    }
    
    .topbar nav ul li a {
        font-size: 10px;
        padding: 4px 6px;
    }
    
    /* Search bar su mobile - rimane in riga */
    .search-bar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 15px;
    }
    
    .search-form {
        order: 3;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .icon-btn {
        padding: 6px 8px;
    }
    
    .logo img {
        height: 55px;
    }
    
    .icon-account .account-text {
        display: none;
    }
    
    .navbar-container {
        overflow-x: auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-item {
        padding: 12px 15px;
        font-size: 11px;
    }
    
    .product-grid,
    .home-offers-grid,
    .home-recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .recent-track .product-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    
    /* Trust badges - 1 per riga su mobile, layout orizzontale interno */
    .trust-container {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .trust-badge {
        flex: 1 1 100%;
        min-width: 100%;
        flex-direction: row;
        padding: 18px 20px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-col h4 {
        border-bottom: none;
    }
    
    /* Newsletter responsive */
    .newsletter-box {
        padding: 25px 20px;
    }
    
    .newsletter-box h4 {
        font-size: 18px;
    }
    
    #newsletterForm,
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    #newsletterForm input[type="email"],
    .newsletter-form input[type="email"] {
        min-width: 100%;
        width: 100%;
        padding: 14px 20px;
    }
    
    #newsletterForm button,
    .newsletter-form button {
        width: 100%;
        padding: 14px 30px;
    }
    
    .mega-menu-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    /* Hero responsive */
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content-inner {
        padding: 20px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
}

@media (max-width: 480px) {
    .product-grid,
    .home-offers-grid,
    .home-recommended-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .recent-track .product-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        max-width: calc(100% - 0px);
    }
    
    .topbar nav ul {
        display: none;
    }
    
    .navbar-item {
        padding: 10px 12px;
        font-size: 10px;
    }
    
    /* Trust badge più compatto su schermi molto piccoli */
    .trust-badge {
        padding: 15px;
        gap: 12px;
    }
    
    .trust-icon {
        width: 45px;
        height: 45px;
    }
    
    .trust-title {
        font-size: 13px;
    }
    
    .trust-text {
        font-size: 11px;
    }
    
    .newsletter-box h4 {
        font-size: 16px;
    }
    
    .newsletter-box p {
        font-size: 13px;
    }
}
/* =========================================================
   HEADER SEARCH FIX – STRUTTURA REALE HTML
   ========================================================= */

/* Contenitore lente + input */
.header-search {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

/* INPUT NASCOSTO DI DEFAULT (desktop stile Amazon-like) */
.header-search .search-form {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
}

/* INPUT visibile quando attivo */
.header-search.active .search-form {
    width: 250px;
}

/* INPUT */
.header-search .search-form input {
    width: 100%;
    height: 42px;
    padding: 10px 18px;
    background: #1e293b;
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 50px;
    color: #fff;
}

/* LENTE */
.header-search .search-icon {
    flex-shrink: 0;
    z-index: 2;
}

/* HEADER ACTIONS SEMPRE IN RIGA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-wrap: nowrap;
}
/* =========================================================
   MOBILE MENU TOGGLE – FIX DEFINITIVO
   ========================================================= */

/* NASCOSTO SU DESKTOP */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
}

/* STILE HAMBURGER (MOBILE) */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #00BFFF;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

/* MENU MOBILE – STATO BASE */
.navbar-mobile {
    display: none;
}
@media (max-width: 768px) {
    .navbar-mobile {
        display: none;
        flex-direction: column;
        background: #1e293b;
        border-top: 1px solid rgba(0,191,255,0.2);
    }

    .navbar-mobile.active {
        display: flex;
    }
}
@media (max-width: 768px) {
    .navbar-container {
        display: none;
    }
}
@media (max-width: 768px) {
    .navbar-mobile a,
    .navbar-mobile .navbar-item {
        padding: 14px 20px;
        color: #94a3b8;
        font-family: 'Rajdhani', sans-serif;
        font-size: 13px;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .navbar-mobile a:hover {
        background: rgba(0,191,255,0.1);
        color: #00BFFF;
    }
}
/* =========================================================
   NAVBAR DESKTOP RIUSATA COME MOBILE MENU
   ========================================================= */

@media (max-width: 768px) {

    /* NASCONDI NAVBAR DI DEFAULT */
    .navbar-container {
        display: none;
        flex-direction: column;
        background: #1e293b;
        width: 100%;
    }

    /* QUANDO ATTIVA (HAMBURGER) */
    .navbar-container.active {
        display: flex;
    }

}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        margin: 0 auto;
        display: flex;
    }
}
/* =========================================================
   TOPBAR MOBILE – FORZA VISUALIZZAZIONE LINK
   ========================================================= */
@media (max-width: 480px) {
    .topbar nav ul {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .topbar nav ul li a {
        font-size: 11px;
        padding: 4px 6px;
        letter-spacing: 1px;
    }
}
/* =========================================================
   MEGA MENU – ADATTAMENTO MOBILE
   ========================================================= */
@media (max-width: 768px) {

    /* Contenitore principale: full screen */
    .mega-menu-dropdown {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;

        transform: none;
        border-radius: 0;
        border: none;

        padding-top: 60px; /* spazio per close */
        overflow-y: auto;
    }

    /* Layout interno: 1 colonna */
    .mega-menu-container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }

    /* Griglia categorie: 1 colonna */
    .mega-menu-categories {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Categoria */
    .mega-menu-category {
        padding: 14px;
    }

    /* Titolo categoria più grande e tappabile */
    .mega-menu-category-title {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    /* Subcategorie: più spazio per il tap */
    .mega-menu-subcategories li a {
        padding: 10px 0;
        font-size: 14px;
    }

    /* NIENTE hover su mobile */
    .mega-menu-category:hover,
    .mega-menu-subcategories li a:hover {
        box-shadow: none;
        padding-left: 0;
    }

    /* Nasconde banner laterale */
    .mega-menu-banner {
        display: none;
    }

    /* Bottone chiudi più grande */
    .mega-menu-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}
/* =========================================================
   FOOTER RESPONSIVE – 2 COLONNE
   ========================================================= */
@media (max-width: 992px) {
    .container.footer-columns,
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
  
/* =========================================================
   SEARCH OVERLAY – FIX DEFINITIVO COERENTE CON HTML
   ========================================================= */

/* contenitore lente */
.header-search {
    position: relative;
}

/* ANNULLA layout inline precedente */
.header-search .search-form {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);

    display: block;              /* non flex */
    width: 280px;                /* LUNGHEZZA BARRA */
    max-width: calc(100vw - 40px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: transparent;
    padding: 0;
    border: none;
    z-index: 3000;
}

/* STATO APERTO */
.header-search.active .search-form {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* INPUT: barra vera */
.header-search .search-form input {
    width: 100%;
    height: 44px;

    padding: 12px 20px;
    border-radius: 999px;

    background: #1e293b;
    border: 1px solid rgba(0,191,255,0.35);
    color: #ffffff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* =============================================================================
   CHECKOUT – FUTURE SOUND THEME - LAYOUT CORRETTO
   ============================================================================= */

.checkout-wrap {
    max-width: 1300px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

/* ===============================
   LAYOUT - TOP 2 COLONNE
   =============================== */

.checkout-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* ===============================
   LAYOUT - BOTTOM FULL WIDTH
   =============================== */

.checkout-bottom {
    margin-top: 30px;
    width: 100%;
}

/* ===============================
   CARD BASE
   =============================== */

.checkout-card,
.checkout-summary {
    background: linear-gradient(
        180deg,
        rgba(18, 32, 68, 0.85),
        rgba(11, 26, 64, 0.95)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 40px rgba(0, 0, 0, 0.5);
}

/* TITOLI */
.checkout-card h2,
.checkout-summary h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #00BFFF;
    margin-bottom: 22px;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

/* ===============================
   INDIRIZZO – FORM READONLY
   =============================== */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.input-readonly {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    color: #e5e7eb;
    font-size: 14px;
}

/* MODIFICA PROFILO */
.edit-profile-box {
    margin-top: 18px;
    text-align: right;
}

.btn-edit-profile {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #00BFFF;
    color: #00BFFF;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-edit-profile:hover {
    background: #00BFFF;
    color: #0b1a40;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

/* ===============================
   RIEPILOGO ORDINE
   =============================== */

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 14px;
    color: #cbd5f5;
}

.summary-row span:first-child {
    color: #94a3b8;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.summary-row strong {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.summary-total {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    color: #ffffff;
}

.summary-total span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.summary-total strong {
    color: #00BFFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

/* PULSANTE CHECKOUT */
.btn-checkout {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;

    background: linear-gradient(135deg, #00BFFF, #0066ff);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    transition: all 0.3s ease;
    
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
}

.btn-checkout:hover::before {
    left: 100%;
}

/* ===============================
   METODI DI SPEDIZIONE - BOX SINGOLO COME PAGAMENTI
   =============================== */

.shipping-methods {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.shipping-tile {
    cursor: pointer;
    display: block;
    flex: 1;
}

.shipping-tile input {
    display: none;
}

.shipping-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;

    padding: 16px;
    border-radius: 14px;

    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}

.shipping-tile.selected .shipping-box {
    border-color: #00BFFF;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.35);
    background: rgba(15, 23, 42, 0.85);
}

.shipping-box:hover {
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.25);
    transform: translateY(-2px);
}

/* INFO SPEDIZIONE */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.shipping-name {
    font-size: 15px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.shipping-name strong {
    color: #ffffff;
}

.shipping-time {
    font-size: 11px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
}

/* PREZZO SPEDIZIONE */
.shipping-price {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #00BFFF;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.free-badge {
    color: #39FF14;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.price-amount {
    color: #00BFFF;
}

/* ===============================
   METODI DI PAGAMENTO - BOX RIDOTTI
   =============================== */

.payment-methods {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.payment-tile {
    cursor: pointer;
    display: block;
    flex: 1;
}

.payment-tile input {
    display: none;
}

.payment-box {
    height: 100px;
    width: 100%;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;

    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-box img {
    max-width: 85%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.payment-tile input:checked + .payment-box {
    border-color: #00BFFF;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.35);
    background: rgba(15, 23, 42, 0.85);
}

.payment-tile input:checked + .payment-box img {
    opacity: 1;
    transform: scale(1.05);
}

.payment-box:hover {
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.25);
    transform: translateY(-2px);
}

.payment-box:hover img {
    opacity: 1;
}

/* ERRORE */
.form-error {
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff5c5c;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 13px;
}

/* ===============================
   RESPONSIVE - TABLET
   =============================== */

@media (max-width: 992px) {
    .checkout-top {
        grid-template-columns: 1fr;
    }
    
    .shipping-methods {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .shipping-tile {
        flex: 1 1 calc(50% - 8px);
        min-width: 200px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
    }
    
    .payment-tile {
        flex: 1 1 calc(33.333% - 11px);
        min-width: 120px;
    }
}

/* ===============================
   RESPONSIVE - MOBILE
   =============================== */

@media (max-width: 768px) {
    .checkout-wrap {
        margin: 20px auto 40px;
        padding: 0 15px;
    }
    
    .checkout-card,
    .checkout-summary {
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .shipping-methods {
        flex-direction: column;
    }
    
    .shipping-tile {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .payment-methods {
        flex-wrap: wrap;
    }
    
    .payment-tile {
        flex: 1 1 calc(50% - 8px);
    }
    
    .payment-box {
        height: 90px;
    }
    
    .payment-box img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .checkout-card h2,
    .checkout-summary h3 {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .shipping-box {
        height: 90px;
        padding: 14px;
    }
    
    .shipping-name {
        font-size: 13px;
    }
    
    .shipping-time {
        font-size: 10px;
    }
    
    .shipping-price {
        font-size: 14px;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-tile {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .payment-box {
        height: 80px;
    }
    
    .payment-box img {
        max-height: 50px;
    }
}

/* ===============================
   ANIMAZIONI
   =============================== */

@keyframes pulse-select {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 191, 255, 0.4);
    }
}

.shipping-tile.selected .shipping-box,
.payment-tile input:checked + .payment-box {
    animation: pulse-select 2s ease-in-out infinite;
}
/* ================================================================================
   CART PAGE - FUTURE SOUND THEME - CSS CORRETTO
   ================================================================================ */

/* CONTENITORE PRINCIPALE CARRELLO */
.cart-page {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 30px;
    align-items: start;
}

/* ================================================================================
   COLONNA SINISTRA - PRODOTTI
   ================================================================================ */
.cart-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-left h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

/* SINGOLO PRODOTTO */
.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 220px;
    gap: 20px;
    padding: 25px;
    
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: #00BFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 191, 255, 0.2);
    transform: translateY(-2px);
}

/* IMMAGINE PRODOTTO */
.item-thumb {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .item-thumb img {
    transform: scale(1.05);
}

/* INFO PRODOTTO */
.item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
}

.item-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.item-meta {
    font-size: 12px;
    color: #94a3b8;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-desc {
    font-size: 13px;
    color: #cbd5e1;
    margin-top: 5px;
    line-height: 1.5;
}

.item-shipping {
    font-size: 12px;
    color: #39FF14;
    font-weight: 600;
    margin-top: 8px;
}

/* COLONNA DESTRA ITEM - PREZZO E AZIONI */
.item-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.item-total {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #00BFFF;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    text-align: right;
    margin-bottom: 4px;
}

/* QTY BOX - SELETTORE QUANTITÀ (RIDOTTO) */
.qty-box {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    gap: 0;
    width: 100%;
    height: 38px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qty-box:hover,
.qty-box:focus-within {
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.25);
}

/* PULSANTI +/- */
.qty-minus,
.qty-plus {
    background: rgba(0, 191, 255, 0.1);
    border: none;
    color: #00BFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
}

.qty-minus:hover,
.qty-plus:hover {
    background: rgba(0, 191, 255, 0.2);
    color: #ffffff;
}

.qty-minus:active,
.qty-plus:active {
    background: rgba(0, 191, 255, 0.3);
    transform: scale(0.95);
}

/* INPUT QUANTITÀ */
.qty-box input[type="number"] {
    border: none;
    background: transparent;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 0 8px;
    width: 100%;
    height: 100%;
    outline: none;
    -moz-appearance: textfield;
}

.qty-box input[type="number"]::-webkit-outer-spin-button,
.qty-box input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ITEM ACTIONS - CONTENITORE PULSANTI */
.item-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* PULSANTE AGGIORNA - TEMA CYAN */
.item-actions button[type="submit"]:first-child,
.item-right > form:first-of-type .item-actions button {
    width: 100%;
    padding: 11px 18px;
    margin-top: 10px;
    
    background: linear-gradient(135deg, #00BFFF 0%, #0EA5E9 100%);
    color: #ffffff;
    
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    border: none;
    border-radius: 8px;
    cursor: pointer;
    
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    
    transition: all 0.3s ease;
    
    position: relative;
    overflow: hidden;
}

/* Effetto glow cyan */
.item-actions button[type="submit"]:first-child::before,
.item-right > form:first-of-type .item-actions button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.item-actions button[type="submit"]:first-child:hover,
.item-right > form:first-of-type .item-actions button:hover {
    background: linear-gradient(135deg, #33CFFF 0%, #00BFFF 100%);
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

.item-actions button[type="submit"]:first-child:hover::before,
.item-right > form:first-of-type .item-actions button:hover::before {
    width: 250px;
    height: 250px;
}

.item-actions button[type="submit"]:first-child:active,
.item-right > form:first-of-type .item-actions button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 191, 255, 0.4);
}

/* PULSANTE RIMUOVI - TEMA MAGENTA/PURPLE */
.item-right > form.item-actions button[type="submit"],
form.item-actions button[type="submit"] {
    width: 100%;
    padding: 11px 18px;
    margin-top: 10px;
    
    background: linear-gradient(135deg, #FF00FF 0%, #9D00FF 100%);
    color: #ffffff;
    
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    border: none;
    border-radius: 8px;
    cursor: pointer;
    
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
    
    transition: all 0.3s ease;
    
    position: relative;
    overflow: hidden;
}

/* Effetto pulse magenta */
form.item-actions button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 255, 0.3);
    border-radius: 8px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

form.item-actions button[type="submit"]:hover {
    background: linear-gradient(135deg, #FF33FF 0%, #B000FF 100%);
    box-shadow: 0 6px 25px rgba(255, 0, 255, 0.5);
    transform: translateY(-2px);
}

form.item-actions button[type="submit"]:hover::after {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
}

form.item-actions button[type="submit"]:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 0, 255, 0.4);
}

/* ================================================================================
   COLONNA DESTRA - RIEPILOGO ORDINE (STICKY)
   ================================================================================ */
.cart-right {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.cart-right .panel {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 16px;
    padding: 30px;
    
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cart-right h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

/* RIGHE RIEPILOGO */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    font-size: 15px;
    color: #cbd5e1;
}

.summary-row span:first-child {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.summary-row strong {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: #ffffff;
}

/* TOTALE FINALE */
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 191, 255, 0.3);
    font-size: 18px;
}

.summary-total span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.summary-total span:last-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #00BFFF;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

/* PULSANTE CHECKOUT */
.btn-checkout {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 18px 24px;
    
    background: linear-gradient(135deg, #00BFFF 0%, #0EA5E9 100%);
    color: #ffffff;
    
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    
    border: none;
    border-radius: 50px;
    cursor: pointer;
    
    box-shadow: 0 6px 30px rgba(0, 191, 255, 0.4);
    
    transition: all 0.3s ease;
    
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #33CFFF 0%, #00BFFF 100%);
    box-shadow: 0 8px 40px rgba(0, 191, 255, 0.6);
    transform: translateY(-3px);
    color: #ffffff;
}

.btn-checkout:hover::before {
    left: 100%;
}

.btn-checkout:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.5);
}

/* PULSANTE CONTINUA ACQUISTI */
.btn-continue {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 14px 20px;
    
    background: transparent;
    color: #00BFFF;
    
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    
    border: 2px solid #00BFFF;
    border-radius: 50px;
    cursor: pointer;
    
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: rgba(0, 191, 255, 0.1);
    border-color: #33CFFF;
    color: #33CFFF;
    transform: translateY(-2px);
}

/* ================================================================================
   CARRELLO VUOTO
   ================================================================================ */
.cart-left > p {
    text-align: center;
    padding: 80px 20px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 16px;
    font-size: 18px;
    color: #94a3b8;
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .cart-page {
        grid-template-columns: 1fr;
    }
    
    .cart-right {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr 180px;
        gap: 15px;
        padding: 20px;
    }
    
    .item-thumb {
        width: 100px;
        height: 100px;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 768px) {
    .cart-left h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .item-thumb {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
    
    .item-info {
        text-align: center;
    }
    
    .item-right {
        width: 100%;
    }
    
    .item-total {
        text-align: center;
    }
    
    .cart-right .panel {
        padding: 25px 20px;
    }
    
    .summary-total span:last-child {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .cart-page {
        padding: 0 15px;
    }
    
    .cart-item {
        padding: 15px;
    }
    
    .item-total {
        font-size: 20px;
    }
    
    .item-actions button {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */

/* Animazione caricamento */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
    }
}

.cart-item.updating {
    animation: pulse-glow 1.5s ease-in-out infinite;
}

/* Animazione rimozione */
@keyframes fade-out-slide {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.cart-item.removing {
    animation: fade-out-slide 0.5s ease-out forwards;
}

/* =============================================================================
   ORDER RECEIVED – FUTURE SOUND (FIX CASCADE DESKTOP)
   ============================================================================= */

/* CONTENITORE PAGINA */
body .checkout-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 34px 38px;

    background: linear-gradient(
        180deg,
        rgba(18, 32, 68, 0.95),
        rgba(11, 26, 64, 0.98)
    );

    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 18px 55px rgba(0,0,0,0.65);
}

/* TITOLO */
body .checkout-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #00BFFF;
    margin-bottom: 12px;
    text-shadow: 0 0 22px rgba(0,191,255,0.35);
}

/* SOTTOTITOLI */
body .checkout-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

/* TESTO */
body .checkout-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5f5;
}

/* NUMERO ORDINE */
body .checkout-card strong {
    color: #39FF14;
    font-weight: 700;
}

/* BOX INFO */
body .checkout-card > div {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: 18px;
}

/* CONTENITORE BOTTONI */
body .checkout-card > div:last-child {
    background: none;
    border: none;
    padding: 0;
}

/* BOTTONI */
body .btn-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;
    border-radius: 50px;

    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0,191,255,0.4);

    color: #00BFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;

    transition: all 0.3s ease;
}

body .btn-continue:hover {
    background: #00BFFF;
    color: #0f172a;
    box-shadow: 0 0 28px rgba(0,191,255,0.55);
    transform: translateY(-2px);
}

/* =============================================================================
   MOBILE
   ============================================================================= */
@media (max-width: 768px) {
    body .checkout-card {
        margin: 20px;
        padding: 26px 22px;
    }

    body .checkout-card h2 {
        font-size: 22px;
    }

    body .btn-continue {
        width: 100%;
    }
}

/* ================================================================================
   RECENSIONI PRODOTTO - FUTURE SOUND THEME
   ================================================================================ */

.product-reviews {
    /* FORZA USCITA DAL GRID A 3 COLONNE */
    grid-column: 1 / -1 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-top: 60px;
    padding: 50px 0;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(0, 191, 255, 0.15);
}

.product-reviews .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER RECENSIONI */
.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 40px 0;
    text-shadow: 0 2px 15px rgba(0, 191, 255, 0.4);
}

/* SUMMARY BOX */
.reviews-summary {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.reviews-rating-large {
    text-align: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
}

.rating-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #00BFFF;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
}

.rating-stars-large {
    font-size: 28px;
    margin-bottom: 10px;
}

.rating-stars-large .star {
    margin: 0 2px;
}

.rating-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
}

/* DISTRIBUZIONE STELLE */
.rating-distribution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 50px 1fr 40px;
    align-items: center;
    gap: 15px;
}

.rating-bar-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #00BFFF;
    text-align: right;
}

.rating-bar-track {
    height: 8px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00BFFF 0%, #6A0DAD 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.rating-bar-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #cbd5e1;
    text-align: left;
}

.no-reviews-text {
    font-size: 16px;
    color: #94a3b8;
    margin-top: 20px;
}

/* ALERT MESSAGES */
.product-reviews .alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-reviews .alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.product-reviews .alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.product-reviews .alert-info {
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #00BFFF;
}

/* FORM RECENSIONE */
.review-form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 35px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.review-form-container h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00BFFF;
    margin: 0 0 30px 0;
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #00BFFF;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

/* STELLE INPUT */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    font-size: 40px;
    color: rgba(148, 163, 184, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input label.star-active {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

.star-rating-input label.star-inactive {
    color: rgba(148, 163, 184, 0.3);
    text-shadow: none;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

.review-form small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #94a3b8;
}

.review-form .btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
}

.review-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

/* LISTA RECENSIONI */
.reviews-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.review-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BFFF, #6A0DAD);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #00BFFF;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.review-date {
    font-size: 13px;
    color: #94a3b8;
}

.review-rating {
    display: flex;
    gap: 3px;
    font-size: 20px;
}

.review-rating .star {
    transition: all 0.2s ease;
}

.star-full {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.star-half {
    color: #FFD700;
    opacity: 0.5;
}

.star-empty {
    color: rgba(148, 163, 184, 0.3);
}

.review-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #00BFFF;
    margin: 0 0 12px 0;
}

.review-comment {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

.admin-reply {
    margin-top: 20px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-left: 4px solid #6A0DAD;
    border-radius: 8px;
}

.admin-reply strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #FF00FF;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.admin-reply p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

/* ================================================================================
   RECENSIONI - RESPONSIVE
   ================================================================================ */

@media (max-width: 992px) {
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .reviews-rating-large {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-reviews {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    .reviews-title {
        font-size: 26px;
    }
    
    .rating-number {
        font-size: 52px;
    }
    
    .reviews-summary {
        padding: 25px;
    }
    
    .rating-bar-row {
        grid-template-columns: 40px 1fr 35px;
        gap: 10px;
    }
    
    .review-form-container {
        padding: 25px;
    }
    
    .review-form-container h3 {
        font-size: 20px;
    }
    
    .star-rating-input label {
        font-size: 36px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 22px;
    }
    
    .rating-number {
        font-size: 44px;
    }
    
    .rating-stars-large {
        font-size: 24px;
    }
    
    .reviews-summary {
        padding: 20px;
    }
    
    .review-form-container {
        padding: 20px;
    }
    
    .star-rating-input label {
        font-size: 32px;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .review-rating {
        font-size: 18px;
    }
}

/* ================================================================================
   HOMEPAGE - SPACING CARD LATERALE
   ================================================================================ */

/* Container principale prodotti */
.products-section,
.product-grid-container,
.home-products-wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Grid prodotti - margini laterali */
.product-grid,
.products-grid {
    padding: 0 20px !important;
}

/* Sezioni homepage */
.home-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Container generale */
.container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* ================================================================================
   RESPONSIVE SPACING
   ================================================================================ */

@media (max-width: 768px) {
    .products-section,
    .product-grid-container,
    .home-products-wrapper,
    .product-grid,
    .products-grid,
    .home-section,
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .products-section,
    .product-grid-container,
    .home-products-wrapper,
    .product-grid,
    .products-grid,
    .home-section,
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ================================================================================
   PAGINA LOGIN/REGISTER - FUTURE SOUND THEME
   ================================================================================ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0B1A40 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

/* Effetto sfondo cyber */
.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Box principale */
.auth-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 191, 255, 0.2);
}

/* Titolo */
.auth-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 10px 0;
    text-align: center;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
}

/* Sottotitolo */
.auth-subtitle {
    font-size: 15px;
    color: #94a3b8;
    text-align: center;
    margin: 0 0 30px 0;
}

/* Messaggio di errore */
.auth-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 10px;
    padding: 14px 18px;
    color: #f87171;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

/* Form */
.auth-form {
    margin-bottom: 20px;
}

/* Campi form */
.auth-field {
    margin-bottom: 20px;
}

.auth-field label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #00BFFF;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="password"],
.auth-field input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.auth-field input:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

.auth-field input::placeholder {
    color: #64748b;
}

/* Pulsante primario */
.auth-btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
    margin-top: 10px;
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

.auth-btn-primary:active {
    transform: translateY(0);
}

/* Link password dimenticata */
.auth-forgot {
    text-align: center;
    margin: 20px 0;
}

.auth-forgot a {
    color: #00BFFF;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-forgot a:hover {
    color: #0EA5E9;
    text-decoration: underline;
}

/* Divisore */
.auth-divider {
    height: 1px;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(0, 191, 255, 0.3) 50%, 
        transparent 100%
    );
    margin: 30px 0;
}

/* Sezione registrazione */
.auth-register {
    text-align: center;
}

.auth-register span {
    display: block;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 15px;
}

/* Pulsante secondario */
.auth-btn-secondary {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #00BFFF;
    border-radius: 10px;
    color: #00BFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn-secondary:hover {
    background: rgba(0, 191, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

/* Checkbox "Ricordami" / "Accetto termini" */
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00BFFF;
    cursor: pointer;
}

.auth-checkbox label {
    font-size: 14px;
    color: #cbd5e1;
    cursor: pointer;
    margin: 0;
}

.auth-checkbox a {
    color: #00BFFF;
    text-decoration: none;
}

.auth-checkbox a:hover {
    text-decoration: underline;
}

/* Messaggio di successo */
.auth-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 10px;
    padding: 14px 18px;
    color: #4ade80;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

/* ================================================================================
   AUTH - RESPONSIVE
   ================================================================================ */

@media (max-width: 768px) {
    .auth-page {
        padding: 30px 15px;
    }
    
    .auth-box {
        padding: 35px 30px;
    }
    
    .auth-title {
        font-size: 28px;
    }
    
    .auth-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .auth-page {
        padding: 20px 10px;
    }
    
    .auth-box {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .auth-field input[type="text"],
    .auth-field input[type="email"],
    .auth-field input[type="password"],
    .auth-field input[type="tel"] {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .auth-btn-primary {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .auth-btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* ================================================================================
   PAGINA CONTATTI - FUTURE SOUND THEME
   ================================================================================ */

.contacts-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Titolo principale */
.contacts-page .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00BFFF;
    text-align: center;
    margin: 0 0 50px 0;
    text-shadow: 0 2px 20px rgba(0, 191, 255, 0.5);
}

/* Alert messaggi */
.contacts-page .alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 15px;
}

.contacts-page .alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.contacts-page .alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.contacts-page .alert ul {
    margin: 0;
    padding-left: 20px;
}

.contacts-page .alert li {
    margin: 5px 0;
}

/* LAYOUT PRINCIPALE - 2 COLONNE */
.contacts-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* COLONNA SINISTRA - INFO CONTATTI */
.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-block {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-block:hover {
    border-color: rgba(0, 191, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #00BFFF;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-block p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 8px 0;
}

.contact-block strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-block a {
    color: #00BFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-block a:hover {
    color: #0EA5E9;
    text-decoration: underline;
}

/* COLONNA DESTRA - FORM */
.contacts-form {
    display: flex;
    flex-direction: column;
}

.contact-form-box {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-form-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00BFFF;
    margin: 0 0 30px 0;
    text-align: center;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #00BFFF;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox privacy */
.privacy-checkbox {
    flex-direction: row !important;
    align-items: center;
    gap: 10px !important;
    text-transform: none !important;
    font-size: 14px !important;
    color: #cbd5e1 !important;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00BFFF;
    cursor: pointer;
}

.privacy-checkbox a {
    color: #00BFFF;
    text-decoration: none;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

/* Pulsante invio */
.contact-form .btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

/* SEZIONE MAPPA */
.contact-map-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.map-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #00BFFF;
    text-align: center;
    margin: 0 0 30px 0;
}

.contact-map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

.contact-map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-address {
    text-align: center;
    font-size: 16px;
    color: #cbd5e1;
    margin: 20px 0;
}

.map-address strong {
    color: #00BFFF;
}

/* Pulsante indicazioni */
.btn-map-directions {
    display: block;
    max-width: 350px;
    margin: 0 auto;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #00BFFF;
    border-radius: 10px;
    color: #00BFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-map-directions:hover {
    background: rgba(0, 191, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    transform: translateY(-2px);
}

/* ================================================================================
   CONTATTI - RESPONSIVE
   ================================================================================ */

@media (max-width: 992px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contacts-info {
        order: 2;
    }
    
    .contacts-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contacts-page {
        padding: 40px 15px;
    }
    
    .contacts-page .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .contact-form-box {
        padding: 25px;
    }
    
    .contact-form-box h3 {
        font-size: 20px;
    }
    
    .contact-block {
        padding: 20px;
    }
    
    .contact-block h3 {
        font-size: 16px;
    }
    
    .contact-map-section {
        padding: 30px 20px;
    }
    
    .map-title {
        font-size: 24px;
    }
    
    .contact-map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contacts-page {
        padding: 30px 10px;
    }
    
    .contacts-page .section-title {
        font-size: 24px;
    }
    
    .contact-form-box {
        padding: 20px;
    }
    
    .contact-form-box h3 {
        font-size: 18px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .contact-form .btn-primary {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .contact-block {
        padding: 18px;
    }
    
    .contact-map-section {
        padding: 25px 15px;
    }
    
    .contact-map-container iframe {
        height: 300px;
    }
    
    .privacy-checkbox {
        font-size: 13px !important;
    }
}

/* ================================================================================
   PAGINA RECUPERO PASSWORD - FUTURE SOUND THEME
   ================================================================================ */

.forgot-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0B1A40 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

/* Effetto sfondo cyber */
.forgot-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Box principale */
.forgot-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Titolo */
.forgot-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00BFFF;
    text-align: center;
    margin: 0 0 30px 0;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
}

/* Messaggio di successo */
.forgot-success {
    width: 100%;
    max-width: 450px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    padding: 18px 24px;
    color: #4ade80;
    font-size: 15px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

/* Messaggio di errore */
.forgot-error {
    width: 100%;
    max-width: 450px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    padding: 18px 24px;
    color: #f87171;
    font-size: 15px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

/* Form */
.forgot-form {
    width: 100%;
    max-width: 450px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 191, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Input email */
.forgot-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.forgot-input::placeholder {
    color: #64748b;
}

.forgot-input:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

/* Pulsante */
.forgot-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
}

.forgot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

.forgot-btn:active {
    transform: translateY(0);
}

/* Link torna al login */
.forgot-links {
    margin-top: 20px;
    text-align: center;
}

.forgot-links a {
    color: #00BFFF;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.forgot-links a:hover {
    color: #0EA5E9;
    text-decoration: underline;
}

.forgot-links a::before {
    content: '←';
    font-size: 16px;
}

/* ================================================================================
   FORGOT PASSWORD - RESPONSIVE
   ================================================================================ */

@media (max-width: 768px) {
    .forgot-wrapper {
        padding: 30px 15px;
    }
    
    .forgot-title {
        font-size: 28px;
    }
    
    .forgot-form {
        padding: 35px 30px;
    }
}

@media (max-width: 480px) {
    .forgot-wrapper {
        padding: 20px 10px;
    }
    
    .forgot-title {
        font-size: 24px;
    }
    
    .forgot-form {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .forgot-input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .forgot-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .forgot-success,
    .forgot-error {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* ================================================================================
   PAGINA REGISTRAZIONE - FUTURE SOUND THEME
   ================================================================================ */

.register-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0B1A40 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

/* Effetto sfondo cyber */
.register-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Box principale */
.register-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Titolo */
.register-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00BFFF;
    text-align: center;
    margin: 0 0 30px 0;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
}

/* Messaggio di successo */
.register-success {
    width: 100%;
    max-width: 450px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    padding: 20px 24px;
    color: #4ade80;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

/* Messaggio di errore */
.register-error {
    width: 100%;
    max-width: 450px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    padding: 18px 24px;
    color: #f87171;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

/* Form */
.register-form {
    width: 100%;
    max-width: 450px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 191, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Input e Select */
.register-input,
.register-form select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.register-input::placeholder {
    color: #64748b;
}

.register-input:focus,
.register-form select:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

/* Select dropdown */
.register-form select {
    cursor: pointer;
    appearance: none;
    padding-right: 2.5rem;
}

.register-form select option {
    background: #1e293b;
    color: #fff;
    padding: 10px;
}

.register-form select optgroup {
    background: #0f172a;
    color: #00BFFF;
    font-weight: 600;
}

/* Testo rilevamento paese */
.register-form div[style*="margin-top"] {
    margin-top: 0.5rem !important;
    font-size: 0.85rem !important;
    opacity: 0.7 !important;
    text-align: center !important;
    color: #94a3b8 !important;
}

.register-form div[style*="margin-top"] strong {
    color: #00BFFF;
    font-weight: 600;
}

/* Pulsante registrazione */
.register-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
    margin-top: 10px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

.register-btn:active {
    transform: translateY(0);
}

/* Link accedi */
.register-links {
    margin-top: 20px;
    text-align: center;
}

.register-links a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-links a strong {
    color: #00BFFF;
    font-weight: 600;
}

.register-links a:hover {
    color: #ffffff;
}

.register-links a:hover strong {
    color: #0EA5E9;
    text-decoration: underline;
}

/* Fix per icona dropdown */
.register-form span[style*="position: absolute"] {
    color: #00BFFF !important;
    font-size: 1.2rem !important;
}

/* ================================================================================
   REGISTER - RESPONSIVE
   ================================================================================ */

@media (max-width: 768px) {
    .register-wrapper {
        padding: 30px 15px;
    }
    
    .register-title {
        font-size: 28px;
    }
    
    .register-form {
        padding: 35px 30px;
    }
    
    /* Fix iOS zoom */
    .register-input,
    .register-form select {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .register-wrapper {
        padding: 20px 10px;
    }
    
    .register-title {
        font-size: 24px;
    }
    
    .register-form {
        padding: 30px 25px;
        border-radius: 16px;
        gap: 16px;
    }
    
    .register-input,
    .register-form select {
        padding: 12px 16px;
        font-size: 16px !important;
    }
    
    .register-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .register-success,
    .register-error {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* ================================================================================
   FIX INLINE STYLES (OVERRIDE)
   ================================================================================ */

/* Override stili inline per select wrapper */
.register-form div[style*="position: relative"] {
    position: relative !important;
}

.register-form div[style*="position: relative"] select {
    width: 100% !important;
}

.register-form div[style*="position: relative"] span {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    color: #00BFFF !important;
}

/* ================================================================================
   PAGINA CHI SIAMO - FUTURE SOUND THEME
   ================================================================================ */

/* HERO SECTION */
.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 60px;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(106, 13, 173, 0.2) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.about-hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #00BFFF;
    margin: 0 0 25px 0;
    text-shadow: 
        0 0 40px rgba(0, 191, 255, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero-content p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* STATISTICHE */
.about-stats {
    padding: 60px 0;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(0, 191, 255, 0.2);
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #00BFFF;
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #00BFFF;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #cbd5e1;
    text-transform: uppercase;
    font-weight: 600;
}

/* SEZIONI CONTENUTO */
.about-section {
    padding: 80px 0;
}

.about-section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 15px rgba(0, 191, 255, 0.4);
}

.about-text {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

/* MISSION & VISION */
.about-mission-vision {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.3);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-box,
.vision-box {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    border-color: #00BFFF;
    box-shadow: 0 15px 50px rgba(0, 191, 255, 0.3);
    transform: translateY(-5px);
}

/* ICONE SVG MISSION & VISION */
.mission-box .icon,
.vision-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
}

/* Icona Target per Mission */
.mission-box .icon::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300BFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='6'%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='2'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Icona Rocket per Vision */
.vision-box .icon::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300BFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z'%3E%3C/path%3E%3Cpath d='m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'%3E%3C/path%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0'%3E%3C/path%3E%3Cpath d='M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.mission-box h3,
.vision-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #00BFFF;
    margin: 0 0 20px 0;
}

.mission-box p,
.vision-box p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
}

/* VALORI */
.about-values {
    padding: 80px 0;
}

.about-values h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00BFFF;
    text-align: center;
    margin: 0 0 50px 0;
    text-shadow: 0 2px 15px rgba(0, 191, 255, 0.4);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #00BFFF;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.3);
    transform: translateX(5px);
}

/* ICONA SVG CHECK PER VALORI */
.value-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    position: relative;
}

.value-icon::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.value-text {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 500;
}

/* TEAM */
.about-team {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.3);
}

.about-team h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00BFFF;
    text-align: center;
    margin: 0 0 50px 0;
    text-shadow: 0 2px 15px rgba(0, 191, 255, 0.4);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #00BFFF;
    box-shadow: 0 15px 50px rgba(0, 191, 255, 0.3);
    transform: translateY(-8px);
}

.team-photo,
.team-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid #00BFFF;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.team-photo-placeholder {
    background: linear-gradient(135deg, #00BFFF, #6A0DAD);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.team-member h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #00BFFF;
    margin: 0 0 8px 0;
}

.team-role {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* CALL TO ACTION */
.about-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
}

.about-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 15px rgba(0, 191, 255, 0.4);
}

.about-cta p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.about-cta .btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00BFFF, #0EA5E9);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.6);
}

/* ================================================================================
   CHI SIAMO - RESPONSIVE
   ================================================================================ */

@media (max-width: 992px) {
    .about-hero {
        margin-top: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .about-hero-content {
        padding: 40px 20px;
    }
    
    .about-hero-content h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .about-hero-content p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .about-section,
    .about-mission-vision,
    .about-values,
    .about-team,
    .about-cta {
        padding: 50px 0;
    }
    
    .about-section-content h2,
    .about-values h2,
    .about-team h2,
    .about-cta h2 {
        font-size: 28px;
    }
    
    .mission-box,
    .vision-box {
        padding: 30px;
    }
    
    .mission-box .icon,
    .vision-box .icon {
        width: 50px;
        height: 50px;
    }
    
    .mission-box .icon::before,
    .vision-box .icon::before {
        width: 50px;
        height: 50px;
    }
    
    .team-grid {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 350px;
        margin-top: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 26px;
    }
    
    .about-hero-content p {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .about-section-content h2,
    .about-values h2,
    .about-team h2,
    .about-cta h2 {
        font-size: 24px;
    }
    
    .mission-box .icon,
    .vision-box .icon {
        width: 45px;
        height: 45px;
    }
    
    .mission-box .icon::before,
    .vision-box .icon::before {
        width: 45px;
        height: 45px;
    }
    
    .mission-box h3,
    .vision-box h3 {
        font-size: 22px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta .btn-primary {
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* ================================================================================
   FIX FINALE SEARCH AMAZON-STYLE - BARRA VERSO SINISTRA
   ================================================================================ */

/* SEARCH - Lente sempre visibile */
.header-search {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    position: relative !important;
}

/* FORM nascosto di default, appare VERSO SINISTRA */
.header-search .search-form {
    position: absolute !important;
    right: 50px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) scaleX(0) !important;
    transform-origin: right center !important;
    width: 280px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: block !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    z-index: 5 !important;
}

/* FORM visibile quando attivo */
.header-search.active .search-form {
    transform: translateY(-50%) scaleX(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* INPUT senza pulsante visibile */
.search-form input[type="text"] {
    width: 100% !important;
    height: 42px !important;
    padding: 10px 18px !important;
    background: #1e293b !important;
    border: 1px solid rgba(0, 191, 255, 0.2) !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    display: block !important;
}

/* NASCONDE il button submit dentro il form */
.search-form button,
.search-form .search-icon {
    display: none !important;
}

/* LENTE TRIGGER - sempre visibile, stile icon-btn */
.header-search > .search-icon,
.header-search > a.search-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 6px !important;
    color: #94a3b8 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 8px 12px !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    z-index: 10 !important;
}

.header-search > .search-icon:hover,
.header-search > a.search-icon:hover {
    color: #00BFFF !important;
    background: rgba(0, 191, 255, 0.1) !important;
    border-color: rgba(0, 191, 255, 0.2) !important;
}

.header-search > .search-icon svg,
.header-search > a.search-icon svg {
    width: 22px !important;
    height: 22px !important;
}

/* ACCOUNT */
.icon-account {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}

.icon-account .account-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.icon-account .account-text strong {
    display: block !important;
    font-size: 14px !important;
    color: #ffffff !important;
}

.icon-account .account-text small {
    display: block !important;
    font-size: 11px !important;
    color: #94a3b8 !important;
}

@media (max-width: 768px) {
    .header-search .search-form {
        position: fixed !important;
        top: 40px !important;
        left: 15px !important;
        right: 15px !important;
        width: auto !important;
        transform: translateY(-20px) !important;
        transform-origin: top center !important;
        opacity: 0 !important;
        visibility: hidden !important;
        z-index: 9999 !important;
    }
    
    .header-search.active .search-form {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .icon-account .account-text {
        display: none !important;
    }
}

/* ================================================================================
   DOWNLOAD PAGE - CSS
   ================================================================================ */

/* Container pagina download */
.downloads-page .container,
body.download .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Oppure se il container è diretto senza classe specifica sulla pagina */
.container.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Titolo principale pagina */
.downloads-list + h1,
.container > h1:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #00BFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 40px 0;
    padding-top: 40px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.container > h1:first-child::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, #6A0DAD, transparent);
    border-radius: 2px;
}

/* Messaggio nessun download */
.downloads-list ~ p,
.container > p:not(.download-item p) {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 60px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 12px;
}

/* Griglia downloads */
.downloads-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Card singolo download */
.download-item {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top left, rgba(0, 191, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.download-item:hover {
    border-color: rgba(0, 191, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 
        0 10px 40px -10px rgba(0, 191, 255, 0.3),
        0 0 20px rgba(0, 191, 255, 0.1);
}

.download-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #00BFFF;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.download-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.download-item .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 50%, #006699 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-item .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-item .btn:hover::before {
    left: 100%;
}

.download-item .btn:hover {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 50%, #0099cc 100%);
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.5),
        0 0 40px rgba(0, 191, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

.download-item .btn:active {
    transform: translateY(0);
}

/* Icone FontAwesome */
.download-item .btn i {
    font-size: 0.9rem;
}

/* ================================================================================
   RESPONSIVE
   ================================================================================ */
@media (max-width: 992px) {
    .container > h1:first-child {
        font-size: 2rem;
        padding-top: 30px;
        margin-bottom: 32px;
    }

    .downloads-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .download-item {
        padding: 24px;
    }

    .download-item h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .container > h1:first-child {
        font-size: 1.6rem;
        padding-top: 24px;
        margin-bottom: 24px;
    }

    .downloads-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .download-item {
        padding: 20px;
        border-radius: 12px;
    }

    .download-item h3 {
        font-size: 1.15rem;
    }

    .download-item p {
        font-size: 0.9rem;
    }

    .download-item .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Animazioni entrata */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-item {
    animation: fadeInUp 0.5s ease-out both;
}

.download-item:nth-child(1) { animation-delay: 0.1s; }
.download-item:nth-child(2) { animation-delay: 0.2s; }
.download-item:nth-child(3) { animation-delay: 0.3s; }
.download-item:nth-child(4) { animation-delay: 0.4s; }
.download-item:nth-child(5) { animation-delay: 0.5s; }
.download-item:nth-child(6) { animation-delay: 0.6s; }


/* ================================================================================
   LEGAL PAGES - CSS (Spedizioni, Privacy, Termini, etc.)
   ================================================================================ */

/* Container pagina legale */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Titolo sezione */
.legal-page .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #00BFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 40px 0;
    padding-top: 40px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.legal-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, #6A0DAD, transparent);
    border-radius: 2px;
}

/* Contenuto legale */
.legal-content {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Effetto glow angolo */
.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top left, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.legal-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at bottom right, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Tipografia contenuto */
.legal-content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.legal-content p {
    margin-bottom: 1.2em;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

/* Messaggio contenuto vuoto */
.legal-content em {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Stili per titoli interni (se presenti nel contenuto) */
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #00BFFF;
    margin: 2em 0 1em 0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.legal-content h2 {
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.legal-content h3 {
    font-size: 1.25rem;
}

.legal-content h4 {
    font-size: 1.1rem;
}

/* Liste */
.legal-content ul,
.legal-content ol {
    margin: 1.2em 0;
    padding-left: 1.5em;
}

.legal-content ul {
    list-style: none;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.6em;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: #00BFFF;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
}

.legal-content ol {
    list-style: none;
    counter-reset: legal-counter;
}

.legal-content ol li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.6em;
    counter-increment: legal-counter;
}

.legal-content ol li::before {
    content: counter(legal-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #00BFFF;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

/* Link nel contenuto */
.legal-content a {
    color: #00BFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 191, 255, 0.3);
    transition: all 0.2s ease;
}

.legal-content a:hover {
    color: #33cfff;
    border-bottom-color: #33cfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

/* Testo evidenziato/importante */
.legal-content strong,
.legal-content b {
    color: #ffffff;
    font-weight: 600;
}

/* Footer legale */
.legal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 191, 255, 0.1);
    text-align: right;
}

.legal-footer p {
    margin: 0;
}

.legal-footer small {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* ================================================================================
   RESPONSIVE
   ================================================================================ */
@media (max-width: 992px) {
    .legal-page {
        padding: 0 16px 60px;
    }

    .legal-page .section-title {
        font-size: 1.8rem;
        padding-top: 30px;
        margin-bottom: 32px;
    }

    .legal-content {
        padding: 32px;
    }
}

@media (max-width: 576px) {
    .legal-page {
        padding: 0 12px 50px;
    }

    .legal-page .section-title {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
        padding-top: 24px;
        margin-bottom: 24px;
    }

    .legal-page .section-title::after {
        height: 2px;
        bottom: -8px;
    }

    .legal-content {
        padding: 24px 20px;
        border-radius: 12px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.15rem;
    }

    .legal-footer {
        margin-top: 24px;
        padding-top: 16px;
        text-align: center;
    }

    .legal-footer small {
        font-size: 0.8rem;
    }
}

/* ================================================================================
   ANIMAZIONE ENTRATA
   ================================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-content {
    animation: fadeIn 0.6s ease-out both;
}

.legal-footer {
    animation: fadeIn 0.6s ease-out 0.2s both;
}


/* ================================================================================
   AREA CLIENTI - CSS (Dashboard + Sidebar)
   ================================================================================ */

/* Wrapper principale */
.customer-area-wrapper {
    display: flex;
    min-height: calc(100vh - 200px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

/* ================================================================================
   SIDEBAR
   ================================================================================ */
.customer-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding: 30px 0;
}

/* Box info cliente */
.customer-info-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.customer-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00BFFF, #6A0DAD, transparent);
}

/* Avatar */
.customer-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #00BFFF 0%, #6A0DAD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

.customer-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.customer-email {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    word-break: break-all;
}

/* Navigazione sidebar */
.customer-nav {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.customer-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.customer-nav-item .nav-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.customer-nav-item .nav-label {
    flex: 1;
}

.customer-nav-item:hover {
    background: rgba(0, 191, 255, 0.1);
    color: #ffffff;
}

.customer-nav-item.active {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(106, 13, 173, 0.15) 100%);
    color: #00BFFF;
    box-shadow: inset 0 0 20px rgba(0, 191, 255, 0.1);
}

.customer-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #00BFFF;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
}

/* Logout */
.customer-nav-item.logout {
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    color: rgba(255, 100, 100, 0.7);
}

.customer-nav-item.logout:hover {
    background: rgba(255, 100, 100, 0.1);
    color: #ff6b6b;
}

/* ================================================================================
   CONTENUTO PRINCIPALE
   ================================================================================ */
.customer-content {
    flex: 1;
    min-width: 0;
    padding: 30px 0;
    position: relative;
}

/* Header pagina */
.customer-page-header {
    margin-bottom: 32px;
}

.customer-page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 8px 0;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

.customer-page-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ================================================================================
   ALERT / ONBOARDING
   ================================================================================ */
.customer-content .alert {
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.customer-content .alert h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.customer-content .alert p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.customer-content .alert-info {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15) 0%, rgba(106, 13, 173, 0.1) 100%);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #ffffff;
}

.customer-content .alert-error {
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff9999;
}

/* ================================================================================
   STATISTICHE DASHBOARD
   ================================================================================ */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px -10px rgba(0, 191, 255, 0.25);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(106, 13, 173, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ================================================================================
   SEZIONI DASHBOARD
   ================================================================================ */
.dashboard-section {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.section-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #00BFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================================================================================
   INFO GRID (Dati Cliente)
   ================================================================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    padding: 16px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.08);
}

.info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.info-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

/* ================================================================================
   MINI LISTE (Ordini/Fatture)
   ================================================================================ */
.orders-mini-list,
.invoices-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card mini ordine */
.order-mini-card {
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.25s ease;
}

.order-mini-card:hover {
    border-color: rgba(0, 191, 255, 0.3);
    background: rgba(0, 191, 255, 0.08);
}

.order-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-mini-header strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
}

.order-mini-body {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Status badge */
.order-status {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.status-pending,
.order-status.status-in_attesa {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.order-status.status-processing,
.order-status.status-in_lavorazione {
    background: rgba(0, 191, 255, 0.2);
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.order-status.status-shipped,
.order-status.status-spedito {
    background: rgba(106, 13, 173, 0.2);
    color: #a855f7;
    border: 1px solid rgba(106, 13, 173, 0.3);
}

.order-status.status-delivered,
.order-status.status-consegnato {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status.status-cancelled,
.order-status.status-annullato {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Card mini fattura */
.invoice-mini-card {
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.25s ease;
}

.invoice-mini-card:hover {
    border-color: rgba(0, 191, 255, 0.3);
    background: rgba(0, 191, 255, 0.08);
}

.invoice-mini-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.invoice-mini-info strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
}

.invoice-mini-info span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================================================================
   BOTTONI
   ================================================================================ */
.customer-content .btn-primary,
.customer-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.customer-content .btn-primary {
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    color: #ffffff;
}

.customer-content .btn-primary:hover {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 100%);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

.customer-content .btn-secondary {
    background: transparent;
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, 0.4);
}

.customer-content .btn-secondary:hover {
    background: rgba(0, 191, 255, 0.1);
    border-color: #00BFFF;
}

.btn-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00BFFF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-link:hover {
    color: #33cfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00BFFF;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-download:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

/* ================================================================================
   EMPTY STATE
   ================================================================================ */
.empty-state-mini {
    text-align: center;
    padding: 32px 20px;
}

.empty-state-mini p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 16px 0;
}

/* ================================================================================
   LOADER
   ================================================================================ */
#contentLoader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 26, 64, 0.8);
    z-index: 10;
    border-radius: 16px;
}

.loader-spinner {
    text-align: center;
}

.loader-spinner .spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    border: 3px solid rgba(0, 191, 255, 0.2);
    border-top-color: #00BFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-spinner p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .customer-area-wrapper {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
    }

    .customer-sidebar {
        width: 100%;
        padding: 20px 0;
    }

    .customer-info-box {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
        margin: 0;
        font-size: 1.3rem;
    }

    .customer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px;
    }

    .customer-nav-item {
        flex: 1 1 auto;
        min-width: 120px;
        justify-content: center;
        padding: 12px;
    }

    .customer-nav-item .nav-icon {
        font-size: 1.1rem;
    }

    .customer-nav-item .nav-label {
        font-size: 0.9rem;
    }

    .customer-nav-item.active::before {
        display: none;
    }

    .customer-nav-item.logout {
        margin-top: 0;
        border-top: none;
        padding-top: 12px;
    }

    .customer-content {
        padding: 0 0 40px 0;
    }

    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .customer-area-wrapper {
        padding: 0 12px;
    }

    .customer-info-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .customer-nav {
        flex-direction: column;
    }

    .customer-nav-item {
        min-width: 100%;
        justify-content: flex-start;
    }

    .customer-page-header h1 {
        font-size: 1.4rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .dashboard-section {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 1.1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-mini-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .invoice-mini-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .invoice-mini-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .customer-content .btn-primary,
    .customer-content .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-section {
    animation: fadeInUp 0.4s ease-out both;
}

.dashboard-section:nth-child(1) { animation-delay: 0.1s; }
.dashboard-section:nth-child(2) { animation-delay: 0.2s; }
.dashboard-section:nth-child(3) { animation-delay: 0.3s; }

.stat-card {
    animation: fadeInUp 0.4s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }


/* ================================================================================
   PAGINA ORDINI - CSS
   ================================================================================ */

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
}

.empty-state .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-state h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.empty-state p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px 0;
}

/* ================================================================================
   TABELLA ORDINI
   ================================================================================ */
.orders-table-wrapper {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

/* Header tabella */
.orders-table thead {
    background: rgba(0, 191, 255, 0.08);
    border-bottom: 1px solid rgba(0, 191, 255, 0.15);
}

.orders-table thead th {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00BFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    text-align: left;
    white-space: nowrap;
}

.orders-table thead th:last-child {
    text-align: right;
}

/* Body tabella */
.orders-table tbody tr {
    border-bottom: 1px solid rgba(0, 191, 255, 0.08);
    transition: all 0.25s ease;
}

.orders-table tbody tr:last-child {
    border-bottom: none;
}

.orders-table tbody tr:hover {
    background: rgba(0, 191, 255, 0.06);
}

.orders-table tbody td {
    padding: 18px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    vertical-align: middle;
}

.orders-table tbody td:last-child {
    text-align: right;
}

.orders-table tbody td strong {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

/* Status badge */
.order-status-badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.order-status-badge.status-pending,
.order-status-badge.status-in_attesa {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.order-status-badge.status-processing,
.order-status-badge.status-in_lavorazione {
    background: rgba(0, 191, 255, 0.15);
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.order-status-badge.status-shipped,
.order-status-badge.status-spedito {
    background: rgba(106, 13, 173, 0.2);
    color: #a855f7;
    border: 1px solid rgba(106, 13, 173, 0.3);
}

.order-status-badge.status-delivered,
.order-status-badge.status-consegnato {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status-badge.status-cancelled,
.order-status-badge.status-annullato {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.order-status-badge.status-refunded,
.order-status-badge.status-rimborsato {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.order-status-badge.status-completed,
.order-status-badge.status-completato {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Bottone Vedi */
.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00BFFF;
    background: transparent;
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-view:hover {
    background: rgba(0, 191, 255, 0.15);
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    transform: translateY(-1px);
}

.btn-view:active {
    transform: translateY(0);
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .orders-table thead th,
    .orders-table tbody td {
        padding: 14px 16px;
    }

    .orders-table thead th {
        font-size: 0.8rem;
    }

    .orders-table tbody td {
        font-size: 0.9rem;
    }

    /* Nascondi colonna Cliente su tablet */
    .orders-table thead th:nth-child(2),
    .orders-table tbody td:nth-child(2) {
        display: none;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE (Card Layout)
   ================================================================================ */
@media (max-width: 576px) {
    .empty-state {
        padding: 40px 20px;
    }

    .empty-state .empty-icon {
        font-size: 3rem;
    }

    .empty-state h2 {
        font-size: 1.3rem;
    }

    /* Trasforma tabella in cards */
    .orders-table-wrapper {
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .orders-table,
    .orders-table thead,
    .orders-table tbody,
    .orders-table tr,
    .orders-table td {
        display: block;
    }

    .orders-table thead {
        display: none;
    }

    .orders-table tbody tr {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
        border: 1px solid rgba(0, 191, 255, 0.15);
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 16px;
    }

    .orders-table tbody tr:hover {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 26, 64, 1) 100%);
    }

    .orders-table tbody td {
        padding: 8px 0;
        text-align: left !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0, 191, 255, 0.06);
    }

    .orders-table tbody td:last-child {
        border-bottom: none;
        padding-top: 14px;
        margin-top: 6px;
    }

    .orders-table tbody td:nth-child(2) {
        display: none;
    }

    /* Aggiungi label per mobile */
    .orders-table tbody td::before {
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .orders-table tbody td:nth-child(1)::before {
        content: 'N. Ordine';
    }

    .orders-table tbody td:nth-child(3)::before {
        content: 'Importo';
    }

    .orders-table tbody td:nth-child(4)::before {
        content: 'Stato';
    }

    .orders-table tbody td:nth-child(5)::before {
        content: 'Data';
    }

    .orders-table tbody td:last-child::before {
        content: none;
    }

    .orders-table tbody td:last-child {
        justify-content: center;
    }

    .btn-view {
        width: 100%;
        padding: 12px;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.orders-table-wrapper {
    animation: fadeInUp 0.4s ease-out both;
}

.empty-state {
    animation: fadeInUp 0.5s ease-out both;
}

/* Animazione righe tabella */
.orders-table tbody tr {
    animation: fadeInUp 0.3s ease-out both;
}

.orders-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
.orders-table tbody tr:nth-child(2) { animation-delay: 0.1s; }
.orders-table tbody tr:nth-child(3) { animation-delay: 0.15s; }
.orders-table tbody tr:nth-child(4) { animation-delay: 0.2s; }
.orders-table tbody tr:nth-child(5) { animation-delay: 0.25s; }
.orders-table tbody tr:nth-child(6) { animation-delay: 0.3s; }
.orders-table tbody tr:nth-child(7) { animation-delay: 0.35s; }
.orders-table tbody tr:nth-child(8) { animation-delay: 0.4s; }
.orders-table tbody tr:nth-child(9) { animation-delay: 0.45s; }
.orders-table tbody tr:nth-child(10) { animation-delay: 0.5s; }


/* ================================================================================
   DETTAGLIO ORDINE - CSS
   ================================================================================ */

/* Header con bottone torna */
.customer-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-back:hover {
    color: #00BFFF;
    border-color: rgba(0, 191, 255, 0.4);
    background: rgba(0, 191, 255, 0.08);
}

/* Status inline nel titolo */
.order-status-inline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    vertical-align: middle;
}

.order-status-inline.status-nuovo { background: rgba(0, 191, 255, 0.2); color: #00BFFF; }
.order-status-inline.status-pagato { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.order-status-inline.status-spedito { background: rgba(106, 13, 173, 0.2); color: #a855f7; }
.order-status-inline.status-annullato { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
.order-status-inline.status-fatturato { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.order-status-inline.status-rimborsato { background: rgba(156, 163, 175, 0.2); color: #9ca3af; }
.order-status-inline.status-completato { background: rgba(34, 197, 94, 0.2); color: #22c55e; }

/* ================================================================================
   STATUS BANNER
   ================================================================================ */
.order-status-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid;
}

.order-status-banner .status-icon {
    font-size: 1.8rem;
}

.order-status-banner .status-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.order-status-banner.status-nuovo {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
    color: #00BFFF;
}

.order-status-banner.status-pagato,
.order-status-banner.status-completato {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.order-status-banner.status-spedito {
    background: rgba(106, 13, 173, 0.1);
    border-color: rgba(106, 13, 173, 0.3);
    color: #a855f7;
}

.order-status-banner.status-annullato {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.order-status-banner.status-fatturato {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.order-status-banner.status-rimborsato {
    background: rgba(156, 163, 175, 0.1);
    border-color: rgba(156, 163, 175, 0.3);
    color: #9ca3af;
}

/* ================================================================================
   INFO GRID (4 colonne)
   ================================================================================ */
.order-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.order-info-grid .info-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.order-info-grid .info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.order-info-grid .info-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

.order-info-grid .info-value strong {
    color: #00BFFF;
    font-size: 1.3rem;
}

/* ================================================================================
   SEZIONI ORDINE
   ================================================================================ */
.order-section {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.order-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00BFFF;
    margin: 0 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00BFFF;
    margin: 0 0 16px 0;
}

/* ================================================================================
   TABELLA PRODOTTI
   ================================================================================ */
.products-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.products-table thead {
    background: rgba(0, 191, 255, 0.08);
}

.products-table thead th {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00BFFF;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 14px 12px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 191, 255, 0.15);
}

.products-table tbody tr {
    border-bottom: 1px solid rgba(0, 191, 255, 0.06);
    transition: background 0.2s ease;
}

.products-table tbody tr:hover {
    background: rgba(0, 191, 255, 0.04);
}

.products-table tbody tr.shipping-row {
    background: rgba(106, 13, 173, 0.08);
    border-top: 1px solid rgba(106, 13, 173, 0.2);
}

.products-table tbody td {
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.85);
    vertical-align: middle;
}

.products-table tbody td strong {
    color: #ffffff;
    font-weight: 600;
}

.products-table tbody td small {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Footer tabella */
.products-table tfoot {
    border-top: 2px solid rgba(0, 191, 255, 0.2);
}

.products-table tfoot tr {
    border-bottom: 1px solid rgba(0, 191, 255, 0.06);
}

.products-table tfoot td {
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.products-table tfoot tr.total-row {
    background: rgba(0, 191, 255, 0.08);
}

.products-table tfoot tr.total-row td {
    padding: 16px 12px;
    font-size: 1rem;
}

.products-table tfoot tr.total-row td strong {
    color: #00BFFF;
    font-size: 1.15rem;
}

/* Bottoni download nella tabella */
.btn-download-mini {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00BFFF;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-download-mini:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: #00BFFF;
}

.btn-link-mini {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(106, 13, 173, 0.1);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-link-mini:hover {
    background: rgba(106, 13, 173, 0.2);
    border-color: #a855f7;
}

/* ================================================================================
   SHIPPING INFO GRID
   ================================================================================ */
.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.shipping-info-grid .info-item {
    padding: 16px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.08);
}

.shipping-info-grid .info-item.full-width {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
}

.shipping-info-grid .info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.shipping-info-grid .info-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.shipping-info-grid .info-value strong {
    color: #00BFFF;
}

/* Bottone tracking */
.btn-tracking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tracking:hover {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 100%);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

/* ================================================================================
   INDIRIZZI GRID
   ================================================================================ */
.order-addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.address-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 14px;
    padding: 24px;
}

.address-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00BFFF;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.address-box p:last-child {
    margin-bottom: 0;
}

.address-box p strong {
    color: #ffffff;
}

/* ================================================================================
   NOTE ORDINE
   ================================================================================ */
.order-notes {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding: 16px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid rgba(0, 191, 255, 0.4);
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .order-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-table {
        font-size: 0.85rem;
    }

    .products-table thead th,
    .products-table tbody td {
        padding: 12px 10px;
    }

    /* Nascondi colonne meno importanti */
    .products-table thead th:nth-child(3),
    .products-table tbody td:nth-child(3),
    .products-table thead th:nth-child(5),
    .products-table tbody td:nth-child(5) {
        display: none;
    }

    .order-addresses-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .customer-page-header {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .btn-back {
        align-self: flex-start;
    }

    .order-status-banner {
        padding: 14px 18px;
    }

    .order-status-banner .status-icon {
        font-size: 1.5rem;
    }

    .order-status-banner .status-text {
        font-size: 1rem;
    }

    .order-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .order-info-grid .info-box {
        padding: 16px 12px;
    }

    .order-info-grid .info-value {
        font-size: 1rem;
    }

    .order-info-grid .info-value strong {
        font-size: 1.15rem;
    }

    .order-section {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .order-section h2 {
        font-size: 1.1rem;
    }

    /* Tabella prodotti mobile - card layout */
    .products-table,
    .products-table thead,
    .products-table tbody,
    .products-table tfoot,
    .products-table tr,
    .products-table td,
    .products-table th {
        display: block;
    }

    .products-table thead {
        display: none;
    }

    .products-table tbody tr {
        background: rgba(0, 191, 255, 0.03);
        border: 1px solid rgba(0, 191, 255, 0.1);
        border-radius: 10px;
        padding: 14px;
        margin-bottom: 12px;
    }

    .products-table tbody tr.shipping-row {
        background: rgba(106, 13, 173, 0.1);
        border-color: rgba(106, 13, 173, 0.2);
    }

    .products-table tbody td {
        padding: 6px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .products-table tbody td:first-child {
        display: block;
        border-bottom: 1px solid rgba(0, 191, 255, 0.1);
        padding-bottom: 10px;
        margin-bottom: 8px;
    }

    .products-table tbody td:last-child {
        border-bottom: none;
        padding-top: 10px;
    }

    /* Labels mobile */
    .products-table tbody td:nth-child(2)::before { content: 'Quantità'; }
    .products-table tbody td:nth-child(3)::before { content: 'Netto'; }
    .products-table tbody td:nth-child(4)::before { content: 'Lordo'; }
    .products-table tbody td:nth-child(5)::before { content: 'Tot. Netto'; }
    .products-table tbody td:nth-child(6)::before { content: 'Tot. Lordo'; }

    .products-table tbody td::before {
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
    }

    /* Nascondi colonne Netto su mobile */
    .products-table tbody td:nth-child(3),
    .products-table tbody td:nth-child(5) {
        display: none;
    }

    /* Footer tabella mobile */
    .products-table tfoot {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 2px solid rgba(0, 191, 255, 0.15);
    }

    .products-table tfoot tr {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .products-table tfoot tr.total-row {
        background: transparent;
        border-radius: 8px;
        padding: 14px 0;
        margin-top: 8px;
        border-top: 1px solid rgba(0, 191, 255, 0.2);
        border-bottom: none;
    }

    .products-table tfoot td {
        padding: 0;
    }

    .products-table tfoot td:last-child:not(:empty) {
        text-align: right;
    }

    /* Nascondi celle vuote nel footer */
    .products-table tfoot td:empty {
        display: none;
    }

    .shipping-info-grid {
        grid-template-columns: 1fr;
    }

    .order-addresses-grid {
        gap: 16px;
    }

    .address-box {
        padding: 20px 16px;
    }

    .address-box h3 {
        font-size: 1rem;
    }

    .address-box p {
        font-size: 0.9rem;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-status-banner {
    animation: fadeInUp 0.3s ease-out both;
}

.order-info-grid {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.order-section {
    animation: fadeInUp 0.4s ease-out both;
}

.order-section:nth-of-type(1) { animation-delay: 0.15s; }
.order-section:nth-of-type(2) { animation-delay: 0.2s; }

.order-addresses-grid {
    animation: fadeInUp 0.4s ease-out 0.25s both;
}

.address-box {
    animation: fadeInUp 0.4s ease-out both;
}

.address-box:nth-child(1) { animation-delay: 0.3s; }
.address-box:nth-child(2) { animation-delay: 0.35s; }

La pagina fatture riutilizza molte classi già create (`.orders-table`, `.empty-state`, `.btn-view`). Aggiungo solo gli stili specifici per le fatture:

```css
/* ================================================================================
   PAGINA FATTURE - CSS
   ================================================================================ */

/* Wrapper tabella fatture (eredita da orders-table-wrapper) */
.invoices-table-wrapper {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

/* Stile specifico bottone download PDF */
.invoices-table-wrapper .btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.invoices-table-wrapper .btn-view:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    transform: translateY(-1px);
}

.invoices-table-wrapper .btn-view:active {
    transform: translateY(0);
}

/* Icona fattura nell'empty state */
.empty-state .empty-icon {
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.3));
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .invoices-table-wrapper .orders-table thead th,
    .invoices-table-wrapper .orders-table tbody td {
        padding: 14px 14px;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE (Card Layout)
   ================================================================================ */
@media (max-width: 576px) {
    /* Trasforma tabella fatture in cards */
    .invoices-table-wrapper {
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .invoices-table-wrapper .orders-table,
    .invoices-table-wrapper .orders-table thead,
    .invoices-table-wrapper .orders-table tbody,
    .invoices-table-wrapper .orders-table tr,
    .invoices-table-wrapper .orders-table td {
        display: block;
    }

    .invoices-table-wrapper .orders-table thead {
        display: none;
    }

    .invoices-table-wrapper .orders-table tbody tr {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
        border: 1px solid rgba(0, 191, 255, 0.15);
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 16px;
    }

    .invoices-table-wrapper .orders-table tbody tr:hover {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 26, 64, 1) 100%);
    }

    .invoices-table-wrapper .orders-table tbody td {
        padding: 8px 0;
        text-align: left !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0, 191, 255, 0.06);
    }

    .invoices-table-wrapper .orders-table tbody td:last-child {
        border-bottom: none;
        padding-top: 14px;
        margin-top: 6px;
        justify-content: center;
    }

    /* Labels mobile fatture */
    .invoices-table-wrapper .orders-table tbody td::before {
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .invoices-table-wrapper .orders-table tbody td:nth-child(1)::before {
        content: 'N. Fattura';
    }

    .invoices-table-wrapper .orders-table tbody td:nth-child(2)::before {
        content: 'N. Ordine';
    }

    .invoices-table-wrapper .orders-table tbody td:nth-child(3)::before {
        content: 'Data';
    }

    .invoices-table-wrapper .orders-table tbody td:nth-child(4)::before {
        content: 'Importo';
    }

    .invoices-table-wrapper .orders-table tbody td:last-child::before {
        content: none;
    }

    /* Bottone download full width su mobile */
    .invoices-table-wrapper .btn-view {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
.invoices-table-wrapper {
    animation: fadeInUp 0.4s ease-out both;
}

/* Animazione righe tabella fatture */
.invoices-table-wrapper .orders-table tbody tr {
    animation: fadeInUp 0.3s ease-out both;
}

.invoices-table-wrapper .orders-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
.invoices-table-wrapper .orders-table tbody tr:nth-child(2) { animation-delay: 0.1s; }
.invoices-table-wrapper .orders-table tbody tr:nth-child(3) { animation-delay: 0.15s; }
.invoices-table-wrapper .orders-table tbody tr:nth-child(4) { animation-delay: 0.2s; }
.invoices-table-wrapper .orders-table tbody tr:nth-child(5) { animation-delay: 0.25s; }
.invoices-table-wrapper .orders-table tbody tr:nth-child(6) { animation-delay: 0.3s; }
.invoices-table-wrapper .orders-table tbody tr:nth-child(7) { animation-delay: 0.35s; }
.invoices-table-wrapper .orders-table tbody tr:nth-child(8) { animation-delay: 0.4s; }

Ecco il CSS per la pagina Profilo:

```css
/* ================================================================================
   PAGINA PROFILO - CSS
   ================================================================================ */

/* Alert messaggi */
.profile-form ~ .alert,
.customer-page-header ~ .alert,
.customer-content .alert-warning,
.customer-content .alert-success,
.customer-content .alert-error {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-content .alert-warning {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.customer-content .alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.customer-content .alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ================================================================================
   FORM PROFILO
   ================================================================================ */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sezioni form */
.form-section {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
}

.form-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #00BFFF;
    margin: 0 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Grid form 2 colonne */
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Form group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Labels */
.form-group label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

/* Input e Select */
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.25s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300BFFF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: #0f172a;
    color: #ffffff;
    padding: 10px;
}

/* Focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00BFFF;
    background: rgba(0, 191, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}

/* Hover states */
.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: rgba(0, 191, 255, 0.4);
}

/* Small helper text */
.form-group small {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* Input required indicator */
.form-group input:required,
.form-group select:required {
    border-left: 3px solid rgba(0, 191, 255, 0.5);
}

.form-group input:required:valid,
.form-group select:required:valid {
    border-left-color: #22c55e;
}

/* Input invalid state */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid {
    border-color: rgba(239, 68, 68, 0.5);
}

.form-group input:invalid:not(:placeholder-shown):focus,
.form-group select:invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ================================================================================
   AZIONI FORM
   ================================================================================ */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 8px;
}

.form-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-actions .btn-primary:hover:not(:disabled)::before {
    left: 100%;
}

.form-actions .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 100%);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

.form-actions .btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* Stato disabled/loading */
.form-actions .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-actions .btn-primary .btn-loading {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .form-section {
        padding: 20px;
    }

    .form-grid-2 {
        gap: 16px;
    }

    .form-group input,
    .form-group select {
        padding: 11px 14px;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .profile-form {
        gap: 20px;
    }

    .form-section {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .form-section h2 {
        font-size: 1.05rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px; /* Previene zoom su iOS */
    }

    .form-group small {
        font-size: 0.75rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn-primary {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
    }

    /* Alert mobile */
    .customer-content .alert-warning,
    .customer-content .alert-success,
    .customer-content .alert-error {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    animation: fadeInUp 0.4s ease-out both;
}

.form-section:nth-child(1) { animation-delay: 0.05s; }
.form-section:nth-child(2) { animation-delay: 0.1s; }
.form-section:nth-child(3) { animation-delay: 0.15s; }
.form-section:nth-child(4) { animation-delay: 0.2s; }

.form-actions {
    animation: fadeInUp 0.4s ease-out 0.25s both;
}

/* Alert animazione */
.customer-content .alert-warning,
.customer-content .alert-success,
.customer-content .alert-error {
    animation: fadeInUp 0.3s ease-out both;
}

Ecco il CSS per la pagina Preferiti/Wishlist:

```css
/* ================================================================================
   PAGINA WISHLIST/PREFERITI - CSS
   ================================================================================ */

/* Sezione wishlist */
.wishlist-section {
    padding: 0;
}

/* Header sezione */
.wishlist-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.wishlist-section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #00BFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.wishlist-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 191, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

/* ================================================================================
   EMPTY STATE
   ================================================================================ */
.wishlist-empty {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
}

.wishlist-empty-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.3));
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.wishlist-empty h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.wishlist-empty p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 28px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.wishlist-empty .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wishlist-empty .btn-primary:hover {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 100%);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

/* ================================================================================
   GRID PRODOTTI
   ================================================================================ */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ================================================================================
   PRODUCT CARD WISHLIST
   ================================================================================ */
.wishlist-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.wishlist-card:hover {
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 
        0 15px 40px -10px rgba(0, 191, 255, 0.25),
        0 0 20px rgba(0, 191, 255, 0.1);
}

/* Bottone rimuovi */
.wishlist-remove-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wishlist-remove-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    transform: scale(1.1);
}

.wishlist-remove-btn:active {
    transform: scale(0.95);
}

/* Link prodotto */
.wishlist-card .pc-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Immagine prodotto */
.wishlist-card .pc-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.wishlist-card .pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wishlist-card:hover .pc-image img {
    transform: scale(1.08);
}

/* Ribbon sconto */
.wishlist-card .pc-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 5;
}

.wishlist-card .pc-ribbon.offer {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* Info prodotto */
.wishlist-card .pc-info {
    padding: 16px 16px 0;
}

.wishlist-card .pc-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.wishlist-card:hover .pc-title {
    color: #00BFFF;
}

/* Azioni e prezzo */
.wishlist-card .pc-actions {
    padding: 16px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(0, 191, 255, 0.08);
}

/* Prezzo */
.wishlist-card .pc-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wishlist-card .pc-price .current {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.wishlist-card .pc-price .old {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

/* Bottone visualizza */
.wishlist-card .btn-view-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00BFFF;
    background: transparent;
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.wishlist-card .btn-view-product:hover {
    background: rgba(0, 191, 255, 0.15);
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

/* ================================================================================
   ANIMAZIONE RIMOZIONE
   ================================================================================ */
.wishlist-card.removing {
    animation: cardRemove 0.4s ease-out forwards;
}

@keyframes cardRemove {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
        height: 0;
        padding: 0;
        margin: 0;
        border: none;
    }
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .wishlist-card .pc-price .current {
        font-size: 1.1rem;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .wishlist-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .wishlist-section-header h2 {
        font-size: 1.3rem;
    }

    .wishlist-count {
        font-size: 0.85rem;
    }

    .wishlist-empty {
        padding: 40px 20px;
    }

    .wishlist-empty-icon {
        font-size: 3.5rem;
    }

    .wishlist-empty h2 {
        font-size: 1.3rem;
    }

    .wishlist-empty p {
        font-size: 0.95rem;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wishlist-card {
        border-radius: 12px;
    }

    .wishlist-remove-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: 8px;
        right: 8px;
    }

    .wishlist-card .pc-ribbon {
        font-size: 0.7rem;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }

    .wishlist-card .pc-info {
        padding: 12px 12px 0;
    }

    .wishlist-card .pc-title {
        font-size: 0.95rem;
    }

    .wishlist-card .pc-actions {
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .wishlist-card .pc-price {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .wishlist-card .pc-price .current {
        font-size: 1.05rem;
    }

    .wishlist-card .pc-price .old {
        font-size: 0.8rem;
    }

    .wishlist-card .btn-view-product {
        width: 100%;
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wishlist-card .pc-actions {
        flex-direction: row;
        justify-content: space-between;
    }

    .wishlist-card .btn-view-product {
        width: auto;
    }
}

/* ================================================================================
   ANIMAZIONI ENTRATA
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wishlist-section-header {
    animation: fadeInUp 0.3s ease-out both;
}

.wishlist-empty {
    animation: fadeInUp 0.5s ease-out both;
}

.wishlist-card {
    animation: fadeInUp 0.4s ease-out both;
}

.wishlist-card:nth-child(1) { animation-delay: 0.05s; }
.wishlist-card:nth-child(2) { animation-delay: 0.1s; }
.wishlist-card:nth-child(3) { animation-delay: 0.15s; }
.wishlist-card:nth-child(4) { animation-delay: 0.2s; }
.wishlist-card:nth-child(5) { animation-delay: 0.25s; }
.wishlist-card:nth-child(6) { animation-delay: 0.3s; }
.wishlist-card:nth-child(7) { animation-delay: 0.35s; }
.wishlist-card:nth-child(8) { animation-delay: 0.4s; }

Ecco il CSS per la pagina Ticket/Assistenza:

```css
/* ================================================================================
   PAGINA TICKET/ASSISTENZA - CSS
   ================================================================================ */

/* Header bar con titolo e bottone nuovo ticket */
.ticket-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.ticket-header-bar h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #00BFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

/* Bottone nuovo ticket */
.btn-new-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-new-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-new-ticket:hover::before {
    left: 100%;
}

.btn-new-ticket:hover {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 100%);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-new-ticket:active {
    transform: translateY(0);
}

/* ================================================================================
   EMPTY STATE TICKET
   ================================================================================ */
.ticket-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 16px;
}

.ticket-empty-state .icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ticket-empty-state h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.ticket-empty-state p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ================================================================================
   LISTA TICKET
   ================================================================================ */
.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Singolo ticket item */
.ticket-item {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
}

.ticket-item:hover {
    border-color: rgba(0, 191, 255, 0.35);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 26, 64, 1) 100%);
    transform: translateX(4px);
    box-shadow: 0 8px 30px -10px rgba(0, 191, 255, 0.2);
}

/* Info ticket */
.ticket-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Numero ticket */
.ticket-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0, 191, 255, 0.7);
    letter-spacing: 1px;
}

/* Oggetto ticket */
.ticket-subject {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.ticket-subject a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ticket-subject a:hover {
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

/* Meta info (badge, categoria, data, ordine) */
.ticket-item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.ticket-item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ================================================================================
   BADGE STATUS TICKET
   ================================================================================ */
.ticket-badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Aperto - Verde */
.ticket-badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* In lavorazione - Cyan */
.ticket-badge-info {
    background: rgba(0, 191, 255, 0.15);
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

/* In attesa - Giallo */
.ticket-badge-warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Chiuso - Grigio */
.ticket-badge-secondary {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

/* ================================================================================
   AZIONE TICKET
   ================================================================================ */
.ticket-action {
    flex-shrink: 0;
}

.ticket-action a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00BFFF;
    background: transparent;
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.ticket-action a:hover {
    background: rgba(0, 191, 255, 0.15);
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    transform: translateX(2px);
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .ticket-item {
        padding: 18px 20px;
    }

    .ticket-subject {
        font-size: 1.1rem;
    }

    .ticket-item-meta {
        font-size: 0.8rem;
        gap: 10px;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .ticket-header-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .ticket-header-bar h2 {
        font-size: 1.3rem;
    }

    .btn-new-ticket {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .ticket-empty-state {
        padding: 40px 20px;
    }

    .ticket-empty-state .icon {
        font-size: 3.5rem;
    }

    .ticket-empty-state h3 {
        font-size: 1.3rem;
    }

    .ticket-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px 16px;
        border-radius: 12px;
    }

    .ticket-item:hover {
        transform: translateY(-2px);
    }

    .ticket-info {
        gap: 10px;
    }

    .ticket-number {
        font-size: 0.75rem;
    }

    .ticket-subject {
        font-size: 1.05rem;
    }

    .ticket-item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ticket-action {
        width: 100%;
    }

    .ticket-action a {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}

/* ================================================================================
   ANIMAZIONI ENTRATA
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticket-header-bar {
    animation: fadeInUp 0.3s ease-out both;
}

.ticket-empty-state {
    animation: fadeInUp 0.5s ease-out both;
}

.ticket-item {
    animation: fadeInUp 0.4s ease-out both;
}

.ticket-item:nth-child(1) { animation-delay: 0.05s; }
.ticket-item:nth-child(2) { animation-delay: 0.1s; }
.ticket-item:nth-child(3) { animation-delay: 0.15s; }
.ticket-item:nth-child(4) { animation-delay: 0.2s; }
.ticket-item:nth-child(5) { animation-delay: 0.25s; }
.ticket-item:nth-child(6) { animation-delay: 0.3s; }
.ticket-item:nth-child(7) { animation-delay: 0.35s; }
.ticket-item:nth-child(8) { animation-delay: 0.4s; }
.ticket-item:nth-child(9) { animation-delay: 0.45s; }
.ticket-item:nth-child(10) { animation-delay: 0.5s; }

Ecco il CSS per la pagina Dettaglio Ticket:

```css
/* ================================================================================
   DETTAGLIO SINGOLO TICKET - CSS
   ================================================================================ */

/* Container principale */
.ticket-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Link torna indietro */
.ticket-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.25s ease;
}

.ticket-back-link:hover {
    color: #00BFFF;
    transform: translateX(-4px);
}

/* ================================================================================
   ALERT MESSAGGI
   ================================================================================ */
.ticket-alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.ticket-alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* ================================================================================
   HEADER TICKET
   ================================================================================ */
.ticket-header {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.ticket-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF, #6A0DAD, #00BFFF);
}

.ticket-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

/* Meta info ticket */
.ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.ticket-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticket-meta strong {
    color: #ffffff;
    font-weight: 600;
}

/* Badge riutilizzato dalla lista */
.ticket-detail .ticket-badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.ticket-detail .ticket-badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.ticket-detail .ticket-badge-info {
    background: rgba(0, 191, 255, 0.15);
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.ticket-detail .ticket-badge-warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.ticket-detail .ticket-badge-secondary {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

/* ================================================================================
   MESSAGGI CONVERSAZIONE
   ================================================================================ */
.ticket-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(11, 26, 64, 0.7) 100%);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 16px;
    max-height: 500px;
    overflow-y: auto;
}

/* Scrollbar messaggi */
.ticket-messages::-webkit-scrollbar {
    width: 6px;
}

.ticket-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.ticket-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 191, 255, 0.4);
    border-radius: 3px;
}

.ticket-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 191, 255, 0.6);
}

/* Singolo messaggio */
.ticket-message {
    padding: 16px 20px;
    border-radius: 12px;
    max-width: 85%;
    position: relative;
}

/* Messaggio cliente (Tu) - allineato a destra */
.ticket-message-customer {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 191, 255, 0.25);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

/* Messaggio admin (Supporto) - allineato a sinistra */
.ticket-message-admin {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(106, 13, 173, 0.25);
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

/* Header messaggio */
.ticket-message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-message-sender {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.ticket-message-customer .ticket-message-sender {
    color: #00BFFF;
}

.ticket-message-admin .ticket-message-sender {
    color: #a855f7;
}

.ticket-message-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Contenuto messaggio */
.ticket-message-content {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    word-break: break-word;
}

/* ================================================================================
   FORM RISPOSTA
   ================================================================================ */
.ticket-reply-form {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.ticket-reply-form h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #00BFFF;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-reply-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticket-reply-form textarea {
    width: 100%;
    min-height: 140px;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    resize: vertical;
    outline: none;
    transition: all 0.25s ease;
}

.ticket-reply-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ticket-reply-form textarea:focus {
    border-color: #00BFFF;
    background: rgba(0, 191, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}

.ticket-reply-form button {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-reply-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ticket-reply-form button:hover::before {
    left: 100%;
}

.ticket-reply-form button:hover {
    background: linear-gradient(135deg, #33cfff 0%, #00BFFF 100%);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

.ticket-reply-form button:active {
    transform: translateY(0);
}

/* ================================================================================
   TICKET CHIUSO NOTICE
   ================================================================================ */
.ticket-closed-notice {
    background: linear-gradient(145deg, rgba(156, 163, 175, 0.1) 0%, rgba(107, 114, 128, 0.08) 100%);
    border: 1px solid rgba(156, 163, 175, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.ticket-closed-notice p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.ticket-closed-notice p:first-child {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #9ca3af;
}

/* Form dentro notice chiuso */
.ticket-closed-notice .ticket-reply-form {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 20px;
}

.ticket-closed-notice .ticket-reply-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(156, 163, 175, 0.3);
}

.ticket-closed-notice .ticket-reply-form textarea:focus {
    border-color: #00BFFF;
}

.ticket-closed-notice .ticket-reply-form button {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.ticket-closed-notice .ticket-reply-form button:hover {
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .ticket-detail {
        padding: 0 16px 50px;
    }

    .ticket-header {
        padding: 24px;
    }

    .ticket-header h1 {
        font-size: 1.5rem;
    }

    .ticket-meta {
        gap: 12px 20px;
        font-size: 0.85rem;
    }

    .ticket-messages {
        padding: 20px;
        max-height: 450px;
    }

    .ticket-message {
        max-width: 90%;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .ticket-detail {
        padding: 0 12px 40px;
    }

    .ticket-back-link {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .ticket-header {
        padding: 20px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .ticket-header h1 {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .ticket-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 0.85rem;
    }

    .ticket-messages {
        padding: 16px;
        border-radius: 12px;
        max-height: 400px;
        gap: 14px;
    }

    .ticket-message {
        max-width: 95%;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .ticket-message-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .ticket-message-sender {
        font-size: 0.85rem;
    }

    .ticket-message-date {
        font-size: 0.75rem;
    }

    .ticket-message-content {
        font-size: 0.9rem;
    }

    .ticket-reply-form {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .ticket-reply-form h3 {
        font-size: 1.05rem;
    }

    .ticket-reply-form textarea {
        min-height: 120px;
        padding: 14px;
        font-size: 16px; /* Previene zoom iOS */
    }

    .ticket-reply-form button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .ticket-closed-notice {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .ticket-closed-notice p:first-child {
        font-size: 1rem;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ticket-header {
    animation: fadeInUp 0.4s ease-out both;
}

.ticket-messages {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.ticket-message-customer {
    animation: slideInRight 0.3s ease-out both;
}

.ticket-message-admin {
    animation: slideInLeft 0.3s ease-out both;
}

.ticket-reply-form {
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

.ticket-closed-notice {
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

.ticket-alert {
    animation: fadeInUp 0.3s ease-out both;
}

Ecco il CSS per la pagina Nuovo Ticket:

```css
/* ================================================================================
   NUOVO TICKET FORM - CSS
   ================================================================================ */

/* Container principale */
.ticket-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Box form */
.ticket-form {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 26, 64, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.ticket-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF, #6A0DAD, #00BFFF);
}

/* Titolo form */
.ticket-form h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 20px 0;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

/* Info box */
.ticket-info-box {
    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.ticket-info-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* ================================================================================
   FORM ELEMENTS
   ================================================================================ */
.ticket-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form group */
.ticket-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Row 2 colonne */
.ticket-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Labels */
.ticket-form-group label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

/* Input e Select */
.ticket-form-group input,
.ticket-form-group select {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.25s ease;
    outline: none;
}

.ticket-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ticket-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300BFFF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.ticket-form-group select option {
    background: #0f172a;
    color: #ffffff;
    padding: 10px;
}

/* Focus states */
.ticket-form-group input:focus,
.ticket-form-group select:focus {
    border-color: #00BFFF;
    background: rgba(0, 191, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}

/* Hover states */
.ticket-form-group input:hover:not(:focus),
.ticket-form-group select:hover:not(:focus) {
    border-color: rgba(0, 191, 255, 0.4);
}

/* Required indicator */
.ticket-form-group input:required,
.ticket-form-group textarea:required {
    border-left: 3px solid rgba(0, 191, 255, 0.5);
}

.ticket-form-group input:required:valid,
.ticket-form-group textarea:required:valid {
    border-left-color: #22c55e;
}

/* Small helper text */
.ticket-form-group small {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* Textarea */
.ticket-form-group textarea {
    width: 100%;
    min-height: 180px;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    resize: vertical;
    outline: none;
    transition: all 0.25s ease;
}

.ticket-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ticket-form-group textarea:focus {
    border-color: #00BFFF;
    background: rgba(0, 191, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}

.ticket-form-group textarea:hover:not(:focus) {
    border-color: rgba(0, 191, 255, 0.4);
}

/* ================================================================================
   SUBMIT BUTTON (override inline style)
   ================================================================================ */
.ticket-form .btn-new-ticket {
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 1.05rem;
}

.ticket-form .btn-new-ticket:hover {
    transform: translateY(-3px);
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .ticket-form-container {
        padding: 0 16px 50px;
    }

    .ticket-form {
        padding: 28px 24px;
    }

    .ticket-form-row {
        gap: 16px;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .ticket-form-container {
        padding: 0 12px 40px;
    }

    .ticket-form {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .ticket-form h1 {
        font-size: 1.3rem;
    }

    .ticket-info-box {
        padding: 14px 16px;
        margin-bottom: 24px;
    }

    .ticket-info-box p {
        font-size: 0.9rem;
    }

    .ticket-form form {
        gap: 18px;
    }

    .ticket-form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ticket-form-group label {
        font-size: 0.9rem;
    }

    .ticket-form-group input,
    .ticket-form-group select {
        padding: 12px 14px;
        font-size: 16px; /* Previene zoom iOS */
    }

    .ticket-form-group textarea {
        min-height: 150px;
        padding: 14px;
        font-size: 16px; /* Previene zoom iOS */
    }

    .ticket-form-group small {
        font-size: 0.75rem;
    }

    .ticket-form .btn-new-ticket {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticket-form-container .ticket-back-link {
    animation: fadeInUp 0.3s ease-out both;
}

.ticket-form {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.ticket-info-box {
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

.ticket-form-group {
    animation: fadeInUp 0.3s ease-out both;
}

.ticket-form-group:nth-child(1) { animation-delay: 0.15s; }
.ticket-form-group:nth-child(2) { animation-delay: 0.2s; }
.ticket-form-group:nth-child(3) { animation-delay: 0.25s; }
.ticket-form-group:nth-child(4) { animation-delay: 0.3s; }

.ticket-form-row {
    animation: fadeInUp 0.3s ease-out 0.2s both;
}

Ecco il CSS per la Sidebar Filtri:

```css
/* ================================================================================
   SIDEBAR FILTRI - CSS
   ================================================================================ */

/* Form wrapper */
.sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
}

/* ================================================================================
   BLOCCO SINGOLO FILTRO
   ================================================================================ */
.sb-block {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 26, 64, 0.95) 100%);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.3s ease;
}

.sb-block:hover {
    border-color: rgba(0, 191, 255, 0.3);
}

/* Titolo blocco */
.sb-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #00BFFF;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================================================================
   PREZZO - INPUT E SLIDER
   ================================================================================ */
.sb-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.sb-price-inputs input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
    outline: none;
    transition: all 0.25s ease;
    -moz-appearance: textfield;
}

.sb-price-inputs input::-webkit-outer-spin-button,
.sb-price-inputs input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sb-price-inputs input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sb-price-inputs input:focus {
    border-color: #00BFFF;
    background: rgba(0, 191, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.15);
}

/* Range slider */
.sb-price-range {
    width: 100%;
    height: 6px;
    margin: 8px 0;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0, 191, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.sb-price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-price-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

.sb-price-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.sb-price-range::-moz-range-track {
    background: rgba(0, 191, 255, 0.2);
    border-radius: 3px;
    height: 6px;
}

/* Label prezzo */
.sb-price-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(0, 191, 255, 0.08);
    border-radius: 6px;
}

/* ================================================================================
   CHECKBOX CUSTOM
   ================================================================================ */
.sb-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sb-checkbox:hover {
    background: rgba(0, 191, 255, 0.08);
}

.sb-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.sb-checkbox input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border-color: #00BFFF;
}

.sb-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.sb-checkbox input[type="checkbox"]:hover {
    border-color: #00BFFF;
}

.sb-checkbox-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.sb-checkbox:hover .sb-checkbox-label {
    color: #ffffff;
}

/* ================================================================================
   RATING STELLE
   ================================================================================ */
.sb-rating {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-rating-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sb-rating-option:hover {
    background: rgba(0, 191, 255, 0.08);
}

.sb-rating-option input[type="radio"] {
    display: none;
}

.sb-rating-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-rating-label .star {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease;
}

.sb-rating-label .star.filled {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.sb-rating-option:hover .star.filled {
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.7);
}

.sb-rating-option input[type="radio"]:checked + .sb-rating-label {
    color: #ffffff;
}

.sb-rating-option input[type="radio"]:checked + .sb-rating-label .star.filled {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
}

.rating-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 6px;
}

.sb-rating-option input[type="radio"]:checked + .sb-rating-label .rating-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Clear rating */
.sb-clear-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(239, 68, 68, 0.8);
    text-decoration: none;
    padding: 8px 12px;
    margin-top: 8px;
    transition: color 0.2s ease;
}

.sb-clear-rating:hover {
    color: #ef4444;
}

/* ================================================================================
   TAG CLOUD
   ================================================================================ */
.sb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.sb-tags .tag:hover {
    color: #ffffff;
    background: rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateY(-2px);
}

.sb-tags .tag.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.3) 0%, rgba(106, 13, 173, 0.2) 100%);
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

/* Tag colors per varietà */
.sb-tags .tag-nuovo { border-color: rgba(34, 197, 94, 0.4); }
.sb-tags .tag-nuovo:hover, .sb-tags .tag-nuovo.active { border-color: #22c55e; }

.sb-tags .tag-offerta { border-color: rgba(239, 68, 68, 0.4); }
.sb-tags .tag-offerta:hover, .sb-tags .tag-offerta.active { border-color: #ef4444; }

.sb-tags .tag-bestseller { border-color: rgba(251, 191, 36, 0.4); }
.sb-tags .tag-bestseller:hover, .sb-tags .tag-bestseller.active { border-color: #fbbf24; }

.sb-tags .tag-limitato { border-color: rgba(168, 85, 247, 0.4); }
.sb-tags .tag-limitato:hover, .sb-tags .tag-limitato.active { border-color: #a855f7; }

/* ================================================================================
   RESET FILTRI
   ================================================================================ */
.sb-reset {
    background: transparent;
    border: none;
    padding: 0;
}

.sb-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sb-reset-btn:hover {
    color: #ffffff;
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .sidebar-filters {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sb-block {
        padding: 18px;
    }

    .sb-reset {
        grid-column: 1 / -1;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE
   ================================================================================ */
@media (max-width: 576px) {
    .sidebar-filters {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sb-block {
        padding: 16px;
        border-radius: 12px;
    }

    .sb-title {
        font-size: 0.95rem;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .sb-price-inputs {
        gap: 10px;
    }

    .sb-price-inputs input {
        padding: 10px;
        font-size: 16px; /* Previene zoom iOS */
    }

    .sb-checkbox {
        padding: 10px;
    }

    .sb-checkbox-label {
        font-size: 0.88rem;
    }

    .sb-rating-option {
        padding: 8px 10px;
    }

    .sb-rating-label .star {
        font-size: 1rem;
    }

    .rating-text {
        font-size: 0.8rem;
    }

    .sb-tags .tag {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .sb-reset-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sb-block {
    animation: fadeInUp 0.3s ease-out both;
}

.sb-block:nth-child(1) { animation-delay: 0.05s; }
.sb-block:nth-child(2) { animation-delay: 0.1s; }
.sb-block:nth-child(3) { animation-delay: 0.15s; }
.sb-block:nth-child(4) { animation-delay: 0.2s; }
.sb-block:nth-child(5) { animation-delay: 0.25s; }
.sb-block:nth-child(6) { animation-delay: 0.3s; }
.sb-block:nth-child(7) { animation-delay: 0.35s; }

Ecco il CSS per la pagina Products/Shop:

```css
/* ================================================================================
   PAGINA SHOP/PRODUCTS - CSS
   ================================================================================ */

/* Container principale */
.shop-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ================================================================================
   TOPBAR - TITOLO E CONTROLLI
   ================================================================================ */
.shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    flex-wrap: wrap;
}

.shop-topbar .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #00BFFF;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
    position: relative;
}

.shop-topbar .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, #6A0DAD);
    border-radius: 2px;
}

/* Controlli */
.shop-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================================================================
   VIEW TOGGLE - GRID/LIST
   ================================================================================ */
.view-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
}

.view-toggle button {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.view-toggle button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 191, 255, 0.1);
}

.view-toggle button.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.3) 0%, rgba(106, 13, 173, 0.2) 100%);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
}

/* ================================================================================
   SORT SELECT
   ================================================================================ */
.shop-controls form {
    margin: 0;
}

.shop-controls select {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    padding: 12px 44px 12px 16px;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300BFFF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: all 0.25s ease;
}

.shop-controls select:hover {
    border-color: rgba(0, 191, 255, 0.4);
}

.shop-controls select:focus {
    border-color: #00BFFF;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}

.shop-controls select option {
    background: #0f172a;
    color: #ffffff;
}

/* ================================================================================
   LAYOUT PRINCIPALE
   ================================================================================ */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* ================================================================================
   SIDEBAR
   ================================================================================ */
.shop-sidebar {
    position: sticky;
    top: 20px;
}

/* ================================================================================
   RISULTATI
   ================================================================================ */
.shop-results {
    min-height: 400px;
}

.shop-results > p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(11, 26, 64, 0.7) 100%);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 16px;
}

/* ================================================================================
   PRODUCT GRID - VIEW GRID
   ================================================================================ */
.shop-layout.is-grid .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ================================================================================
   PRODUCT GRID - VIEW LIST
   ================================================================================ */
.shop-layout.is-list .product-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Product card in modalità list */
.shop-layout.is-list .product-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
}

.shop-layout.is-list .product-card .pc-image {
    aspect-ratio: 1 / 1;
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.shop-layout.is-list .product-card .pc-info {
    padding: 0;
    flex: 1;
}

.shop-layout.is-list .product-card .pc-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    -webkit-line-clamp: unset;
}

.shop-layout.is-list .product-card .pc-actions {
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    border-top: none;
    gap: 12px;
}

.shop-layout.is-list .product-card .pc-price .current {
    font-size: 1.3rem;
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .shop-page {
        padding: 0 16px 50px;
    }

    .shop-layout {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .shop-layout.is-grid .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .shop-layout.is-list .product-card {
        grid-template-columns: 160px 1fr auto;
        gap: 20px;
    }

    .shop-layout.is-list .product-card .pc-image {
        width: 160px;
        height: 160px;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE (Sidebar collapsible)
   ================================================================================ */
@media (max-width: 768px) {
    .shop-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
    }

    .shop-topbar .section-title {
        font-size: 1.5rem;
    }

    .shop-controls {
        width: 100%;
        justify-content: space-between;
    }

    .view-toggle button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .shop-controls select {
        padding: 10px 40px 10px 14px;
        font-size: 0.85rem;
    }

    /* Layout mobile - sidebar sopra */
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sidebar collapsible */
    .shop-sidebar {
        position: relative;
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 26, 64, 0.98) 100%);
        border: 1px solid rgba(0, 191, 255, 0.15);
        border-radius: 14px;
        overflow: hidden;
    }

    .shop-sidebar::before {
        content: '🔍 Filtri';
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: #00BFFF;
        background: rgba(0, 191, 255, 0.08);
        border-bottom: 1px solid rgba(0, 191, 255, 0.1);
        cursor: pointer;
    }

    .shop-sidebar::after {
        content: '▼';
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 0.8rem;
        color: #00BFFF;
        transition: transform 0.3s ease;
    }

    .shop-sidebar .sidebar-filters {
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .shop-sidebar.active::after {
        transform: rotate(180deg);
    }

    .shop-sidebar.active .sidebar-filters {
        max-height: 2000px;
        padding: 16px;
    }

    /* Grid mobile */
    .shop-layout.is-grid .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* List mobile */
    .shop-layout.is-list .product-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .shop-layout.is-list .product-card .pc-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .shop-layout.is-list .product-card .pc-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ================================================================================
   RESPONSIVE - SMALL MOBILE
   ================================================================================ */
@media (max-width: 480px) {
    .shop-page {
        padding: 0 12px 40px;
    }

    .shop-topbar .section-title {
        font-size: 1.3rem;
    }

    .shop-controls {
        flex-direction: column;
        gap: 12px;
    }

    .view-toggle {
        width: 100%;
    }

    .view-toggle button {
        flex: 1;
        text-align: center;
    }

    .shop-controls form {
        width: 100%;
    }

    .shop-controls select {
        width: 100%;
    }

    .shop-layout.is-grid .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-topbar {
    animation: fadeInUp 0.3s ease-out both;
}

.shop-sidebar {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.shop-results {
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

/* Animazione cards prodotto */
.product-grid .product-card {
    animation: fadeInUp 0.4s ease-out both;
}

.product-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.product-grid .product-card:nth-child(2) { animation-delay: 0.15s; }
.product-grid .product-card:nth-child(3) { animation-delay: 0.2s; }
.product-grid .product-card:nth-child(4) { animation-delay: 0.25s; }
.product-grid .product-card:nth-child(5) { animation-delay: 0.3s; }
.product-grid .product-card:nth-child(6) { animation-delay: 0.35s; }
.product-grid .product-card:nth-child(7) { animation-delay: 0.4s; }
.product-grid .product-card:nth-child(8) { animation-delay: 0.45s; }


/* ================================================================================
   PAGINA CATEGORY - CSS
   ================================================================================ */

/* Container principale */
.category-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Titolo pagina */
.category-page .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #00BFFF;
    margin: 0 0 30px 0;
    padding: 20px 0;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
    position: relative;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.category-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, #6A0DAD);
    border-radius: 2px;
}

/* ================================================================================
   LAYOUT PRINCIPALE
   ================================================================================ */
.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* ================================================================================
   SIDEBAR CATEGORIA
   ================================================================================ */
.category-sidebar {
    position: sticky;
    top: 20px;
}

/* ================================================================================
   CONTENUTO / PRODOTTI
   ================================================================================ */
.category-content {
    min-height: 400px;
}

/* Messaggio nessun prodotto */
.category-content > p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(11, 26, 64, 0.7) 100%);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 16px;
}

/* ================================================================================
   PRODUCT GRID
   ================================================================================ */
.category-content .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ================================================================================
   RESPONSIVE - TABLET
   ================================================================================ */
@media (max-width: 992px) {
    .category-page {
        padding: 0 16px 50px;
    }

    .category-page .section-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .category-layout {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .category-content .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

/* ================================================================================
   RESPONSIVE - MOBILE (Sidebar collapsible)
   ================================================================================ */
@media (max-width: 768px) {
    .category-page {
        padding: 0 12px 40px;
    }

    .category-page .section-title {
        font-size: 1.4rem;
        padding: 16px 0;
        margin-bottom: 20px;
    }

    /* Layout mobile - sidebar sopra */
    .category-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sidebar collapsible */
    .category-sidebar {
        position: relative;
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 26, 64, 0.98) 100%);
        border: 1px solid rgba(0, 191, 255, 0.15);
        border-radius: 14px;
        overflow: hidden;
    }

    .category-sidebar::before {
        content: '🔍 Filtri';
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: #00BFFF;
        background: rgba(0, 191, 255, 0.08);
        border-bottom: 1px solid rgba(0, 191, 255, 0.1);
        cursor: pointer;
    }

    .category-sidebar::after {
        content: '▼';
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 0.8rem;
        color: #00BFFF;
        transition: transform 0.3s ease;
    }

    .category-sidebar .sidebar-filters {
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .category-sidebar.active::after {
        transform: rotate(180deg);
    }

    .category-sidebar.active .sidebar-filters {
        max-height: 2000px;
        padding: 16px;
    }

    /* Grid mobile */
    .category-content .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ================================================================================
   RESPONSIVE - SMALL MOBILE
   ================================================================================ */
@media (max-width: 480px) {
    .category-page .section-title {
        font-size: 1.2rem;
    }

    .category-content .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ================================================================================
   ANIMAZIONI
   ================================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-page .section-title {
    animation: fadeInUp 0.3s ease-out both;
}

.category-sidebar {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.category-content {
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

/* Animazione cards prodotto */
.category-content .product-grid .product-card {
    animation: fadeInUp 0.4s ease-out both;
}

.category-content .product-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.category-content .product-grid .product-card:nth-child(2) { animation-delay: 0.15s; }
.category-content .product-grid .product-card:nth-child(3) { animation-delay: 0.2s; }
.category-content .product-grid .product-card:nth-child(4) { animation-delay: 0.25s; }
.category-content .product-grid .product-card:nth-child(5) { animation-delay: 0.3s; }
.category-content .product-grid .product-card:nth-child(6) { animation-delay: 0.35s; }
.category-content .product-grid .product-card:nth-child(7) { animation-delay: 0.4s; }
.category-content .product-grid .product-card:nth-child(8) { animation-delay: 0.45s; }

/* ================================================================================
   FIX SPECIFICO PER SCHERMI 360px (Huawei P30, Samsung Galaxy S serie, etc.)
   ================================================================================ */

@media (max-width: 400px) {
    /* Sidebar completamente nascosta di default */
    .shop-sidebar,
    .category-sidebar {
        position: relative !important;
        z-index: 100 !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    .shop-sidebar .sidebar-filters,
    .category-sidebar .sidebar-filters {
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 12px !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .shop-sidebar.active .sidebar-filters,
    .category-sidebar.active .sidebar-filters {
        max-height: 2000px !important;
        padding: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Layout prodotti a colonna singola */
    .shop-layout,
    .category-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    /* Grid prodotti - 1 colonna su 360px */
    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Contenuto prodotti sotto la sidebar */
    .shop-results,
    .category-content {
        width: 100% !important;
        position: relative !important;
        z-index: 1 !important;
    }
}

/* ================================================================================
   FIX SIDEBAR - MODALITÀ DESKTOP SU MOBILE
   ================================================================================ */

/* Sidebar con larghezza fissa e no overflow */
.shop-sidebar,
.category-sidebar {
    width: 280px;
    max-width: 280px;
    min-width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    z-index: 10;
}

/* Layout - impedisci overlap */
.shop-layout,
.category-layout {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 24px;
    align-items: start;
    overflow: hidden;
}

/* Contenuto prodotti - rispetta il suo spazio */
.shop-results,
.category-content {
    min-width: 0;
    overflow: hidden;
}

/* Product grid - adatta automaticamente */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    width: 100%;
}

/* Sidebar filters - contenuto non esce */
.sidebar-filters {
    width: 100%;
    overflow: hidden;
}

.sb-block {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Input e elementi interni - adattivi */
.sb-price-inputs input,
.sb-tags .tag,
.sb-rating-option {
    max-width: 100%;
}

.sb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ================================================================================
   NAVBAR - SCROLL ORIZZONTALE CON FRECCE
   ================================================================================ */

/* Container principale navbar */
.main-navbar {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Container interno con scroll */
.navbar-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 4px;
    
    /* Scroll orizzontale */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    
    /* Nascondi scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    
    /* Padding per frecce */
    padding: 8px 50px;
    scroll-behavior: smooth;
}

.navbar-container::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
}

/* Items navbar */
.navbar-item {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.navbar-label {
    white-space: nowrap !important;
}

.navbar-badge {
    flex-shrink: 0 !important;
}

/* ================================================================================
   FRECCE NAVIGAZIONE
   ================================================================================ */

.navbar-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

/* Freccia sinistra */
.navbar-arrow-btn.arrow-left {
    left: 0;
    background: linear-gradient(to right, rgba(11, 26, 64, 1) 0%, rgba(11, 26, 64, 0.8) 50%, transparent 100%);
    padding-right: 10px;
}

/* Freccia destra */
.navbar-arrow-btn.arrow-right {
    right: 0;
    background: linear-gradient(to left, rgba(11, 26, 64, 1) 0%, rgba(11, 26, 64, 0.8) 50%, transparent 100%);
    padding-left: 10px;
}

/* Icona freccia */
.navbar-arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease, transform 0.2s ease;
}

/* Hover sulla navbar - mostra frecce */
.main-navbar:hover .navbar-arrow-btn.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Hover sulla freccia */
.navbar-arrow-btn:hover svg {
    stroke: #00BFFF;
    transform: scale(1.2);
}

/* Active click */
.navbar-arrow-btn:active svg {
    transform: scale(0.9);
}

/* ================================================================================
   RESPONSIVE
   ================================================================================ */

@media (max-width: 992px) {
    .navbar-container {
        padding: 8px 45px;
        gap: 3px;
    }
    
    .navbar-arrow-btn {
        width: 35px;
    }
}

/* Mobile - frecce sempre visibili se necessarie */
@media (max-width: 768px) {
    .navbar-container {
        padding: 6px 40px;
        gap: 2px;
    }
    
    .navbar-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .navbar-arrow-btn {
        width: 30px;
    }
    
    .navbar-arrow-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Su mobile mostra sempre se c'è scroll */
    .navbar-arrow-btn.is-visible {
        opacity: 0.7;
        visibility: visible;
    }
}

/* ================================================================================
   MOBILE - NASCONDI HAMBURGER E FRECCE
   ================================================================================ */

@media (max-width: 768px) {
    /* Nascondi hamburger */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Nascondi frecce su mobile (scroll touch) */
    .navbar-arrow-btn {
        display: none !important;
    }
    
    /* Navbar container - rimuovi padding extra per frecce */
    .navbar-container {
        padding: 8px 12px !important;
    }
}

/* Tablet - nascondi frecce ma tieni hamburger se serve */
@media (max-width: 992px) {
    .navbar-arrow-btn {
        display: none !important;
    }
    
    .navbar-container {
        padding: 8px 16px !important;
    }
}

/* Desktop - mostra frecce */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .navbar-arrow-btn {
        display: flex !important;
    }
}

/* ================================================================================
   ICONA ACCOUNT - SPAZIO MINIMO TRA NOME E SOTTOTESTO
   Sostituire il CSS .icon-account esistente nel file style.css
   ================================================================================ */

.icon-account {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.icon-account:hover {
    color: #00BFFF;
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.2);
}

/* Icona */
.icon-account .icon,
.icon-account svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Testo account - SPAZIO MINIMO */
.icon-account .account-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
}

/* Nome utente (Ciao, gianni gianni) */
.icon-account .account-text strong {
    color: #ffffff;
    font-size: 15px !important;
    font-weight: 600;
    display: block;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    line-height: 0;
    margin: 0;
    padding: 0;
}

/* Sottotesto (Vai al mio account) - ATTACCATO */
.icon-account .account-text small {
    color: #94a3b8;
    font-size: 13px !important;
    display: block;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    line-height: 0;
    margin: 0;
    padding: 0;
    margin-top: 0px !important;/* SOLO 1px DI SPAZIO */
}

/* Quando non è loggato - solo testo "Accedi" */
.icon-account > span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 900px) {
    /* Su tablet nascondi il testo */
    .icon-account .account-text {
        display: none !important;
    }
    
    .icon-account > span {
        display: none !important;
    }
    
    /* Riduci padding */
    .icon-account {
        padding: 8px;
        gap: 0;
    }
}

@media (max-width: 768px) {
    /* Su mobile solo icona */
    .icon-account .account-text {
        display: none !important;
    }
    
    .icon-account > span {
        display: none !important;
    }
    
    .icon-account {
        padding: 6px;
    }
    
    .icon-account .icon,
    .icon-account svg {
        width: 22px;
        height: 22px;
    }
}

/* ================================================================================
   SPAZIO RIDOTTO A 1px TRA LE DUE RIGHE
   ================================================================================ */

/* ============================================
   FOOTER - SEZIONE EXTRA (3 COLONNE)
   ============================================ */

.footer-extra {
    padding: 40px 20px 20px 20px;
    /* Rimossa border-top: usiamo solo quello di footer-columns */
}

.footer-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-extra-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00BFFF;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-extra-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.5;
    font-family: 'Rajdhani', sans-serif; /* Font normale, non Orbitron */
    font-weight: 400;
}

/* ============================================
   COLONNA 1: SOCIAL ICONS (QUADRATE ARROTONDATE)
   ============================================ */

.footer-extra-col .social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-extra-col .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px; /* QUADRATE CON ANGOLI ARROTONDATI */
    color: #00BFFF;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.footer-extra-col .social-icons a:hover {
    background: rgba(0, 191, 255, 0.15);
    border-color: #00BFFF;
    transform: translateY(-3px) rotate(15deg); /* ROTAZIONE AL HOVER */
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.footer-extra-col .social-icons a:active {
    transform: translateY(-1px) rotate(5deg);
}

/* ============================================
   COLONNA 2: NEWSLETTER FORM EXTRA COMPATTO
   ============================================ */

.newsletter-form-compact {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    max-width: 400px; /* LIMITIAMO LA LARGHEZZA */
}

.newsletter-form-compact input[type="email"] {
    flex: 1;
    padding: 8px 12px; /* ANCORA PIÙ COMPATTO */
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 6px; /* BORDI PIÙ PICCOLI */
    color: #fff;
    font-size: 0.85rem; /* PIÙ PICCOLO */
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form-compact input[type="email"]:focus {
    outline: none;
    border-color: #00BFFF;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.newsletter-form-compact input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.newsletter-form-compact button {
    padding: 8px 16px; /* PIÙ PICCOLO */
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    border: none;
    border-radius: 6px; /* BORDI PIÙ PICCOLI */
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem; /* PIÙ PICCOLO */
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form-compact button:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.4);
}

.newsletter-form-compact button:active {
    transform: translateY(0);
}

.newsletter-message {
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: none;
}

.newsletter-message.success {
    display: block;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    color: #00FF7F;
}

.newsletter-message.error {
    display: block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #FF4444;
}

/* ============================================
   COLONNA 3: PAYMENT ICONS
   ============================================ */

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-icons span {
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: default;
}

.payment-icons span:hover {
    opacity: 1;
}

.payment-note {
    margin-top: 12px;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
}

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */

@media (max-width: 992px) {
    .footer-extra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-extra-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-extra-col:last-child .payment-icons {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */

@media (max-width: 640px) {
    .footer-extra {
        padding: 30px 15px 20px 15px;
    }
    
    .footer-extra-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-extra-col {
        text-align: center;
    }
    
    .footer-extra-col .social-icons {
        justify-content: center;
    }
    
    .newsletter-form-compact {
        flex-direction: column;
    }
    
    .newsletter-form-compact button {
        width: 100%;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

/* ============================================
   RIMOZIONE VECCHIA SEZIONE NEWSLETTER
   ============================================ */

/* Se esisteva una vecchia sezione .footer-newsletter, la nascondiamo */
.footer-newsletter {
    display: none !important;
}

.newsletter-box {
    /* Se c'era un vecchio box newsletter, lo nascondiamo */
    display: none !important;
}