
:root {
    --rouge: #D90429;
    --rouge-survol: #EF233C;
    --rouge-clair: #FFEBEE;
    --texte-fonce: #0D0F14;
    --texte-corps: #4F5565;
    --fond-blanc: #FFFFFF;
    --fond-gris: #F8F9FA;
    --bordure: #E8ECEF;

    --police-titre: 'Outfit', sans-serif;
    --police-corps: 'Inter', sans-serif;

    --largeur-max: 1280px;
    --rayon: 12px;
    --ombre-douce: 0 10px 40px rgba(0, 0, 0, 0.05);
    --ombre-rouge: 0 15px 50px rgba(217, 4, 41, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--police-corps);
    color: var(--texte-corps);
    background: var(--fond-blanc);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--police-titre);
    color: var(--texte-fonce);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}


.barre-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 236, 239, 0.5);
    transition: var(--transition);
}

.barre-nav.defilée {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-conteneur {
    max-width: var(--largeur-max);
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.logo {
    font-family: var(--police-titre);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--texte-fonce);
    flex-shrink: 0;
}

.logo-point {
    color: var(--rouge);
}

/* Liens de navigation */
.nav-liens {
    display: flex;
    gap: 2.2rem;
}

.nav-lien {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--texte-corps);
    transition: var(--transition);
    position: relative;
}

.nav-lien:hover,
.nav-lien.actif {
    color: var(--rouge);
}

.nav-lien::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--rouge);
    transition: width 0.3s ease;
}

.nav-lien.actif::after,
.nav-lien:hover::after {
    width: 100%;
}

.nav-recherche {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-recherche-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--bordure);
    background: var(--fond-gris);
    color: var(--texte-corps);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-recherche-btn:hover {
    background: var(--rouge);
    color: white;
    border-color: var(--rouge);
    transform: scale(1.05);
}

.nav-recherche-champ {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: white;
    border: 1.5px solid var(--rouge);
    border-radius: 50px;
    padding: 0.55rem 1rem;
    gap: 0.5rem;
    width: 280px;
    box-shadow: 0 8px 30px rgba(217, 4, 41, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(-50%) scale(0.95);
    z-index: 100;
}

.nav-recherche-champ.ouverte {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.nav-recherche-champ i {
    color: var(--rouge);
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-recherche-champ input {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-family: var(--police-corps);
    color: var(--texte-fonce);
    width: 100%;
    outline: none;
}

.nav-recherche-fermer {
    border: none;
    background: none;
    color: var(--texte-corps);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    padding: 0.1rem;
    transition: color 0.2s;
}

.nav-recherche-fermer:hover {
    color: var(--rouge);
}

/* Actions navbar */
.nav-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-shrink: 0;
}

/* Burger */
.menu-burger {
    display: none;
    cursor: pointer;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
    padding: 0.72rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--police-corps);
    gap: 0.4rem;
}

.btn-principal {
    background: var(--rouge);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.2);
}

.btn-principal:hover {
    background: var(--rouge-survol);
    transform: translateY(-2px);
    box-shadow: var(--ombre-rouge);
}

.btn-secondaire {
    background: var(--rouge-clair);
    color: var(--rouge);
}

.btn-secondaire:hover {
    background: #FFD4DB;
    transform: translateY(-2px);
}

.btn-contour {
    background: transparent;
    border: 1px solid var(--bordure);
    color: var(--texte-fonce);
}

.btn-contour:hover {
    border-color: var(--texte-fonce);
}

.btn-clair {
    background: white;
    color: var(--rouge);
}

.btn-clair:hover {
    transform: translateY(-2px);
    box-shadow: var(--ombre-douce);
}

