﻿<style>
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.contact-container {
    width: 400px;
    margin: 50px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #218838;
}

.message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}
</style>













/* STYLE NORMAL (PC) */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #c08081; /* vieux rose */
    padding: 10px;
    position: relative;
}

.logo img {
    max-height: 100px;
}

/* MENU */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* BURGER caché sur PC */
.burger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* &#128241; MODE SMARTPHONE */
@media (max-width: 768px) {

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #c08081;
        z-index: 999;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* afficher le burger */
    .burger {
        display: block;
    }

    /* menu actif */
    nav.active {
        display: block;
    }
}










.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.produit {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s;
}

.produit:hover {
    transform: translateY(-5px);
}

.produit img {
    width: 100%;
    border-radius: 10px;
}
.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}

.prix-barre {
    text-decoration: line-through;
    color: gray;
}

.prix-promo {
    color: red;
    font-weight: bold;
}

.stock-ok { color: green; }
.stock-faible { color: orange; }
.stock-zero { color: red; }

