@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: #ffffff; 
    color: #000000; 
    font-family: 'Montserrat', sans-serif; 
    -webkit-font-smoothing: antialiased;
}

/* BANDEAU D'ANNONCE EN HAUT */
.announcement-bar {
    background-color: #27d1b8; /* Le petit bleu/vert de la vidéo */
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NAVIGATION BLANCHE ET CLEAN */
nav { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 20px 50px; background: #ffffff; 
    position: sticky; top: 0; width: 100%; z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: -1px; text-transform: uppercase; }
nav div a { 
    color: #000; text-decoration: none; font-weight: 600; 
    margin-left: 30px; font-size: 0.9rem; text-transform: uppercase; transition: 0.2s;
}
nav div a:hover { color: #27d1b8; }

/* HERO SECTION (Image de base) */
.hero-image {
    width: 100%; height: auto; display: block;
}

/* TITRES DE SECTIONS */
.container { max-width: 1300px; margin: 0 auto; padding: 60px 20px; text-align: center; }
.section-titre { 
    font-size: 3.5rem; font-weight: 900; text-transform: uppercase; 
    margin-bottom: 40px; letter-spacing: -1px;
}

/* GRILLE PRODUITS */
.grille-produits { 
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; text-align: left;
}
.carte-produit { 
    background: #fff; cursor: pointer; position: relative; padding-bottom: 20px; transition: 0.3s;
}
.carte-produit:hover { transform: translateY(-5px); }
.image-container { position: relative; width: 100%; padding-top: 100%; background: #f9f9f9; border-radius: 10px; overflow: hidden; margin-bottom: 15px;}
.carte-produit img { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px;
}

/* ÉTIQUETTE SUR LA PHOTO */
.badge-nouveaute { 
    position: absolute; top: 10px; right: 10px; background: #27d1b8; color: #fff; 
    padding: 5px 10px; font-weight: 800; font-size: 0.7rem; text-transform: uppercase; border-radius: 3px;
}

/* INFOS PRODUIT */
.nom-produit { font-size: 1rem; font-weight: 800; color: #000; margin-bottom: 5px; line-height: 1.3;}
.prix-produit { font-size: 1.1rem; font-weight: 600; color: #000; }
.avis-stars { color: #27d1b8; font-size: 0.9rem; margin-bottom: 5px; }

/* BOUTONS TAILLES (LE DÉTAIL QUI TUE 🔥) */
.tailles-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.taille-box { 
    border: 1px solid #ddd; padding: 8px 12px; font-size: 0.85rem; font-weight: 600; 
    border-radius: 5px; cursor: pointer; transition: 0.2s; background: #fff; color: #000;
}
.taille-box:hover { border-color: #000; }
.taille-box.selected { background: #000; color: #fff; border-color: #000; }

/* BOUTON AJOUTER AU PANIER */
.btn-panier { 
    width: 100%; padding: 15px; background: #000; color: #fff; font-weight: 800; text-transform: uppercase; 
    border: none; border-radius: 5px; margin-top: 15px; cursor: pointer; transition: 0.3s;
}
.btn-panier:hover { background: #333; }

/* ONGLETS */
.tab-content { display: none; opacity: 0; animation: fadeIn 0.4s ease-out forwards; }
.tab-content.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}