/* ================================================
   GARDENKER.FR - STYLES AMÉLIORÉS V2.0
   Noir (#1a1a1a) | Rose Pâle (#E8B4C8) | Vert Sapin (#2F5233)
   + Barre recherche + Logo grand + Menu mobile
   ================================================ */

/* VARIABLES COULEURS */
:root {
    --noir: #1a1a1a;
    --rose-pale: #E8B4C8;
    --vert-sapin: #2F5233;
    --blanc: #FFFFFF;
    --gris-light: #f5f5f5;
    --gris-medium: #e0e0e0;
    --text-dark: #333333;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--blanc);
}

/* ================================================
   MENU FIXE AMÉLIORÉ
   ================================================ */
.menu-fixe {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--noir);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: visible;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    min-height: 70px;
    gap: 20px;
    overflow: visible;
}

.menu-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* BARRE DE RECHERCHE (NOUVELLE) */
/* ===== RECHERCHE — LOUPE DISCRÈTE ===== */
.menu-search {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 0;
    overflow: visible;
}

/* Bouton loupe */
.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: var(--blanc);
    flex-shrink: 0;
}
.search-toggle-btn:hover {
    background: var(--rose-pale);
    color: var(--noir);
}
.search-toggle-btn:hover svg {
    stroke: var(--noir);
}
.search-toggle-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