.btn-grand {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-bloc {
    width: 100%;
    padding: 1rem;
}

.btn-action {
    padding: 0.82rem 1.7rem;
    font-size: 0.92rem;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.accueil-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 45%, #fff8f0 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}

.accueil-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.accueil-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 35, 60, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.accueil-interieur {
    max-width: var(--largeur-max);
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* --- Côté gauche --- */
.accueil-gauche {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.accueil-cadre {
    position: relative;
    width: 100%;
    border-radius: 24px 120px 24px 120px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(217, 4, 41, 0.18), 0 10px 30px rgba(0, 0, 0, 0.10);
    background: var(--fond-gris);
    outline: 4px solid rgba(217, 4, 41, 0.08);
    outline-offset: 6px;
}

.accueil-image {
    width: 100%;
    height: 570px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) saturate(1.1);
    transition: transform 0.6s ease;
}

.accueil-cadre:hover .accueil-image {
    transform: scale(1.03);
}

/* Étiquettes flottantes */
.etiquette {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--police-corps);
    color: var(--texte-fonce);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: flotterEtiquette 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: default;
    user-select: none;
}

.etiquette-point {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rouge);
    flex-shrink: 0;
}

.etiquette-haut-gauche {
    top: 14%;
    left: 6%;
    animation-delay: 0s;
}

.etiquette-haut-droite {
    top: 20%;
    right: 6%;
    animation-delay: 0.5s;
}

.etiquette-centre {
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.etiquette-bas-gauche {
    bottom: 32%;
    left: 6%;
    animation-delay: 1.5s;
}

.etiquette-bas-droite {
    bottom: 20%;
    right: 6%;
    animation-delay: 0.75s;
}

@keyframes flotterEtiquette {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.etiquette-centre {
    animation-name: flotterCentre;
}

@keyframes flotterCentre {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Flèche navigation */
.accueil-fleche {
    position: absolute;
    bottom: -18px;
    left: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--fond-blanc);
    border: 1.5px solid var(--bordure);
    color: var(--texte-fonce);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    z-index: 5;
}

.accueil-fleche:hover {
    background: var(--rouge);
    color: white;
    border-color: var(--rouge);
}

/* --- Côté droit --- */
.accueil-droite {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding-left: 1rem;
}

.accueil-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--texte-corps);
}

.badge-point {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rouge);
    flex-shrink: 0;
}

.accueil-rangee-titre {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.accueil-titre {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
    color: var(--texte-fonce);
    font-family: var(--police-titre);
}

.accueil-titre-rouge {
    color: var(--rouge);
}

.accueil-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding-bottom: 0.4rem;
    min-width: 80px;
}

.stats-libelle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--texte-corps);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stats-libelle::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rouge);
    flex-shrink: 0;
}

.stats-chiffre {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--texte-fonce);
    font-family: var(--police-titre);
    letter-spacing: -0.5px;
}

.accueil-avatars {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -8px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-3px);
    z-index: 2;
}

.accueil-description {
    font-size: 1.05rem;
    color: var(--texte-corps);
    line-height: 1.7;
    max-width: 470px;
}

/* Barre de recherche héro */
.accueil-barre {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.accueil-recherche {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    background: var(--fond-gris);
    border: 1.5px solid var(--bordure);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    gap: 0.6rem;
    transition: var(--transition);
}

.accueil-recherche:focus-within {
    border-color: var(--rouge);
    box-shadow: 0 0 0 4px var(--rouge-clair);
    background: white;
}

.icone-recherche {
    font-size: 1.1rem;
    color: var(--texte-corps);
    flex-shrink: 0;
}

.champ-recherche {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-family: var(--police-corps);
    color: var(--texte-fonce);
    width: 100%;
    outline: none;
}

.champ-recherche::placeholder {
    color: #aab0bc;
}

/* Bas héro : slide + miniatures */
.accueil-bas {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--bordure);
}

.slide-info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex-shrink: 0;
}

.slide-numero {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--texte-fonce);
    font-family: var(--police-titre);
}

.slide-total {
    font-size: 0.75rem;
    color: var(--texte-corps);
    font-weight: 400;
}

.slide-points {
    display: flex;
    gap: 5px;
    align-items: center;
}

.slide-point {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bordure);
    transition: background 0.3s;
}

.slide-point.actif {
    background: var(--rouge);
    width: 18px;
    border-radius: 50px;
}

.slide-fleches {
    display: flex;
    gap: 0.4rem;
}

.slide-fleche {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--bordure);
    background: white;
    color: var(--texte-fonce);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slide-fleche:hover {
    background: var(--rouge);
    color: white;
    border-color: var(--rouge);
}

