/* Feuille unique du site Cyber Promo */

/* --- base.css --- */
.cp-barre-recherche input,
.champ-recherche-page-marchands input,
.enveloppe-recherche-marque input {
    outline: none;
    border: none;
    width: 100%;
    background: transparent;
    box-shadow: none;
}


/* Change Bootstrap's colors */
:root {
    --primary: #06418f;
    --secondary: #428bed;
    --tertiary: #253d8c;
    --dark: #222222;
    --light: #ffffff;
}


/* TEXT */
.text-secondary {
    color: var(--secondary) !important;
}

.text-justify {
    text-align: justify !important;
}

@media screen and (min-width: 992px) {
    .text-lg-white {
        color: rgb(191, 191, 191) !important;
        transition: 0.3s !important;
    }
    .text-lg-white:hover {
        color: white !important;
    }
}


/* BORDER COLORS */
.border-primary {
    border-color: var(--primary) !important;
}

.border-none {
    border: none !important;
}

@media screen and (min-width: 992px) {
    .border-lg-none {
        border: none !important;
    }
}

/* BORDER COLORS */
.custom-border {
    transition: 0.3s !important;
}

.custom-border:hover {
    border-color: var(--primary) !important;
}


/* NAVBAR */
.navbar-brand {
    width: 180px;
}

.nav-link {
    color: var(--primary) !important;
    transition: 0.3s !important;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-toggler {
    border-color: white;
    outline: none !important;
}

.navbar-toggler {
    box-shadow: none !important;
}

.navbar-collapse {
    flex-grow: 0 !important;
}

@media screen and (min-width: 992px) {
    .px-lg-auto {
        padding: 0 12px 0 12px !important;
    }      
}


@media screen and (min-width: 992px) {
    .justify-lg-content-between {
        justify-content: space-between !important;
    }    
}

/* SECONDARY NAV */
.text-nav-secondary {
    color: #888888 !important;
    transition: 0.3s !important;
}

.text-nav-secondary:hover {
    color: black !important;
}


/* BUTTON */
.btn-primary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-border-active:hover {
    color: white !important;
}

.custom-btn {
    width: 75% !important;
}

@media screen and (min-width: 992px) {
    .custom-btn {
        width: 90% !important;
    }
}

.custom-btn:hover {
    background-color: var(--primary) !important;
}


/* IMG */
.img-footer {
    width: 8rem;
}


/* BACKGROUND */
.bg-dark {
    background-color: var(--dark) !important;
}

@media screen and (min-width: 992px) {
    .bg-lg-dark {
        background-color: var(--dark) !important;
    }
}

.bg-global {
    background-color: #F8F9F9 !important;
}


/* LINKS */
.link-underline:hover {
    text-decoration-color: var(--light) !important;
}

/* CARD */
.promo-card {
    height: auto !important;
}

@media screen and (min-width: 992px) {
    .promo-card {
        height: 10rem !important;
    }
}


/* RESEARCH */
.custom-research {
    width: 100% !important;
}

@media screen and (min-width: 992px) {
    .custom-research {
        width: 18rem !important;
    }
}

/* SCROLL TO TOP BUTTON */
.scroll {
    width: 40px !important;
    height: 40px !important;
    right: 20px !important;
    bottom: 20px !important;
    transition: 0.3s !important;
    margin-bottom: -100px !important;
}

.scroll:hover {
    transform: scale(1.1) !important;
} 

.scroll.show {
    margin-bottom: 0 !important;
}


/* ICON */
.fa-solid,
.fas {
    display: inline-block;
    min-width: 1em;
    line-height: 1;
    text-align: center;
    vertical-align: -0.125em;
}

.fa-magnifying-glass {
    transition: 0.3s !important;
}

.fa-magnifying-glass:hover {
    background-color: var(--tertiary) !important;
}
/* --- home.css --- */
/* IMG */
.img-carousel {
    width: 13rem !important;
    transition: 0.3s !important;
}

.img-carousel:hover {
    border-color: black !important;
}



/* CAROUSEL */
.carousel-container {
    overflow: hidden;
}

.img-carousel {
    width: 208px;
    height: 104px;
}

.promo-carousel::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

.promo-carousel {
    transition: transform 0.5s ease-in-out;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.item {
    flex: 0 0 calc(100%/2); 
    scroll-snap-align: start;
}

@media screen and (min-width: 768px) {
    .item {
        flex: 0 0 calc(100%/3); /* 20% pour 5 éléments visibles à la fois */
        scroll-snap-align: start;
    }
}

@media screen and (min-width: 992px) {
    .item {
        flex: 0 0 calc(100%/5); /* 20% pour 5 éléments visibles à la fois */
        scroll-snap-align: start;
    }
}
  
.prev-button,
.next-button {
    transform: translateY(-50%);
    color: rgb(191, 191, 191) !important;
    transition: 0.3s !important;
}

.prev-button:hover,
.next-button:hover {
    color: black !important;
}

.carousel-link {
    text-decoration: none !important;
}


/* CATEGORY */
@media screen and (min-width: 768px) {
    .page-accueil .flex-column-reverse {
        flex-direction: row !important;
    }
}


/* BUTTON : 55 % entre tablette et desktop, 90 % dès 992 px (base.css) */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .page-accueil .custom-btn {
        width: 55% !important;
    }
}
/* --- promo.css --- */
/* BUTTON : 50 % entre tablette et desktop, 90 % dès 992 px (base.css) */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .page-promo .custom-btn {
        width: 50% !important;
    }
}

