/* RESET GENERALE */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0,0,0,0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    gap: 20px; 
    align-items: center;
}
.brand { display: flex; align-items: center; gap: 10px; }
.logo-small { height: 60px; width: auto; }

nav a { 
    color: white; 
    text-decoration: none; 
    margin-left: 20px; 
    font-size: 13px; 
    text-transform: uppercase; 
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* HERO SECTION (HOME) */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 5%;
}

.logo-main { 
    max-width: 250px; 
    margin-bottom: 40px; 
}

.hero h1 {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

/* SECOND SECTION (PRODUCT PREVIEW) */
.product-preview {
    padding: 100px 5%;
    text-align: center;
    background: #0a0a0a;
    margin-bottom: 80px;
}

.label {
    display: block;
    letter-spacing: 5px;
    color: #666;
    margin-bottom: 10px;
    font-size: 12px;
}

/* BOTTONI */
.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* POPUP */
.popup {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #111;
    padding: 50px;
    border: 1px solid #222;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
}

/* GRIGLIA PRODOTTI (Per pagina prodotti.html) */
.page-prodotti { padding: 100px 5% 50px; text-align: center; }
.grid-prodotti {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}
@media (max-width: 480px) {
    nav {
        gap: 12px; 
    }
    
    nav a {
        font-size: 11px; 
    }

    .brand span {
        display: none; 
    }
}