.miniatures {
    display: flex;
    gap: 0.6rem;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.miniatures::-webkit-scrollbar {
    display: none;
}

.miniature {
    flex-shrink: 0;
    width: 74px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.miniature.actif,
.miniature:hover {
    border-color: var(--rouge);
    transform: translateY(-2px);
}

.miniature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.3s;
}

.miniature.actif .miniature-image,
.miniature:hover .miniature-image {
    filter: brightness(1);
}

.miniature-active {
    width: 128px;
    border-color: var(--rouge);
}

.miniature-texte {
    position: absolute;
    bottom: 5px;
    left: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    font-family: var(--police-titre);
    color: white;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}


/* ============================================================
   COMPOSANTS PARTAGÉS ANNONCE
   ============================================================ */
.annonce-badge-galerie {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--texte-fonce);
    color: white;
    display: none;
}

.annonce-badge-galerie.visible {
    display: inline-block;
}

.annonce-miniatures {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.annonce-miniatures::-webkit-scrollbar {
    display: none;
}

.annonce-mini-img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    opacity: 0.7;
}

.annonce-mini-img.actif,
.annonce-mini-img:hover {
    border-color: var(--rouge);
    opacity: 1;
}

.annonce-entete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.annonce-categorie-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--rouge);
    background: var(--rouge-clair);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.annonce-localite-bloc {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--texte-corps);
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--bordure);
}

.annonce-localite-bloc i {
    color: var(--rouge);
    font-size: 0.9rem;
}

.annonce-description-bloc {
    border-top: 1px solid var(--bordure);
    padding-top: 1.2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
}

.annonce-description-bloc h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--texte-corps);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.annonce-description-bloc p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--texte-corps);
}

.annonce-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-annonce {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--police-corps);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.36);
}

.btn-appel {
    background: white;
    color: var(--texte-fonce);
    border: 1.5px solid var(--bordure);
}

.btn-appel:hover {
    border-color: var(--rouge);
    color: var(--rouge);
    transform: translateY(-2px);
}


.annonce-badge-galerie.visible {
    display: inline-block;
}

.annonce-miniatures {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.annonce-miniatures::-webkit-scrollbar {
    display: none;
}

.annonce-mini-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    opacity: 0.7;
}

.annonce-mini-img.actif,
.annonce-mini-img:hover {
    border-color: var(--rouge);
    opacity: 1;
}

/* Détails texte */
.annonce-details {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
}

.annonce-entete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.annonce-categorie-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--rouge);
    background: var(--rouge-clair);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.annonce-localite-bloc {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--texte-corps);
    background: var(--fond-gris);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--bordure);
}

.annonce-localite-bloc i {
    color: var(--rouge);
    font-size: 0.9rem;
}

.annonce-titre {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--texte-fonce);
    line-height: 1.15;
    font-family: var(--police-titre);
}

.annonce-prix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rouge);
    font-family: var(--police-titre);
    letter-spacing: -1px;
}

.annonce-description-bloc {
    border-top: 1px solid var(--bordure);
    padding-top: 1.2rem;
}

.annonce-description-bloc h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--texte-corps);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.annonce-description-bloc p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--texte-corps);
}




/* ============================================================
   SECTION PRODUITS
   ============================================================ */
.section-produits {
    padding: 2.5rem 2rem 6rem;
    background: var(--fond-blanc);
    position: relative;
}

.produits-conteneur {
    max-width: var(--largeur-max);
    margin: 0 auto;
}

/* En-tête */
.produits-entete {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.produits-titre {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--texte-fonce);
    margin-bottom: 0.3rem;
}

.produits-sous-titre {
    font-size: 1rem;
    color: var(--texte-corps);
}

.produits-voir-tout {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--rouge);
    border: 1.5px solid var(--rouge);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.produits-voir-tout:hover {
    background: var(--rouge);
    color: white;
    transform: translateY(-2px);
}

/* Filtres */
.produits-filtres {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1.5px solid var(--bordure);
}

.filtre-btn {
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid var(--bordure);
    background: white;
    color: var(--texte-corps);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--police-corps);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filtre-btn:hover {
    border-color: var(--rouge);
    color: var(--rouge);
}

.filtre-btn.actif {
    background: var(--rouge);
    color: white;
    border-color: var(--rouge);
}

/* Grille produits */
.produits-grille {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.4rem;
}