.clip-btn {
    width: 100% !important;
}

@media screen and (min-width: 992px) {
    .clip-btn {
        width: 90% !important;
    }

    .trigger-btn-clip {
        border: none !important;
    }

    .trigger-btn-clip .rounded-end{
        border-radius: 0.375rem !important;
        width: 60% !important;
    }

    .trigger-promo {
        border: solid 1px var(--primary) !important;
        border-radius: 0.375rem !important;
    }
}


/* MODAL */
.modal-header {
    border: none !important;
    padding-bottom: 0 !important;
}

.modal-body {
    padding-top: 0.5rem;
}

.btn-close {
    box-shadow: none !important;
}


/* IMG : logo de la modale uniquement */
.modal .custom-img {
    width: 20rem !important;
    max-width: 100%;
    object-fit: contain;
}

/* Cartes "autres codes promo" (maquette 2023) */
#similar-companies .carte-similaire {
    width: 20rem;
    max-width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

#similar-companies .carte-similaire-visuel {
    width: 100%;
    height: 10rem;
    background-color: #ffffff;
}

#similar-companies .carte-similaire-visuel img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 1rem;
}


/* BACKGROUND */
.bg-custom {
    background-color: var(--tertiary) !important;
}


/* PROMO CARD */
.company-card {
    max-width: 18rem !important;
}

/* --- shops.css --- */
.page-marchands {
    background-color: #f5f7fb !important;
}

.page-marchands-contenu {
    overflow: hidden;
}

.hero-marchands {
    padding: 1.5rem 0 1.25rem;
}

.hero-marchands-panneau {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    padding: 2.4rem 1.25rem 3.1rem;
    text-align: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(66, 139, 237, 0.16), transparent 28%),
        radial-gradient(circle at 88% 30%, rgba(6, 65, 143, 0.1), transparent 24%),
        linear-gradient(180deg, #eaf3ff 0%, #f4f8ff 100%);
}

.hero-marchands-panneau h1 {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1c2330;
    margin-bottom: 0.7rem;
}

.hero-marchands-panneau h1 span {
    color: var(--primary);
}

.hero-marchands-panneau p {
    max-width: 34rem;
    margin: 0 auto;
    color: #5b6573;
    font-size: 1.05rem;
}

