/* ==========================================
   ÉPICERIE PRIMEUR DE LEVROUX — CHEZ HAFID
   style.css — Palette : Vert & Blanc uniquement
   ========================================== */

/* ---- VARIABLES ---- */
:root {
    --green-dark:  #1b4332;
    --green:       #2d6a4f;
    --green-mid:   #40916c;
    --green-light: #52b788;
    --green-pale:  #d8f3dc;
    --white:       #ffffff;
    --bg:          #f7faf8;
    --text:        #1a1a2e;
    --text-light:  #555f6a;
    --radius:      14px;
    --shadow:      0 6px 30px rgba(0,0,0,0.10);
    --transition:  0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,106,79,0.35);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    font-weight: 700;
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }

.btn-commander {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    font-size: 1rem;
    padding: 16px 34px;
}
.btn-commander:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27,67,50,0.4);
}

.btn-phone {
    background: var(--green);
    color: var(--white);
    font-size: 1rem;
    padding: 16px 30px;
}
.btn-phone:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,67,50,0.35);
}

.btn-facebook {
    background: #1877f2;
    color: var(--white);
    font-size: 1rem;
    padding: 16px 30px;
}
.btn-facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24,119,242,0.35);
}

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; margin-top: 8px; }
.section-header h2 span { color: var(--green-light); }
.section-header p { color: var(--text-light); max-width: 620px; margin: 14px auto 0; font-size: 1rem; }

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light h2 span { color: var(--green-pale); }
.light-tag { background: rgba(255,255,255,0.2); color: var(--white); }

/* ===========================================================
   HEADER
   =========================================================== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-weight: 800; font-size: 1.05rem; color: var(--green-dark); }
.logo-sub  { font-size: 0.72rem; color: var(--green-mid); font-weight: 500; }

/* Desktop nav */
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.desktop-nav a {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    transition: var(--transition);
}
.desktop-nav a:hover { background: var(--green-pale); color: var(--green); }

/* Burger */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--green-dark);
    cursor: pointer;
    padding: 6px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 12px 24px 20px;
    border-top: 1px solid var(--green-pale);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 12px 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid var(--green-pale);
    transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green); }

/* ===========================================================
   SLIDER
   =========================================================== */
.slider-section {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    margin-top: 96px;
}
.slider { height: 100%; }

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active { opacity: 1; pointer-events: auto; }

/* Overlay sombre sur les photos pour lisibilité du texte */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.30) 50%,
        rgba(0,0,0,0.60) 100%
    );
    z-index: 0;
}
.slide-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 24px;
    color: var(--white);
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.slide-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.slide-content .highlight {
    display: inline;
    background: rgba(255,255,255,0.15);
    padding: 2px 10px;
    border-radius: 6px;
}
.slide-content p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* Slider controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,0.35); }
.prev { left: 24px; }
.next { right: 24px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--white); transform: scale(1.3); }

/* ===========================================================
   BEST SELLER
   =========================================================== */
.best-seller-section {
    padding: 96px 0 112px;
    background: var(--bg);
}
.bestseller-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Photo corbeille */
.bestseller-visual { display: flex; flex-direction: column; align-items: center; }
.corbeille-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.corbeille-photo {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.badge-bestseller {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(27,67,50,0.35);
}

/* Info texte */
.label-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.bestseller-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--green-dark);
}
.bestseller-info h2 span { color: var(--green-mid); }
.bestseller-info > p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.8;
}
.check-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.check-list li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

.cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.dispo-note {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===========================================================
   BLOGS
   =========================================================== */
.blog-section { padding: 96px 0; background: var(--white); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }

/* Photo réelle dans chaque blog card */
.blog-img {
    height: 210px;
    overflow: hidden;
    background: var(--green-pale);
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-body { padding: 24px; }
.blog-cat {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.blog-body h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--green-dark);
}
.blog-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}
.blog-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-tags span {
    background: var(--green-pale);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-dark);
}

/* ===========================================================
   AVIS CLIENTS GOOGLE
   =========================================================== */
.reviews-section { padding: 96px 0; background: var(--bg); }