/* Carte produit */
.carte-produit {
    background: white;
    border-radius: 20px;
    border: 1.5px solid var(--bordure);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.carte-produit:hover {
    border-color: var(--rouge);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(217, 4, 41, 0.12);
}

/* Zone image produit */
.produit-image-zone {
    position: relative;
    background: var(--fond-gris);
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carte-produit:hover .produit-image {
    transform: scale(1.08);
}

/* Badges produit */
.produit-badge-nouveau,
.produit-badge-promo {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--police-corps);
    letter-spacing: 0.3px;
    z-index: 2;
}

.produit-badge-nouveau {
    background: var(--texte-fonce);
    color: white;
}

.produit-badge-promo {
    background: var(--rouge);
    color: white;
}

/* Bouton favoris — effet verre / miroir (liquid glass) */
.btn-favori {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: #1b1c1c;
    /* Blanc très léger SOUS l'effet de verre : garde la transparence/glace
       tout en restant visible même sur des images très claires. */
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.65);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
}

.btn-favori i {
    font-size: 18px;
    transition: transform 0.2s ease;
    pointer-events: none;
}

.btn-favori:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26), inset 0 1px 2px rgba(255, 255, 255, 0.75);
}

.btn-favori:active {
    transform: scale(0.9);
}

.btn-favori.is-fav {
    color: var(--rouge, #D90429);
    background: rgba(255, 255, 255, 0.5);
}

/* Petite animation "pop" au clic */
@keyframes favori-pop {
    0% { transform: scale(1); }
    35% { transform: scale(1.35); }
    65% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.btn-favori.pop {
    animation: favori-pop 0.4s ease;
}

/* Bouton lien produit */
.produit-btn-lien {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--texte-fonce);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
    z-index: 2;
}

.carte-produit:hover .produit-btn-lien {
    opacity: 1;
    transform: scale(1);
    background: var(--rouge);
    color: white;
}

/* ---- Pillule overlay prix + adresse (sous le nom du produit) ---- */
/* Règles de mot de passe (inscription) : ✕ rouge tant que non respecté, ✓ vert quand ok. */
.mdp-regles {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mdp-regles li {
    font-size: 0.8rem;
    color: #8a8f98;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.mdp-regles li::before {
    content: "\2715";
    font-weight: 700;
    color: #e02424;
    width: 14px;
    display: inline-block;
    text-align: center;
}

.mdp-regles li.ok {
    color: #16a34a;
}

.mdp-regles li.ok::before {
    content: "\2713";
    color: #16a34a;
}

.carte-pillule {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
    background: rgba(240, 240, 245, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 6px 6px 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.carte-pillule-prix {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--rouge);
    font-family: var(--police-titre);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.carte-pillule-adresse {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #111;
    color: white;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--police-corps);
    flex-shrink: 1;
    /* Permet de reduire la taille s'il n'y a pas d'espace */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.carte-pillule-adresse i {
    font-size: 0.78rem;
    opacity: 0.8;
}

/* Infos produit */
.produit-info {
    padding: 1rem 1rem 1.1rem;
}

.produit-categorie-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--texte-corps);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.produit-nom {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--texte-fonce);
    font-family: var(--police-titre);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produit-bas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.produit-prix {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rouge);
    font-family: var(--police-titre);
    letter-spacing: -0.3px;
}

.produit-localite {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--texte-corps);
    opacity: 0.7;
    white-space: nowrap;
}

.produit-localite i {
    font-size: 0.75rem;
    color: var(--rouge);
    opacity: 0.8;
}

/* Carte masquée quand filtrée */
.carte-produit.masque {
    display: none;
}

/* ============================================================
   SECTION À PROPOS
   ============================================================ */
.section-apropos {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 50%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.section-apropos::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.apropos-conteneur {
    max-width: var(--largeur-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.apropos-visuel {
    position: relative;
}

.apropos-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--ombre-douce);
}

.badge-pro {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--rouge);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-family: var(--police-titre);
    box-shadow: var(--ombre-rouge);
}

.texte-principal {
    color: var(--rouge);
}

.apropos-texte h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.apropos-texte p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.liste-avantages {
    list-style: none;
    margin-top: 3rem;
}

.liste-avantages li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.avantage-icone {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--rouge-clair), rgba(217, 4, 41, 0.05));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(217, 4, 41, 0.15);
    color: var(--rouge);
}

.liste-avantages h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ============================================================
   SECTION CTA
   ============================================================ */
.section-cta {
    padding: 6rem 2rem;
    max-width: var(--largeur-max);
    margin: 0 auto 6rem;
}