.barre-recherche-marchands {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 0.85rem;
    box-shadow: 0 0.9rem 2.2rem rgba(28, 35, 48, 0.1);
    margin: -2.1rem 0.5rem 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-marchands {
        padding: 2rem 0 1.5rem;
    }

    .hero-marchands-panneau {
        padding: 2.8rem 2.5rem 3.4rem;
    }

    .barre-recherche-marchands {
        flex-direction: row;
        align-items: stretch;
        padding: 0.7rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

.champ-recherche-page-marchands {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.35rem 0.85rem;
}

.champ-recherche-page-marchands i {
    color: #8b93a0;
}

.page-marchands .champ-recherche-page-marchands input {
    width: 100% !important;
    border: 0 !important;
    background: transparent;
    font-size: 0.98rem;
    color: #1c2330;
    padding: 0.35rem 0;
    box-shadow: none;
}

.champ-tri-marchands {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 16rem;
    padding: 0.2rem 0.35rem 0.2rem 0.85rem;
}

@media (min-width: 768px) {
    .champ-tri-marchands {
        border-left: 1px solid #e6ebf2;
    }
}

.champ-tri-marchands label {
    font-size: 0.78rem;
    color: #7b8491;
    margin-bottom: 0.1rem;
}

.page-marchands .champ-tri-marchands select {
    width: 100% !important;
    border: 0 !important;
    background-color: transparent;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237b8491' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    padding: 0.2rem 1.5rem 0.2rem 0 !important;
    font-size: 0.98rem;
    color: #1c2330;
    cursor: pointer;
}

.section-contenu-marchands {
    padding: 1.75rem 0 2.75rem;
}

.grille-page-marchands {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .grille-page-marchands {
        grid-template-columns: 13.5rem 1fr;
        gap: 1.6rem;
        align-items: start;
    }
}

.sommaire-lettres-marchands {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 1.15rem;
    padding: 1.15rem 1rem;
    box-shadow: 0 0.35rem 1rem rgba(28, 35, 48, 0.04);
}

@media (min-width: 992px) {
    .sommaire-lettres-marchands {
        position: sticky;
        top: 1rem;
    }
}

.sommaire-lettres-marchands h2 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1c2330;
    margin-bottom: 0.85rem;
}

#liste-lettres-sommaire {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

@media (min-width: 992px) {
    #liste-lettres-sommaire {
        display: block;
        overflow: visible;
        padding-bottom: 0;
    }
}

.lien-lettre-marchand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    text-decoration: none;
    color: #1c2330;
    padding: 0.28rem 0;
    min-width: 3.6rem;
}

.badge-lettre {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3fb;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
}

.lien-lettre-marchand.est-actif .badge-lettre,
.lien-lettre-marchand:hover .badge-lettre {
    background: var(--primary);
    color: #fff;
}

.compte-lettre {
    color: #8b93a0;
    font-size: 0.82rem;
}

.colonne-liste-marchands {
    min-width: 0;
}

.bloc-boutiques-jour {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 1.15rem;
    padding: 1.2rem 1.25rem 1.35rem;
    box-shadow: 0 0.35rem 1rem rgba(28, 35, 48, 0.04);
    margin-bottom: 1.25rem;
}

.bloc-boutiques-jour h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bloc-boutiques-jour h2 i {
    color: var(--secondary);
    font-size: 0.95rem;
}

