﻿

a {
    color: white;
    text-decoration: none; /* enlève le soulignement */
}

a:hover {
    color: #ccc; /* léger effet au survol */
}
/* ==================== IMAGE HEader ==================== */

        table {
            width: 100%;
            margin: 0 auto;
            border-collapse: collapse;
        }

        td {
            vertical-align: top;      /* Texte en haut */
            text-align: center;       /* Centré horizontalement */
            padding: 20px;
        }

        a {
            display: inline-block;
            margin: 5px 0;
        }




.site-header {
    background: #B76E79;
    color: white;
    padding: 15px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-img {
    height: 146px;
    width: 300px;
    object-fit: contain;
    margin-bottom: 10px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    font-weight: bold;
}

.main-nav a:hover {
    text-decoration: underline;
    color: #ffdd00;
}

.cart-link {
    margin-left: 10px;
    font-weight: bold;
}

/* ==================== IMAGE HERO ==================== */
.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}


body {
    font-family: Arial;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}




.produit {
    border: 1px solid #ccc;
    padding: 15px;
    width: 200px;
    text-align: center;
}

button {
    background: #B76E79                                                                                                                                                                     ;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #444;
}
.promo-badge {
    background: red;
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    position: absolute;
}

.produit {
    position: relative;
}
.prix-barre {
    text-decoration: line-through;
    color: grey;
}
.prix-promo {
    color: red;
    font-weight: bold;
}
.stock-faible {
    color: blue;
}darkred
.stock-ok {
    color: green;
}
.stock-zero {
    color: red;
}

.lien-fondant {
    color: black;
    text-decoration: none;
}

.lien-fondant:hover {
    color: blue;
}








.btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 3px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.2s;
    color: white;
}

/* ✔ PAYER */
.btn-pay {
    background: #28a745;
}

.btn-pay:hover {
    background: #1e7e34;
}

/* 📦 STOCK */
.btn-stock {
    background: #007bff;
}

.btn-stock:hover {
    background: #0056b3;
}

/* 🧾 FACTURE */
.btn-facture {
    background: #343a40;
}

.btn-facture:hover {
    background: #1d2124;
}

/* 🏠 ADRESSE */
.btn-address {
    background: #fd7e14;
}

.btn-address:hover {
    background: #e8590c;
}

/* ❌ SUPPRIMER */
.btn-delete {
    background: #dc3545;
}

.btn-delete:hover {
    background: #a71d2a;
}



</style>