.cta-boite {
    background: linear-gradient(135deg, #D90429 0%, #a50020 100%);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 30px 80px rgba(217, 4, 41, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-boite::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.cta-boite::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.cta-boite>* {
    position: relative;
    z-index: 2;
}

.cta-boite h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-boite p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ============================================================
   PIED DE PAGE
   ============================================================ */
footer {
    background: #0d0f14;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(217, 4, 41, 0.2);
}

.pied-contenu {
    max-width: var(--largeur-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pied-contenu .logo,
.marque p,
.liens a {
    color: rgba(255, 255, 255, 0.75);
}

.pied-contenu .logo {
    color: white;
    font-size: 1.5rem;
}

.liens {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
}

.liens a:hover {
    color: var(--rouge);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.anim-montee {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-apparition {
    opacity: 0;
    transition: opacity 1s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delai-1 {
    transition-delay: 0.1s;
}

.delai-2 {
    transition-delay: 0.2s;
}

.delai-3 {
    transition-delay: 0.3s;
}

.delai-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   AUTH PLEIN ÉCRAN
   ============================================================ */
.auth-plein-ecran {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow: hidden;
}

.auth-plein-ecran.actif {
    opacity: 1;
    visibility: visible;
}

/* Bouton fermer */
.auth-fermer {
    position: absolute;
    top: 1.6rem;
    right: 1.8rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--bordure);
    background: white;
    color: var(--texte-corps);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.auth-fermer:hover {
    border-color: var(--rouge);
    color: var(--rouge);
    transform: scale(1.08);
}

/* Colonne formulaire */
.auth-colonne-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    overflow-y: auto;
}

.auth-form-interieur {
    width: 100%;
    max-width: 400px;
}

/* Logo */
.auth-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.auth-logo-icone {
    width: 36px;
    height: 36px;
    background: var(--rouge);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.auth-logo-texte {
    font-family: var(--police-titre);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--texte-fonce);
}

.auth-titre {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--texte-fonce);
    margin-bottom: 0.5rem;
    font-family: var(--police-titre);
}

.auth-sous-titre {
    font-size: 0.92rem;
    color: var(--texte-corps);
    margin-bottom: 2rem;
}

/* Boutons sociaux (Google / Apple) */
.auth-sociaux {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.auth-btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--bordure);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    font-family: var(--police-corps);
    color: var(--texte-fonce);
    transition: var(--transition);
}

.auth-btn-social:hover {
    background: var(--fond-gris);
    border-color: #ccc;
}

/* Séparateur ou */
.auth-separateur {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-separateur span {
    flex: 1;
    height: 1px;
    background: var(--bordure);
}

.auth-separateur em {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--texte-corps);
    white-space: nowrap;
}

/* Champs */
.auth-champ {
    margin-bottom: 1.1rem;
}

.auth-champ label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--texte-corps);
    margin-bottom: 0.4rem;
}

.auth-champ input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--bordure);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--police-corps);
    color: var(--texte-fonce);
    background: var(--fond-blanc);
    transition: var(--transition);
    outline: none;
}

.auth-champ input:focus {
    border-color: var(--rouge);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.08);
}

/* Champ mot de passe avec bouton oeil */
.auth-champ-mdp {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-champ-mdp input {
    padding-right: 3rem;
}

.auth-oeil {
    position: absolute;
    right: 0.85rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--texte-corps);
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
}

.auth-oeil:hover {
    color: var(--rouge);
}

/* Options (souvenir + oublié) */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
}

.auth-souvenir {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--texte-corps);
    cursor: pointer;
}

.auth-souvenir input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--rouge);
    cursor: pointer;
}

.auth-oublie {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--rouge);
    text-decoration: none;
}

.auth-oublie:hover {
    text-decoration: underline;
}

/* Bouton principal */
.auth-btn-principal {
    width: 100%;
    padding: 1rem;
    background: var(--rouge);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--police-corps);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.25rem;
}

.auth-btn-principal:hover {
    background: var(--rouge-survol);
    transform: translateY(-2px);
    box-shadow: var(--ombre-rouge);
}

/* Switch connexion ↔ inscription */
.auth-switch {
    text-align: center;
    font-size: 0.88rem;
    color: var(--texte-corps);
    margin: 0;
}

.auth-switch-lien {
    background: none;
    border: none;
    color: var(--rouge);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--police-corps);
    text-decoration: underline;
}