/* Note globale */
.global-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.global-score {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
}
.global-stars { display: flex; gap: 4px; }
.global-stars i { color: #f4b400; font-size: 1.4rem; }
.global-count { font-size: 0.85rem; color: var(--text-light); }

/* Grille avis */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Card avis */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Header de la card */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.reviewer-info { flex: 1; line-height: 1.3; }
.reviewer-info strong { display: block; font-size: 0.92rem; color: var(--text); }
.reviewer-info span { font-size: 0.78rem; color: var(--text-light); }
.google-logo { height: 18px; width: auto; margin-left: auto; flex-shrink: 0; }

/* Étoiles */
.review-stars { display: flex; gap: 3px; }
.review-stars i { color: #f4b400; font-size: 0.95rem; }

/* Texte */
.review-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

/* CTA */
.reviews-cta { display: flex; justify-content: center; }

/* 6 avis : grille 3x2 parfaite, rien à forcer */

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid .review-card:nth-child(4) { grid-column: auto; }
    .reviews-grid .review-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 560px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   CONTACT / RÉSEAUX
   =========================================================== */
.contact-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
}
.contact-section .section-header { margin-bottom: 40px; }
.motivation-p {
    color: rgba(255,255,255,0.9);
    max-width: 640px;
    margin: 0 auto 18px;
    font-size: 0.97rem;
    line-height: 1.8;
    text-align: center;
}
.motivation-p strong { color: var(--white); }
.contact-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ===========================================================
   OÙ ON SE TROUVE
   =========================================================== */
.location-section { padding: 96px 0; background: var(--bg); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Video placeholder */
.location-video {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 360px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-align: center;
    padding: 32px;
}
.play-icon { font-size: 4rem; opacity: 0.6; }
.video-placeholder p { font-size: 1rem; font-weight: 600; }
.video-placeholder small { opacity: 0.55; font-size: 0.82rem; }

/* Info cards */
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.info-card i { font-size: 1.2rem; color: var(--green); margin-top: 2px; flex-shrink: 0; }
.info-card strong { display: block; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; }
.info-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===========================================================
   NEWSLETTER
   =========================================================== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.newsletter-txt { color: var(--white); }
.newsletter-txt i { font-size: 2.5rem; margin-bottom: 16px; display: block; opacity: 0.8; }
.newsletter-txt h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 12px; }
.newsletter-txt p { font-size: 0.97rem; opacity: 0.9; line-height: 1.75; }

.nl-input-row { display: flex; gap: 12px; margin-bottom: 12px; }
.nl-input-row input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nl-input-row input::placeholder { color: #aaa; }
.nl-note { color: rgba(255,255,255,0.75); font-size: 0.8rem; }

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name,
.footer-brand .logo-sub { color: var(--white); }
.footer-brand .logo-sub { opacity: 0.75; }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.9rem; opacity: 0.7; transition: opacity var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--green-pale); }

