* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #fff;
    color: #1e1e2a;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top bar */
.top-bar {
    background-color: #000;
    color: #f5c842;
    font-size: 0.9rem;
    padding: 8px 0;
    text-align: center;
    font-weight: 500;
}

.top-bar i {
    margin-right: 8px;
}

/* Main header */
.main-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: #222;
}

.logo span {
    font-size: 0.8rem;
    color: #b8860b;
    font-weight: 500;
}

.whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
    display: inline-block;
}

.whatsapp-header:hover {
    background-color: #1da851;
    transform: scale(1.02);
}

/* Navigation */
nav {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #2c2c2c;
    transition: 0.2s;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.nav-menu li a.active, 
.nav-menu li a:hover {
    color: #b8860b;
    border-bottom-color: #b8860b;
}

/* Hero */
.hero {
    background: linear-gradient(105deg, #fef9e6 0%, #f4e9d8 100%);
    border-radius: 28px;
    padding: 60px 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.hero h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #2d2a24;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #4a4640;
}

.btn-decouvrir {
    background: #000;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.2s;
}

.btn-decouvrir:hover {
    background: #b8860b;
}

/* Section title */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
}

.section-title h2 {
    font-size: 2rem;
    color: #1e1e1e;
}

.section-title p {
    color: #6c6c6c;
    margin-top: 8px;
}

/* Grille produits */
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.produit-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.produit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
}

/* Style pour les vraies images */
.produit-img {
    width: 100%;
    height: 260px;
    background-color: #f9f6f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.produit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produit-card:hover .produit-img img {
    transform: scale(1.03);
}

/* Fallback si l'image ne charge pas */
.produit-img .fallback-icon {
    font-size: 4rem;
    color: #b8860b;
    display: none;
}

.produit-img img.error + .fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.produit-infos {
    padding: 20px;
}

.produit-titre {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.produit-inspire {
    font-size: 0.8rem;
    color: #b8860b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.produit-desc {
    font-size: 0.85rem;
    color: #5f5f6b;
    margin-bottom: 16px;
    line-height: 1.4;
}

.produit-prix {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e1e2a;
    margin-bottom: 20px;
}

.btn-whatsapp-produit {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
}

.btn-whatsapp-produit:hover {
    background-color: #1da851;
}

/* Témoignages */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.temoignage {
    background: #fcfaf5;
    border-radius: 20px;
    padding: 24px;
    border-left: 4px solid #b8860b;
}

.temoignage p {
    font-style: italic;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.temoignage-nom {
    font-weight: bold;
    color: #b8860b;
}

.temoignage-ville {
    font-size: 0.75rem;
    color: #888;
}

/* Footer */
footer {
    background-color: #111;
    color: #ddd;
    margin-top: 50px;
    padding-top: 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h3 {
    color: #f5c842;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
}

.footer-col a:hover {
    color: #f5c842;
}

.whatsapp-footer {
    background-color: #25D366;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-block;
    color: white !important;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #2a2a2a;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    .nav-menu {
        gap: 16px;
        justify-content: center;
    }
    .header-flex {
        flex-direction: column;
        text-align: center;
    }
    .produits-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    .produit-img {
        height: 200px;
    }
}