/* ------- Colonne image droite ------- */
.auth-colonne-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fond-gris);
    padding: 3rem 2rem;
    overflow: hidden;
    position: relative;
}

/* Forme image droite auth: rectangle standard très arrondi */
.auth-img-blob {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 100%;
    max-height: 82vh;
    border-radius: 32px;
    overflow: hidden;
}

.auth-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) saturate(1.1);
}

.auth-img-texte {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    text-align: right;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--police-titre);
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 230px;
}

/* ============================================================
   ANNONCE PLEIN ÉCRAN
   ============================================================ */
.annonce-plein-ecran {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background: var(--fond-gris);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow: hidden;
}

.annonce-plein-ecran.actif {
    opacity: 1;
    visibility: visible;
}

/* Topbar */
.annonce-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid var(--bordure);
    flex-shrink: 0;
    gap: 1rem;
}

.annonce-retour {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--texte-fonce);
    cursor: pointer;
    font-family: var(--police-corps);
    transition: color 0.2s;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.annonce-retour:hover {
    color: var(--rouge);
}

.annonce-topbar-titre {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--texte-corps);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Corps */
.annonce-corps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    overflow: hidden;
    gap: 0;
    max-height: calc(100vh - 62px);
}

/* Galerie gauche */
.annonce-galerie-full {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: black;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--bordure);
}

.annonce-galerie-full .annonce-photo-principale {
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.annonce-galerie-full .annonce-photo-principale img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Détails droite */
.annonce-details-full {
    padding: 2.5rem 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--fond-blanc);
}

.annonce-details-full .annonce-titre {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--texte-fonce);
    line-height: 1.15;
    font-family: var(--police-titre);
}

.annonce-details-full .annonce-prix {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--rouge);
    font-family: var(--police-titre);
    letter-spacing: -1px;
}

.cache {
    display: none !important;
}

@keyframes apparitionCarte {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .produits-grille {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .accueil-interieur {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accueil-image {
        height: 400px;
    }

    .accueil-droite {
        padding-left: 0;
    }

    .accueil-titre {
        font-size: 3rem;
    }

    .accueil-barre {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-action {
        text-align: center;
    }

    .grille {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .carte-grande {
        grid-row: auto;
        height: 400px;
    }

    .carte-petite {
        height: 300px;
    }

    .apropos-conteneur {
        grid-template-columns: 1fr;
    }

    .produits-grille {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-liens,
    .nav-actions {
        display: none;
    }

    .menu-burger {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-burger span {
        width: 30px;
        height: 2px;
        background: var(--texte-fonce);
        transition: var(--transition);
    }

    .accueil-titre {
        font-size: 2.2rem;
    }

    .accueil-interieur {
        padding: 1.5rem 1.25rem;
    }

    .accueil-image {
        height: 280px;
    }

    .accueil-bas {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .miniatures {
        width: 100%;
    }

    .accueil-rangee-titre {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .accueil-stats {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-bottom: 0;
    }

    /* Auth plein écran - masquer la colonne image sur mobile */
    .auth-colonne-img {
        display: none;
    }

    .auth-plein-ecran {
        grid-template-columns: 1fr;
    }

    .auth-form-interieur {
        max-width: 100%;
    }

    /* Annonce plein écran - stack vertical sur mobile */
    .annonce-corps {
        grid-template-columns: 1fr;
        overflow-y: auto;
        max-height: calc(100vh - 62px);
        display: flex;
        flex-direction: column;
    }

    .annonce-galerie-full {
        border-right: none;
        border-bottom: 1px solid var(--bordure);
        max-height: 60vw;
        min-height: 220px;
        flex-shrink: 0;
    }

    .annonce-galerie-full .annonce-photo-principale {
        min-height: 180px;
    }

    .annonce-details-full {
        padding: 1.5rem 1.25rem;
    }

    .annonce-details-full .annonce-titre {
        font-size: 1.6rem;
    }

    .annonce-details-full .annonce-prix {
        font-size: 1.8rem;
    }

    .etiquette {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .cta-boite h2 {
        font-size: 2.5rem;
    }

    .produits-grille {
        grid-template-columns: repeat(2, 1fr);
    }

    .produits-entete {
        flex-direction: column;
        align-items: flex-start;
    }

    .pied-contenu {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .liens {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .produits-grille {
        grid-template-columns: 1fr;
    }

    .auth-titre {
        font-size: 1.8rem;
    }
}