.footer-social-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.s-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    width: fit-content;
}
.s-btn.fb { background: #1877f2; color: var(--white); }
.s-btn.fb:hover { background: #0d65d9; }
.s-btn.wa { background: var(--green-mid); color: var(--white); }
.s-btn.wa:hover { background: var(--green-light); }

.footer-addr { font-size: 0.85rem; opacity: 0.65; display: flex; align-items: center; gap: 8px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    opacity: 0.6;
}

/* ===========================================================
   RESPONSIVE — TABLETTE (≤ 900px)
   =========================================================== */
@media (max-width: 900px) {

    /* Sections — padding réduit */
    .best-seller-section,
    .blog-section,
    .reviews-section,
    .contact-section,
    .location-section { padding: 64px 0; }
    .newsletter-section { padding: 56px 0; }

    /* Grilles → 1 colonne */
    .bestseller-wrap      { grid-template-columns: 1fr; gap: 40px; }
    .bestseller-visual    { order: -1; }
    .blog-grid            { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid         { grid-template-columns: repeat(2, 1fr); }
    .location-grid        { grid-template-columns: 1fr; gap: 28px; }
    .newsletter-inner     { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-top           { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom        { flex-direction: column; text-align: center; gap: 6px; }

    /* Best seller image */
    .corbeille-photo      { height: 380px; }
    .corbeille-photo-wrap { max-width: 100%; }

    /* Newsletter form centré */
    .nl-input-row         { justify-content: center; }
    .newsletter-txt i     { display: none; }

    /* Reviews — 5ème et 6ème en auto */
    .reviews-grid .review-card:nth-child(5),
    .reviews-grid .review-card:nth-child(6) { grid-column: auto; }

    /* Footer */
    .footer-brand p       { max-width: 100%; }
    .footer-social-links  { flex-direction: row; flex-wrap: wrap; }
}

/* ===========================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =========================================================== */
@media (max-width: 768px) {

    /* Container */
    .container { padding: 0 16px; }

    /* Header */
    .desktop-nav  { display: none; }
    .burger       { display: block; }
    .logo-img     { height: 68px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15)); }
    .logo-name    { font-size: 0.95rem; }
    .logo-sub     { font-size: 0.67rem; }
    .header-inner { padding-top: 10px; padding-bottom: 10px; }

    /* Slider */
    .slider-section   { margin-top: 76px; height: 88vh; min-height: 480px; }
    .slide-badge      { font-size: 0.78rem; padding: 5px 14px; }
    .slide-content h1 { font-size: 1.7rem; line-height: 1.2; margin-bottom: 14px; }
    .slide-content p  { font-size: 0.88rem; margin-bottom: 22px; }
    .btn-white        { padding: 12px 22px; font-size: 0.88rem; }
    .prev             { left: 10px; width: 42px; height: 42px; font-size: 0.95rem; }
    .next             { right: 10px; width: 42px; height: 42px; font-size: 0.95rem; }

    /* Best seller */
    .best-seller-section  { padding: 52px 0 72px; }
    .bestseller-info h2   { font-size: 1.6rem; }
    .corbeille-photo      { height: 300px; }
    .badge-bestseller     { font-size: 0.88rem; padding: 10px 22px; }
    .cta-row              { flex-direction: column; align-items: stretch; gap: 14px; }
    .btn-commander        { justify-content: center; padding: 14px 24px; }
    .dispo-note           { justify-content: center; }

    /* Blogs */
    .blog-section   { padding: 52px 0; }
    .blog-grid      { grid-template-columns: 1fr; gap: 20px; }
    .blog-img       { height: 200px; }
    .blog-body      { padding: 18px; }
    .blog-body h3   { font-size: 0.98rem; }

    /* Avis */
    .reviews-section  { padding: 52px 0; }
    .reviews-grid     { grid-template-columns: 1fr; gap: 16px; }
    .global-score     { font-size: 2.2rem; }
    .review-card      { padding: 18px; }

    /* Contact */
    .contact-section  { padding: 52px 0; }
    .contact-btns     { flex-direction: column; align-items: stretch; gap: 14px; padding: 0 8px; }
    .btn-phone,
    .btn-facebook     { justify-content: center; }
    .motivation-p     { font-size: 0.9rem; }

    /* Localisation */
    .location-section { padding: 52px 0; }
    .location-video   { min-height: 240px; border-radius: var(--radius); }

    /* Newsletter */
    .newsletter-section  { padding: 48px 0; }
    .newsletter-txt h2   { font-size: 1.3rem; }
    .newsletter-txt p    { font-size: 0.88rem; }
    .nl-input-row        { flex-direction: column; gap: 10px; }
    .nl-input-row input  { border-radius: 50px; text-align: center; }
    .nl-input-row .btn   { justify-content: center; border-radius: 50px; }

    /* Footer */
    footer              { padding: 44px 0 0; }
    .footer-top         { gap: 24px; padding-bottom: 32px; }
    .footer-col h4      { margin-bottom: 12px; }
    .footer-social-links { flex-direction: column; }
    .s-btn              { width: 100%; justify-content: center; }

    /* Section headers */
    .section-header     { margin-bottom: 36px; }
    .section-header h2  { font-size: 1.5rem; }
    .section-header p   { font-size: 0.88rem; }
}

/* ===========================================================
   RESPONSIVE — PETIT MOBILE (≤ 420px)
   =========================================================== */
@media (max-width: 420px) {

    .slider-section   { height: 92vh; }
    .slide-content h1 { font-size: 1.45rem; }
    .slide-content p  { display: none; }

    .corbeille-photo  { height: 260px; }
    .blog-img         { height: 170px; }

    .logo-img  { height: 60px; }
    .logo-name { font-size: 0.88rem; }
    .logo-sub  { display: none; }

    .btn          { font-size: 0.88rem; padding: 12px 18px; }
    .btn-commander { padding: 13px 20px; }

    .review-text  { font-size: 0.82rem; }

    .footer-bottom { font-size: 0.75rem; }
}
