/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 85% 30%, rgba(215, 255, 0, 0.15) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.hero-title {
    font-family: var(--font-logo);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title span {
    -webkit-text-stroke: 1px var(--volt);
    -webkit-text-fill-color: transparent;
}

.hero-text {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 50px;
}

/* Visualisation de la canette (Placeholder) */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.can-placeholder {
    width: 280px;
    height: 550px;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 0 100px rgba(215, 255, 0, 0.1);
}

.can-placeholder::after {
    content: "POUSS'N";
    font-family: var(--font-logo);
    font-size: 3rem;
    color: var(--volt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
}

/* --- PRODUITS SECTION --- */
.products {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-logo);
    text-transform: uppercase;
    font-size: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: 0.4s ease;
}

.product-card:hover {
    border-color: var(--volt);
    transform: translateY(-10px);
}

.card-img-container {
    height: 250px;
    background: linear-gradient(180deg, rgba(215, 255, 0, 0.1) 0%, #000 100%);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--volt);
    font-family: var(--font-logo);
    font-size: 0.8rem;
}

.card-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-add {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--volt);
    color: var(--volt);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-add:hover {
    background-color: var(--volt);
    color: #000;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .nav-content {
        display: none; /* Cache le menu sur mobile (il faudrait du JS pour l'ouvrir) */
    }
    .menu-toggle {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        margin: 0 auto 50px auto;
    }
    .hero-visual {
        display: none; /* Cache la grosse canette sur petit mobile */
    }
}