body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #0f172a; /* blu scuro moderno */
    color: #e2e8f0;
}

header {
    background-color: #020617;
    color: #38bdf8;
    text-align: center;
    padding: 20px;
}

nav {
    text-align: center;
    margin: 15px;
}

button {
    padding: 10px;
    margin: 5px;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0ea5e9, #4f46e5);
}

.ricerca {
    text-align: center;
    margin: 15px;
}

input {
    padding: 10px;
    width: 200px;
    border-radius: 6px;
    border: none;
    outline: none;
}

#prodotti {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #020617;
    border-radius: 12px;
    margin: 15px;
    padding: 15px;
    width: 200px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(56,189,248,0.2);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.prezzo {
    color: #22c55e;
    font-weight: bold;
}

/* 🛒 CARRELLO IN ALTO A DESTRA */
h2 {
    position: fixed;
    top: 10px;
    right: 20px;
    background: #020617;
    padding: 8px;
    border: 2px solid #38bdf8;
    border-radius: 10px 10px 0 0;
}

#carrello {
    list-style: none;
    padding: 10px;
    position: fixed;
    top: 50px;
    right: 20px;
    width: 220px;
    max-height: 250px;
    overflow-y: auto;
    background: #020617;
    border: 2px solid #38bdf8;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 0px 15px rgba(56,189,248,0.3);
    text-align: left;
}

#totale {
    position: fixed;
    top: 310px;
    right: 20px;
    width: 220px;
    background: #020617;
    border: 2px solid #38bdf8;
    padding: 8px;
    border-radius: 8px;
}

.svuota-btn {
    position: fixed;
    top: 360px;
    right: 20px;
    width: 220px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.svuota-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* BOTTONE COMPRA */
.compra-btn {
    position: fixed;
    top: 410px;
    right: 20px;
    width: 220px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.compra-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46);
}

footer {
    text-align: center;
    background-color: #020617;
    color: #94a3b8;
    padding: 10px;
    margin-top: 20px;
}