/* Barre qui se déploie */
.search-expand-wrap {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 340px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    border: 1px solid rgba(232,180,200,0.3);
    overflow: visible;
    display: none;
    z-index: 2000;
    animation: searchFadeIn 0.2s ease;
}
.search-expand-wrap.open {
    display: block;
}
@keyframes searchFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-expand-inner {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.search-expand-inner svg {
    width: 17px; height: 17px;
    stroke: #aaa; fill: none;
    stroke-width: 2.2; stroke-linecap: round;
    flex-shrink: 0;
}

.menu-search input {
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1a1a1a;
    background: transparent;
    width: 100%;
    padding: 0;
}
.menu-search input::placeholder { color: #bbb; }

/* Résultats */
.search-results {
    max-height: 380px;
    overflow-y: auto;
    display: none;
}
.search-results.active {
    display: block;
}
.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: #1a1a1a;
}
.search-result-item:hover {
    background: #f8f8f8;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    background: #f0f0f0;
    margin-top: 1px;
}
.search-result-icon.guide   { background: #f0f7f1; }
.search-result-icon.outil   { background: #f0f4ff; }
.search-result-icon.produit { background: #fdf0f5; }
.search-result-icon.blog    { background: #fff8f0; }
.search-result-icon.page    { background: #f8f8f8; }
.search-result-item strong  { font-size: 0.97rem; color: #1a1a1a; display: block; margin-bottom: 2px; }
.search-result-item small   { font-size: 0.8rem; color: #aaa; }

/* BOUTON HAMBURGER MOBILE (NOUVEAU) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--blanc);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.menu-link {
    color: var(--blanc);
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-link:hover {
    background-color: var(--rose-pale);
    color: var(--noir);
    transform: translateY(-2px);
}

.menu-link:focus {
    outline: 3px solid var(--rose-pale);
    outline-offset: 2px;
}

.menu-link.active {
    color: var(--vert-sapin);
    background-color: var(--rose-pale);
}

.menu-link.boutique {
    background-color: var(--vert-sapin);
    color: var(--blanc);
    font-weight: bold;
}

.menu-link.boutique:hover {
    background-color: #1f3a23;
}

/* BADGE COMPTEUR PANIER (NOUVEAU) */
.badge-panier {
    background: var(--rose-pale);
    color: var(--noir);
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 1.05rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-panier.pulse {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Responsive menu */
@media (max-width: 1024px) {
    .menu-search {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-search {
        order: 3;
        max-width: 100%;
        margin-top: 10px;
    }
    
    .menu-container {
        flex-wrap: wrap;
    }

    .menu-items {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--noir);
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .menu-items.active {
        max-height: 500px;
        opacity: 1;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .menu-link {
        width: 100%;
        padding: 12px 20px;
        border-radius: 0;
    }
}

/* ================================================
   BANNEAU EXPÉDITION
   ================================================ */
.banneau-expedition {
    margin-top: 70px;
    background-color: var(--vert-sapin);
    color: var(--blanc);
    text-align: center;
    padding: 12px 20px;
    font-size: 1.05rem;
    font-weight: 500;
}

.banneau-expedition p {
    margin: 0;
}

/* ================================================
   BREADCRUMBS (NOUVEAU)
   ================================================ */
.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: var(--gris-light);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1.05rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "→";
    margin-left: 10px;
    color: var(--gris-medium);
}

.breadcrumbs a {
    color: var(--vert-sapin);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--rose-pale);
    text-decoration: underline;
}

/* ================================================
   HERO SECTION - LOGO BEAUCOUP PLUS GRAND
   ================================================ */
.hero {
    background: linear-gradient(135deg, var(--noir) 0%, #2a2a2a 100%);
    color: var(--blanc);
    padding: 100px 20px;
    text-align: center;
    margin-top: 0;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo-img {
    max-width: 600px;
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.2s ease;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: var(--rose-pale);
    font-weight: 500;
    animation: fadeIn 1.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.6s ease;
}

/* ================================================
   BOUTONS
   ================================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn:focus {
    outline: 3px solid var(--rose-pale);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--vert-sapin);
    color: var(--blanc);
}

.btn-primary:hover {
    background-color: #1f3a23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 82, 51, 0.3);
}

.btn-secondary {
    background-color: var(--rose-pale);
    color: var(--noir);
}

.btn-secondary:hover {
    background-color: #d99aae;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 180, 200, 0.3);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--blanc);
    border: 2px solid var(--rose-pale);
}

.btn-tertiary:hover {
    background-color: var(--rose-pale);
    color: var(--noir);
}

.btn-small {
    padding: 8px 20px;
    font-size: 1.05rem;
    display: inline-block;
    color: var(--vert-sapin);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-small:hover {
    color: var(--noir);
    transform: translateX(5px);
}

/* ================================================
   SECTIONS GÉNÉRALES
   ================================================ */
section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.7rem;
    margin-bottom: 15px;
    color: var(--noir);
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

/* ================================================
   SECTION BOUTIQUE
   ================================================ */
.section-boutique-avant {
    background-color: var(--gris-light);
}

.produits-phares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.produit-card {
    background-color: var(--blanc);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--rose-pale);
}

.produit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.produit-image {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.produit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--noir);
}

.produit-prix {
    font-size: 2.4rem;
    color: var(--vert-sapin);
    font-weight: 700;
    margin-bottom: 10px;
}

.produit-desc {
    color: #666;
    margin-bottom: 20px;
    min-height: 50px;
}

.produit-badges {
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 600;
}

.badge.stock {
    background-color: #d4edda;
    color: #155724;
}

/* ================================================
   SECTION GUIDES
   ================================================ */
.section-guides {
    background-color: var(--blanc);
}

.guides-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guide-card {
    background-color: var(--gris-light);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--vert-sapin);
}

.guide-card:hover {
    background-color: var(--blanc);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.guide-icon {
    font-size: 2.7rem;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--noir);
}

.guide-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.lien-guide {
    color: var(--vert-sapin);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lien-guide:hover {
    color: var(--rose-pale);
}

/* ================================================
   SECTION OUTILS
   ================================================ */
.section-outils {
    background-color: var(--gris-light);
}

.outils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.outil-card {
    background-color: var(--blanc);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--vert-sapin);
}

.outil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.outil-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--noir);
}

.outil-card p {
    color: #666;
    margin-bottom: 20px;
}

/* ================================================
   SECTION BLOG
   ================================================ */
.section-blog {
    background-color: var(--blanc);
}

.articles-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-preview {
    background-color: var(--gris-light);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--rose-pale);
}

.article-preview:hover {
    background-color: var(--blanc);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.article-preview h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--noir);
}

.article-date {
    color: var(--vert-sapin);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.article-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.lien-article {
    color: var(--vert-sapin);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lien-article:hover {
    color: var(--rose-pale);
}

/* ================================================
   SECTION FAQ
   ================================================ */
.section-faq {
    background-color: var(--gris-light);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--blanc);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
    cursor: pointer;
    padding: 20px;
    background-color: var(--blanc);
    font-weight: 600;
    color: var(--noir);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary:hover {
    background-color: var(--gris-light);
    color: var(--vert-sapin);
}

.faq-item summary:focus {
    outline: 3px solid var(--rose-pale);
    outline-offset: -3px;
}

.faq-item[open] summary {
    background-color: var(--rose-pale);
    color: var(--noir);
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.6;
}

.faq-content p {
    margin: 0;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--rose-pale);
    font-size: 1.15rem;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--rose-pale);
}

.footer-col a:focus {
    outline: 2px solid var(--rose-pale);
    outline-offset: 2px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-logo-img {
        max-width: 500px;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 15px;
    }

    .hero {
        padding: 60px 15px;
    }
    
    .hero-logo-img {
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1.05rem;
    }

    .produits-phares,
    .guides-cards,
    .outils-grid,
    .articles-preview {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ================================================
   UTILITAIRES
   ================================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Lazy loading images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gris-light);
}

::-webkit-scrollbar-thumb {
    background: var(--vert-sapin);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose-pale);
}

/* Accessibilité - Skip to content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--vert-sapin);
    color: var(--blanc);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
/* ================================================
   HERO AMÉLIORÉ - STYLES ADDITIONNELS
   À ajouter à la fin de votre style.css existant
   ================================================ */

/* Devise mise en avant */
.hero-devise {
    font-size: 1.4rem;
    color: var(--rose-pale);
    font-style: italic;
    font-weight: 600;
    margin: 30px auto;
    padding: 20px 30px;
    background: rgba(232, 180, 200, 0.15);
    border-left: 5px solid var(--rose-pale);
    border-radius: 8px;
    max-width: 700px;
    box-shadow: 0 4px 15px rgba(232, 180, 200, 0.2);
}

/* Section animaux */
.hero-animaux {
    margin: 40px 0;
    text-align: center;
}

.animaux-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.animaux-img:hover {
    transform: scale(1.02);
}

.animaux-message {
    font-size: 1.35rem;
    color: var(--vert-sapin);
    font-weight: 700;
    margin: 20px 0;
    padding: 15px;
    background: rgba(47, 82, 51, 0.08);
    border-radius: 10px;
    max-width: 700px;
    margin: 20px auto;
}

.animaux-message strong {
    color: var(--vert-sapin);
}

/* Valeurs */
.hero-valeurs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    font-size: 1.05rem;
}

.hero-valeurs span {
    background: rgba(47, 82, 51, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--vert-sapin);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-valeurs span:hover {
    background: var(--vert-sapin);
    color: var(--blanc);
    transform: translateY(-3px);
    border-color: var(--vert-sapin);
    box-shadow: 0 5px 15px rgba(47, 82, 51, 0.3);
}

/* Emphases dans le subtitle */
.hero-subtitle strong {
    color: var(--rose-pale);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--rose-pale);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.hero-subtitle em {
    color: var(--vert-sapin);
    font-style: normal;
    font-weight: 700;
    background: rgba(47, 82, 51, 0.1);
    padding: 2px 8px;
    border-radius: 5px;
}

/* Amélioration hero h1 */


/* Responsive */
@media (max-width: 768px) {
    .hero-devise {
        font-size: 1.15rem;
        padding: 15px 20px;
    }
    
    .animaux-img {
        border-radius: 10px;
    }
    
    .animaux-message {
        font-size: 1.15rem;
        padding: 12px;
    }
    
    .hero-valeurs {
        gap: 10px;
    }
    
    .hero-valeurs span {
        padding: 10px 18px;
        font-size: 1.05rem;
    }
    
    
}




.menu-link:hover 

.menu-link.active 

/* Ajustement pour mobile */
@media (max-width: 768px) {
    
}







    
    .hero-text {
        text-align: center;
    }
}





/* ============================================
   HERO AVEC ICÔNE À GAUCHE - VERSION CORRECTE
   ============================================ */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-with-icon {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.hero-icon-left {
    width: 80px !important;
    height: 80px !important;
    border: 2px solid #FFB6C1;
    border-radius: 8px;
    padding: 6px;
    background: white;
    flex-shrink: 0;
    object-fit: cover;
}

.hero-text {
    text-align: left;
    flex: 1;
}

.hero-text h1 {
    margin: 0 0 8px 0;
    color: white;
}

.hero-text .hero-subtitle {
    margin: 0;
    color: white;
}

@media (max-width: 768px) {
    .hero-with-icon {
        flex-direction: row;
        gap: 15px;
    }
    
    .hero-icon-left {
        width: 60px !important;
        height: 60px !important;
    }
}

/* ============================================
   LOGO GK3 INLINE - VRAIMENT PETIT
   ============================================ */


/* ============================================
   PANIER AVEC BROUETTE - TOUJOURS VISIBLE
   ============================================ */
.badge-panier {
    background: #FF1493;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 1.05rem;
    font-weight: bold;
    margin-left: 5px;
    min-width: 18px;
    text-align: center;
    display: inline-block;
}

.panier-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

/* ============================================
   TITRE HERO BLANC - FORCÉ
   ============================================ */
.hero-title-split,
.hero-title-split span,
.hero h1,
.hero-text h1 {
    color: #ffffff !important;
}


/* ============================================
   TITRE HERO EN BLANC - FIX DÉFINITIF
   ============================================ */
.hero-title-split {
    font-family: 'Chau Philomene One', sans-serif !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
}

.hero-title-split span {
    display: block;
    font-family: 'Chau Philomene One', sans-serif !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* OVERRIDE hero-ameliore pour le titre blanc */
.hero-ameliore .hero-title-split,
.hero-ameliore .hero-title-split span {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
    color: #ffffff !important;
}

/* ============================================
   ICÔNES HERO À GAUCHE + CONTOUR ROSE
   ============================================ */
.hero-with-icon {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.hero-icon-left {
    width: 80px;
    height: 80px;
    border: 2px solid #FFB6C1;
    border-radius: 10px;
    padding: 6px;
    background: white;
    flex-shrink: 0;
    object-fit: cover;
}

.hero-text {
    text-align: left;
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 8px;
    color: #ffffff !important;
}

.hero-text .hero-subtitle {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .hero-with-icon {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-icon-left {
        width: 60px;
        height: 60px;
    }
    
    .hero-text {
        text-align: center;
    }
}

/* ============================================
   LOGO GARDENKER INLINE (TOUT PETIT)
   ============================================ */
.logo-gk-inline {
    width: 27px !important;
    height: 27px !important;
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;
    border-radius: 50%;
    outline: 2px solid #D4738E;
    outline-offset: 1px;
}

.footer-col h4 .logo-gk-inline {
    width: 30px !important;
    height: 30px !important;
}

/* Badge copyright */
p .logo-gk-inline {
    width: 24px !important;
    height: 24px !important;
}

/* ============================================
   PANIER BROUETTE VISIBLE
   ============================================ */
.panier-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.badge-panier {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF1493;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.menu-link.boutique {
    position: relative;
    display: inline-flex;
    align-items: center;
}


/* ================================================
   PANIER BROUETTE EN HAUT À DROITE
   ================================================ */
.menu-boutique-panier {
    display: flex;
    align-items: center;
    gap: 15px;
}

.panier-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.panier-brouette {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.panier-brouette:hover {
    transform: scale(1.1);
}

.badge-panier {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF1493;
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

/* ================================================
   TRACTEUR DANS BANNIÈRE
   ================================================ */
.emoji-tracteur {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
}

/* ================================================
   HERO AVEC ICÔNE À GAUCHE - PROPORTIONS CORRECTES
   ================================================ */
.hero-with-icon {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon-left {
    width: 80px;
    height: 80px;
    border: 2px solid #FFB6C1;
    border-radius: 10px;
    padding: 6px;
    background: white;
    flex-shrink: 0;
    object-fit: cover;
}

.hero-text {
    text-align: left;
    flex: 1;
}

@media (max-width: 768px) {
    .hero-with-icon {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-icon-left {
        width: 60px;
        height: 60px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .menu-boutique-panier {
        gap: 10px;
    }
    
    .panier-brouette {
        width: 28px;
        height: 28px;
    }
}

/* ================================================
   LOGO GK3 TOUT PETIT
   ================================================ */
.logo-gk-inline {
    width: 27px;
    height: 27px;
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;
    border-radius: 50%;
    outline: 2px solid #D4738E;
    outline-offset: 1px;
}


/* ================================================
   POLICE CHAU PHILOMENE PARTOUT
   ================================================ */
* {
    font-family: 'Chau Philomene One', sans-serif !important;
}

body {
    font-family: 'Chau Philomene One', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, p, a, li, span, div, button, input, textarea, select {
    font-family: 'Chau Philomene One', sans-serif !important;
}


/* ================================================
   BANDEAU LIVRAISON DÉFILANT
   ================================================ */
.banneau-expedition {
    background: linear-gradient(135deg, #2F5233 0%, #3a6640 100%);
    color: white;
    padding: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.banneau-scroll {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.banneau-scroll p {
    margin: 0;
    padding: 12px 20px;
    display: inline-block;
    min-width: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banneau-scroll:hover {
    animation-play-state: paused;
}


/* ================================================
   HERO ACCUEIL AVEC IMAGE DE FOND
   ================================================ */
.hero-ameliore {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.hero-ameliore .hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 15px;
    margin: 0 auto;
    max-width: 900px;
}

.hero-ameliore .hero-logo-img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
    .hero-ameliore {
        min-height: 400px;
    }
    
    .hero-ameliore .hero-content {
        padding: 20px;
    }
}


/* ================================================
   HERO ACCUEIL - POÈMES ENCADRÉS
   ================================================ */
.hero-poemes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
    max-width: 1000px;
}

.poeme-principal {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.poeme-principal p {
    color: #ffffff !important;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.poeme-esprit {
    background: rgba(255, 182, 193, 0.2);
    border: 2px solid #FFB6C1;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.poeme-esprit h3 {
    color: #FFB6C1 !important;
    font-size: 1.35rem;
    margin: 0 0 15px 0;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.poeme-esprit p {
    color: #FFD1DC !important;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.hero-message-communaute {
    max-width: 900px;
    margin: 30px auto 20px;
    text-align: left;
}

.hero-message-communaute .hero-subtitle {
    color: #ffffff !important;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.signature-anais {
    color: #FFB6C1 !important;
    font-size: 1.15rem;
    font-style: italic;
    text-align: right;
    margin: 10px 0 0 0;
    font-family: 'Chau Philomene One', sans-serif !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-poemes-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .poeme-principal,
    .poeme-esprit {
        padding: 20px;
    }
    
    .poeme-principal p,
    .poeme-esprit p {
        font-size: 1.05rem;
    }
    
    .hero-message-communaute .hero-subtitle {
        font-size: 1.05rem;
        text-align: center;
    }
    
    .signature-anais {
        text-align: center;
    }
}


/* ================================================
   POÈMES RESTRUCTURÉS - V9
   ================================================ */
.poeme-titre {
    color: #ffffff !important;
    font-size: 1.35rem;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.poeme-vers {
    color: #ffffff !important;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 4px 0;
    text-align: center;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.poeme-esprit .poeme-vers {
    color: #FFD1DC !important;
}

/* ================================================
   PHOTOS GUIDES ESSENTIELS
   ================================================ */
.guide-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.guide-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #2F5233;
}

@media (max-width: 768px) {
    .poeme-titre {
        font-size: 1.15rem;
    }
    
    .poeme-vers {
        font-size: 1.05rem;
    }
    
    .guide-icon {
        width: 70px;
        height: 70px;
    }
}


/* ================================================
   ICÔNES HERO - TAILLE FORCÉE 80PX
   ================================================ */
.hero-with-icon img,
.hero-icon-left,
img.hero-icon-left {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    border: 2px solid #FFB6C1 !important;
    border-radius: 10px !important;
    padding: 6px !important;
    background: white !important;
    flex-shrink: 0 !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .hero-with-icon img,
    .hero-icon-left,
    img.hero-icon-left {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
    }
}


/* ================================================
   HERO UNIFORMISÉ - TOUTES LES PAGES
   ================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2F5233 0%, #3a6640 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1,
.hero-text h1 {
    font-size: 2.7rem;
    margin: 0 0 15px 0;
    color: #ffffff !important;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.hero-subtitle,
.hero-text .hero-subtitle {
    font-size: 1.35rem;
    margin: 0;
    color: #ffffff !important;
    opacity: 0.95;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.hero-with-icon {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
    flex: 1;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }
    
    .hero h1,
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle,
    .hero-text .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-with-icon {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-text {
        text-align: center;
    }
}


/* ================================================
   PAGE ACCUEIL V13 - POÈME CENTRÉ
   ================================================ */
.poeme-central {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.poeme-titre-principal {
    color: #ffffff !important;
    font-size: 2.4rem;
    margin: 0 0 20px 0;
    font-family: 'Chau Philomene One', sans-serif !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.poeme-vers-container {
    margin: 20px 0;
}

.poeme-vers-moyen {
    color: #ffffff !important;
    font-size: 1.35rem;
    line-height: 1.7;
    margin: 8px 0;
    font-family: 'Chau Philomene One', sans-serif !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* L'esprit Kerier + Bouton */
.esprit-kerier-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 700px;
}

.esprit-kerier-titre {
    color: #FFB6C1 !important;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.btn-rejoindre {
    background: #FF69B4;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.15rem;
    font-family: 'Chau Philomene One', sans-serif !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-rejoindre:hover {
    background: #FF1493;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

/* Texte communauté en ROSE */
.hero-subtitle-rose {
    color: #FFB6C1 !important;
}

/* Poème rose dans le Blog */
.section-esprit-kerier {
    background: linear-gradient(135deg, #2F5233 0%, #3a6640 100%);
    padding: 60px 20px;
    margin: 0;
}

.poeme-esprit-blog {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 182, 193, 0.15);
    border: 2px solid #FFB6C1;
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.poeme-esprit-blog h2 {
    color: #FFB6C1 !important;
    font-size: 2.4rem;
    margin: 0 0 30px 0;
    font-family: 'Chau Philomene One', sans-serif !important;
}

.poeme-esprit-blog .poeme-vers {
    color: #FFD1DC !important;
    font-size: 1.35rem;
    line-height: 1.8;
    margin: 8px 0;
    font-family: 'Chau Philomene One', sans-serif !important;
}

/* Responsive */
@media (max-width: 768px) {
    .poeme-titre-principal {
        font-size: 1.6rem;
    }
    
    .poeme-vers-moyen {
        font-size: 1.15rem;
    }
    
    .esprit-kerier-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .esprit-kerier-titre {
        font-size: 1.35rem;
        text-align: center;
    }
}


/* ================================================
   PHOTOS PRODUITS BOUTIQUE
   ================================================ */
.product-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .product-photo {
        height: 180px;
    }
    
    .product-img {
        height: 180px;
    }
}


/* ================================================
   PHOTOS PRODUITS - VERSION AMÉLIORÉE
   ================================================ */
.produit-image {
    width: 100%;
    height: 200px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.produit-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image {
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.product-image .produit-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .produit-image {
        height: 180px;
    }
    
    .product-image {
        height: 200px;
    }
}


/* ================================================
   ANIMATION FILTRAGE PRODUITS
   ================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-filtres label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-filtres label:hover {
    color: #2F5233;
    padding-left: 5px;
}

.shop-filtres input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}


/* ================================================
   PHOTOS GUIDES - UNIFORMISATION
   ================================================ */
.guide-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.guide-icon img.guide-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.guide-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
    margin-bottom: 15px;
}

/* Breadcrumb retour */
.breadcrumb-retour {
    margin: 20px 0;
    padding: 10px 0;
}

.breadcrumb-retour a {
    color: #2F5233;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.breadcrumb-retour a:hover {
    color: #FFB6C1;
    padding-left: 5px;
}

/* Lien PDF */
.pdf-link {
    color: #2F5233;
    text-decoration: none;
    font-weight: bold;
}

.pdf-link:hover {
    color: #FFB6C1;
}

@media (max-width: 768px) {
    .guide-photo,
    .guide-image {
        height: 180px;
    }
}


/* ================================================
   PHOTOS GUIDES - CARRÉES COMME BOUTIQUE
   ================================================ */
.guide-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
    margin-bottom: 15px;
}

.guide-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Breadcrumb retour */
.article-breadcrumb {
    margin: 30px 0 20px 0;
}

.article-breadcrumb a {
    color: #2F5233;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.article-breadcrumb a:hover {
    color: #FFB6C1;
    padding-left: 5px;
}

/* Container article */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-meta {
    margin: 20px 0;
    color: #666;
    font-size: 1.05rem;
}

.article-content {
    margin-top: 40px;
}

.article-content .intro {
    font-size: 1.35rem;
    color: #2F5233;
    margin-bottom: 30px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .guide-image {
        height: 180px;
    }
}


/* ================================================
   PHOTOS GUIDES - CARRÉES (PAS RONDES)
   ================================================ */
.guide-icon {
    width: 100%;
    height: 200px;
    margin: 0 0 15px 0;
    display: block;
    border-radius: 12px !important;
    overflow: hidden;
    background: #f8f8f8;
    border: none !important;
}

.guide-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.guide-image {
    width: 100%;
    height: 200px;
    margin: 0 0 15px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
}

.guide-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   HERO GUIDES AVEC PHOTO DE FOND

/* ================================================
   HERO GUIDES AVEC PHOTO DE FOND - FORCÉ
   ================================================ */
.hero-guides-photo {
    background-image: url('Heroguides.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    position: relative !important;
    min-height: 400px !important;
}

.hero-guides-photo::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(47, 82, 51, 0.6) !important;
    z-index: 1 !important;
}

.hero-guides-photo .hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.hero-guides-photo h1,
.hero-guides-photo .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8) !important;
}

.hero-guides-photo .hero-icon-left {
    z-index: 2 !important;
}

/* ================================================
   ANIMATIONS AU SCROLL
   ================================================ */
.anim-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.anim-scroll:nth-child(2) { transition-delay: 0.08s; }
.anim-scroll:nth-child(3) { transition-delay: 0.16s; }
.anim-scroll:nth-child(4) { transition-delay: 0.24s; }
.anim-scroll:nth-child(5) { transition-delay: 0.32s; }

/* Loupe dans le menu — premier item */
.menu-search-li {
    list-style: none;
    display: flex;
    align-items: center;
}
.menu-search-li .menu-search {
    margin: 0;
}

/* ================================================
   MODE GROSSE POLICE — Accessibilité malvoyants
   ================================================ */
body.large-text {
    font-size: 19px;
}
body.large-text p,
body.large-text li,
body.large-text td,
body.large-text label,
body.large-text input,
body.large-text textarea,
body.large-text select,
body.large-text .article-preview p,
body.large-text .guide-card p,
body.large-text .temoignage-texte,
body.large-text .anecdote-texte {
    font-size: 1.2em;
    line-height: 1.9;
}
body.large-text h1 { font-size: 3rem; }
body.large-text h2 { font-size: 2.6rem; }
body.large-text h3 { font-size: 2rem; }
body.large-text .menu-link { font-size: 1.1rem; }
body.large-text .btn,
body.large-text button { font-size: 1.1rem; padding: 14px 24px; }

/* Bouton toggle accessibilité */
.a11y-toggle {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 8px;
    padding: 4px 9px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    letter-spacing: 0.02em;
}
.a11y-toggle:hover {
    background: var(--rose-pale);
    color: var(--noir);
    border-color: var(--rose-pale);
}
body.large-text .a11y-toggle {
    background: var(--rose-pale);
    color: var(--noir);
    border-color: var(--rose-pale);
}
