/* =============================================================
   1. Bandeau
   ============================================================= */
:root {
    --ctaColor: #000;
    --ctaGap: 1.75rem;
    --ctaGapMobile: 1.25rem;
}

.dressing-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1rem;
    text-align: center;
}

/* --- Titre et promo --- */
.dressing-hero .dressing-title {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: #000;
}

.dressing-hero .promo-lines {
    margin: .5rem 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    text-transform: uppercase;
    color: #000;
}

/* --- CTA : texte seul, souligné par une border-bottom
       (text-decoration est écrasé par les règles .btn du thème) --- */
.dressing-hero .bloc-links {
    display: flex;
    justify-content: center;
    justify-content: safe center;   /* évite que le 1er CTA soit coupé au scroll */
    gap: var(--ctaGap);
    max-width: 100%;
}

.dressing-hero .bloc-links a.cta-dressing {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 0 .15em !important;

    font-family: "Montserrat", sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--ctaColor) !important;

    background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    border-bottom: 1px solid currentColor !important;

    transition: opacity .2s ease;
}

.dressing-hero .bloc-links a.cta-dressing::before,
.dressing-hero .bloc-links a.cta-dressing::after {
    content: none !important;
}

.dressing-hero .bloc-links a.cta-dressing:hover {
    opacity: .7;
}

.dressing-hero .bloc-links a.cta-dressing:focus-visible {
    outline: 2px solid var(--ctaColor) !important;
    outline-offset: 3px;
}

/* Catégorie en cours (classe posée par le script) */
.dressing-hero .bloc-links a.cta-dressing.active {
    border-bottom-width: 2px !important;
    pointer-events: none;
}

/* --- Mobile : bloc plus haut + CTA en scroll horizontal --- */
@media screen and (max-width: 1023px) {
    .dressing-hero {
        gap: 1.5rem;
        padding: 4rem 0 !important;   /* augmenter cette valeur pour agrandir le bloc */
    }

    .dressing-hero .dressing-title,
    .dressing-hero .promo-lines {
        padding: 0 1rem;
    }

    .dressing-hero .promo-lines {
        font-size: 16px;
    }

    .dressing-hero .bloc-links {
        width: 100%;
        padding: 0 1rem;
        gap: var(--ctaGapMobile);
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .dressing-hero .bloc-links::-webkit-scrollbar { display: none; }

    .dressing-hero .bloc-links a.cta-dressing {
        flex-shrink: 0;
        font-size: .83rem;
    }
}

/* Fil d'Ariane masqué sur la campagne */
.breadcrumbWrapper {
    display: none !important;
}