* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: white;
    padding: 15px 50px;
}

.header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.header a:hover {
    color: #f0b90b;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Hero */
.hero {
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1521334884684-d80222895322?auto=format&fit=crop&w=1400&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.5em;
}

.hero span {
    color: #f0b90b;
}

.btn {
    display: inline-block;
    background: #f0b90b;
    color: #111;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #d8a90a;
}

/* Prodotti */
.products {
    padding: 60px 50px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.price {
    font-size: 1.2em;
    color: #f0b90b;
    margin: 10px 0;
}

.add-to-cart {
    background: #111;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.add-to-cart:hover {
    background: #f0b90b;
    color: #111;
}

/* Carrello */
.cart-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.cart-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
}

.cart-content h2 {
    margin-bottom: 20px;
}

.cart-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.total {
    font-weight: bold;
    margin-bottom: 15px;
}

/* Contatti */
.contact {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Footer */
footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
#checkout-btn {
    background: #ca3f3f;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

#checkout-btn:hover {
    background: #ca3f3f;
}