.grille-boutiques-jour {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .grille-boutiques-jour {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .grille-boutiques-jour {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.9rem;
    }
}

.carte-boutique-jour {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.4rem;
    padding: 0.85rem 0.9rem;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 0.9rem;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carte-boutique-jour:hover {
    border-color: #c5d5ea;
    box-shadow: 0 0.7rem 1.4rem rgba(28, 35, 48, 0.07);
    transform: translateY(-2px);
}

.carte-boutique-jour img {
    max-width: 100%;
    max-height: 3.1rem;
    object-fit: contain;
}

#liste-groupes-lettres {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 1.15rem;
    padding: 0.35rem 1.15rem;
    box-shadow: 0 0.35rem 1rem rgba(28, 35, 48, 0.04);
}

.groupe-lettre-marchands {
    display: grid;
    grid-template-columns: 2.4rem 1fr auto;
    gap: 0.7rem 1.1rem;
    align-items: center;
    padding: 1.05rem 0.1rem;
    border-bottom: 1px solid #eef2f7;
    scroll-margin-top: 1rem;
}

.groupe-lettre-marchands:last-child {
    border-bottom: 0;
}

.lettre-groupe {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.liste-noms-lettre {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.liste-noms-lettre a {
    color: #1c2330;
    text-decoration: none;
    font-size: 0.98rem;
}

.liste-noms-lettre a:hover {
    color: var(--primary);
}

.bouton-accordeon-lettre {
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    color: #8b93a0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bouton-accordeon-lettre i {
    transition: transform 0.2s ease;
}

.groupe-lettre-marchands:not(.est-ouvert) .liste-noms-lettre {
    display: none;
}

.groupe-lettre-marchands:not(.est-ouvert) .bouton-accordeon-lettre i {
    transform: rotate(-90deg);
}
/* --- blog.css --- */
/* IMAGES */
.img-blog {
    width: 100% !important;
    height: 10em !important;
    object-fit: cover !important;
}

@media screen and (min-width: 768px) {
    .img-blog {
        height: 15em !important;
    }
}

@media screen and (min-width: 992px) {
    .img-blog {
        height: 19em !important;
    }
}

.container-avatar {
    height: 50px !important; 
}

.img-avatar {
    width: 50px !important;
    height: 100% !important;
    object-fit: contain !important;
}

.img-pub {
    height: 10em !important;
    object-fit: cover !important;
}

@media screen and (min-width: 768px) {
    .img-pub {
        height: 15em !important;
    }
}

@media screen and (min-width: 992px) {
    .img-pub {
        height: 15em !important;
    }
}

/* BUTTON */
.btn-blog {
    transition: 0.3s !important;
    width: 8em !important;
}

.btn-blog:hover {
    background-color: var(--primary) !important;
}

/* LINK */
.blog-link {
    transition: 0.3s !important;
}

.blog-link:hover {
    color: var(--primary) !important;
}


/* NAVIGATION */
.blog-nav-container {
    width: 20em !important;
}

.blog-nav:hover {
    transition: 0.3s !important;
}

.blog-nav:hover {
    background-color: rgba(128, 128, 128, 0.087) !important;
}

/* SINGLE POST */
.img-single {
    height: 15em !important;
}

@media screen and (min-width: 992px) {
    .img-single {
        height: 25em !important;
    }
}
/* --- category.css --- */
.page-categories {
    background-color: #f5f7fb !important;
}

.page-categories-contenu {
    overflow: hidden;
}

.hero-categories {
    position: relative;
    padding: 1.5rem 0 1.25rem;
}

.hero-categories-panneau {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    padding: 2rem 1.25rem 2.75rem;
    background:
        radial-gradient(circle at 88% 22%, rgba(66, 139, 237, 0.2), transparent 26%),
        linear-gradient(180deg, #eaf3ff 0%, #f4f8ff 100%);
}

.hero-categories-grille {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .hero-categories {
        padding: 2rem 0 1.5rem;
    }

    .hero-categories-panneau {
        padding: 2.75rem 2.5rem 3.25rem;
    }

    .hero-categories-grille {
        grid-template-columns: 1.15fr 0.85fr;
        min-height: 14rem;
    }
}

.hero-categories-texte h1 {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1c2330;
    margin-bottom: 0.85rem;
}

.hero-categories-texte h1 span {
    color: var(--primary);
}

.hero-categories-texte p {
    max-width: 34rem;
    color: #5b6573;
    font-size: 1.05rem;
}

.illustration-hero-categories {
    position: relative;
    min-height: 12rem;
    display: none;
}

@media (min-width: 992px) {
    .illustration-hero-categories {
        display: block;
    }
}

.illustration-hero-categories .bulle {
    position: absolute;
    border-radius: 50%;
    background: rgba(6, 65, 143, 0.12);
}

.bulle-1 { width: 4.5rem; height: 4.5rem; top: 8%; right: 18%; }
.bulle-2 { width: 2.2rem; height: 2.2rem; top: 22%; right: 6%; background: rgba(66, 139, 237, 0.25); }
.bulle-3 { width: 1.4rem; height: 1.4rem; bottom: 18%; right: 28%; background: rgba(6, 65, 143, 0.2); }

.illustration-hero-categories .etoile {
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    background: var(--primary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.7;
}

.etoile-1 { top: 12%; right: 42%; }
.etoile-2 { bottom: 28%; right: 8%; width: 0.5rem; height: 0.5rem; }

.ticket-promo {
    position: absolute;
    right: 8%;
    top: 18%;
    width: 10.5rem;
    height: 6.8rem;
    border-radius: 1.1rem;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    box-shadow: 0 1.25rem 2.4rem rgba(6, 65, 143, 0.28);
    transform: rotate(12deg);
    border: 2px dashed rgba(255, 255, 255, 0.45);
}

.ticket-promo::before,
.ticket-promo::after {
    content: "";
    position: absolute;
    width: 1.15rem;
    height: 1.15rem;
    background: #eaf3ff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.ticket-promo::before { left: -0.7rem; }
.ticket-promo::after { right: -0.7rem; }

.ticket-promo-pourcent {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.ticket-promo-texte {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.barre-recherche-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 0.85rem;
    box-shadow: 0 0.9rem 2.2rem rgba(28, 35, 48, 0.1);
    margin: -2.5rem 0.5rem 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .barre-recherche-categories {
        flex-direction: row;
        align-items: stretch;
        padding: 0.7rem 0.7rem 0.7rem 1.15rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

.champ-select-categories,
.champ-marque-categories {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .champ-select-categories {
        flex: 0 0 15.5rem;
        border-right: 1px solid #e6ebf2;
        padding-right: 1.1rem;
        margin-right: 0.4rem;
    }
}

.champ-select-categories label,
.champ-marque-categories label {
    display: block;
    font-size: 0.78rem;
    color: #7b8491;
    margin-bottom: 0.15rem;
}

.page-categories .champ-select-categories select,
.page-categories .enveloppe-recherche-marque input {
    width: 100% !important;
    border: 0 !important;
    background: transparent;
    font-size: 0.98rem;
    color: #1c2330;
    padding: 0.2rem 0;
    box-shadow: none;
}

.page-categories .champ-select-categories select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237b8491' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.15rem center;
    padding-right: 1.4rem !important;
    cursor: pointer;
}

.enveloppe-recherche-marque {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.enveloppe-recherche-marque i {
    color: #8b93a0;
}

.bouton-recherche-categories {
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 0.9rem;
    padding: 0.85rem 1.4rem;
    cursor: pointer;
    white-space: nowrap;
}

.bouton-recherche-categories:hover {
    background: var(--tertiary);
}

.points-confiance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    list-style: none;
    padding: 1.5rem 0 0;
    margin: 0;
}

@media (min-width: 992px) {
    .points-confiance {
        grid-template-columns: repeat(4, 1fr);
        padding-top: 1.75rem;
    }
}

.points-confiance li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.points-confiance i {
    color: var(--primary);
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

.points-confiance strong,
.points-confiance span {
    display: block;
}

.points-confiance strong {
    font-size: 0.95rem;
    color: #1c2330;
}

.points-confiance span {
    font-size: 0.82rem;
    color: #7b8491;
}

.section-cartes-categories {
    padding: 1.25rem 0 2.5rem;
}

.entete-grille-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .entete-grille-categories {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.entete-grille-categories h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    color: #1c2330;
    margin-bottom: 0.35rem;
}

.entete-grille-categories p {
    color: #6b7380;
}

.bouton-toutes-categories {
    align-self: flex-start;
    background: #fff;
    border: 1px solid #d9e1ea;
    color: #1c2330;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.bouton-toutes-categories:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.grille-cartes-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

@media (min-width: 768px) {
    .grille-cartes-categories {
        grid-template-columns: 1fr 1fr;
    }
}

.carte-categorie {
    display: flex;
    gap: 1.05rem;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 1.15rem;
    padding: 1.25rem 1.3rem;
    box-shadow: 0 0.35rem 1rem rgba(28, 35, 48, 0.04);
    scroll-margin-top: 1rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carte-categorie:hover,
.carte-categorie.est-active {
    border-color: #c5d5ea;
    box-shadow: 0 0.9rem 1.8rem rgba(28, 35, 48, 0.08);
    transform: translateY(-2px);
}

.icone-categorie {
    flex: 0 0 4.1rem;
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.teinte-ambre { background: #fff3d6; color: #c48410; }
.teinte-rose { background: #fde4ee; color: #c24b78; }
.teinte-violet { background: #eee4fb; color: #6f4db0; }
.teinte-vert { background: #e3f6ea; color: #2f8a55; }
.teinte-bleu { background: #e7f0ff; color: var(--primary); }
.teinte-cyan { background: #e5f7fb; color: #1a7f96; }
.teinte-corail { background: #ffe8e0; color: #c45a34; }
.teinte-indigo { background: #e8e9fb; color: #4548a8; }

.corps-carte-categorie {
    min-width: 0;
    flex: 1;
}

.entete-carte-categorie {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.entete-carte-categorie h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c2330;
    margin: 0;
}

.lien-voir-plus {
    flex-shrink: 0;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.lien-voir-plus:hover {
    color: var(--secondary);
}

.page-categories .texte-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    color: #6b7380;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.pastilles-marques {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.pastille-marque {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: #f1f4f8;
    color: #4d5663;
    font-size: 0.78rem;
    text-decoration: none;
    border: 1px solid #e6ebf2;
}

a.pastille-marque:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pastille-marque.est-reste,
.pastille-marque.est-vide {
    background: #eef3fb;
}

button.pastille-marque {
    border: 1px solid #e6ebf2;
    cursor: pointer;
    font: inherit;
}

.detail-categorie {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 1.15rem;
    padding: 1.25rem 1.4rem;
}

.detail-categorie h3 {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.liste-boutiques-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.liste-boutiques-detail a {
    display: inline-flex;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #f1f4f8;
    color: #1c2330;
    text-decoration: none;
    border: 1px solid #e6ebf2;
}

.liste-boutiques-detail a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.bandeau-blog-categories {
    padding: 0 0 2.5rem;
}

.bandeau-blog-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #eaf3ff;
    border-radius: 1.25rem;
    padding: 1.25rem 1.4rem;
}

@media (min-width: 768px) {
    .bandeau-blog-inner {
        flex-direction: row;
        align-items: center;
        padding: 1.15rem 1.5rem;
    }
}

.icone-bandeau-blog {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.texte-bandeau-blog {
    flex: 1;
}

.texte-bandeau-blog h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #1c2330;
}

.texte-bandeau-blog p {
    color: #5b6573;
}

.bouton-blog-categories {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0.9rem;
    padding: 0.8rem 1.2rem;
    white-space: nowrap;
}

.bouton-blog-categories:hover {
    background: var(--tertiary);
    color: #fff !important;
}

.category-title {
    transition: 0.3s !important;
}

.category-title:hover {
    color:  var(--primary) !important;
    text-decoration: underline !important;
}

.category-link {
    color: inherit;
    text-decoration: none;
    transition: 0.3s !important;
}

.category-link:hover {
    color:  var(--primary) !important;
    text-decoration: underline !important;
}

.group-links {
    column-count: 2 !important;
    column-gap: 1em !important;
}

@media screen and (min-width: 768px) {
    .group-links {
        column-count: 3 !important;
        column-gap: 1em !important;
    }
}

@media screen and (min-width: 992px) {
    .group-links {
        column-count: 5 !important;
        column-gap: 1em !important;
    }
}

.link-show {
    color:  var(--primary) !important;
}

.link-show:hover {
    color:  var(--secondary) !important;
    text-decoration: underline !important;
}

.full-text {
    width: 100% !important;
    white-space: nowrap !important;
}

.full-paragraph {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
/* --- cyber-monday.css --- */
/* CARD */
.flex-column-md-reverse {
    flex-direction: column-reverse !important;
}

.col-offer {
    overflow: hidden !important;
}

.img-offer {
    object-fit: cover !important;
    border-radius: 0.375rem 0.375rem 0 0 !important;
}

.little-card {
    height: 300px !important;
}

.card-background {
    background-size: cover !important;
    background-position: center !important;
}

.little-container {
    background-color: rgba(255, 255, 255, 0.737) !important;
}

@media screen and (min-width: 992px) {
    .flex-column-md-reverse {
        flex-direction: row !important;
    } 

    .card-offer {
        height: 300px !important;
    }

    .col-offer {
        height: 100% !important;
    }

    .img-offer {
        border-radius: 0 0.375rem 0.375rem 0 !important;
    }
}

@media screen and (min-width: 768px) {
    .page-cyber-monday .btn-offer {
        width: 40% !important;
    }
}

.border-cyber-monday {
    transition: 0.3s !important;
}

.border-cyber-monday:hover {
    border-color: var(--dark) !important;
}

/* MODAL BTN */
.btn-active-dark {
    transition: 0.3s !important;
}

.btn-active-dark:hover {
    background-color: var(--dark) !important;
}

.btn-active-monday:hover {
    background-color: rgba(0, 0, 0, 0.792) !important;
}


/* IMG */
.img-cyber-monday {
    width: 45em !important;
}
/* --- submit.css --- */
/* CHECKBOX */
.form-check-input {
    width: 1em !important;
}

/* BTN */
.btn-submit {
    transition: 0.3s !important;
}

.btn-submit:hover {
    background-color: var(--primary) !important;
}

.page-compte .formulaire-compte {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.page-compte .formulaire-compte input[type="text"],
.page-compte .formulaire-compte input[type="email"],
.page-compte .formulaire-compte input[type="password"] {
    display: block;
    width: 100%;
}

