/*
  ╔════════════════════════════════════════════════════════════════╗
  ║                           BUROSTOCK.FR                         ║
  ║                       Css Pages catégories                     ║
  ║                    Design by ADVERTISING GROUP                 ║
  ╚════════════════════════════════════════════════════════════════╝
*/



/*-------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------- [00. CARDS] -------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/

/* ====================================================
   GRILLE 3 + 2 : Cards fond subtil
   
   Fond : warm-light (quasi blanc chaud)
   Bordure : 1px rgba très discret
   Hover : léger lift + bordure un poil plus visible
   Pas de lignes de séparation
   
==================================================== */

.card-01-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Ligne 1 : 3 cards */
.card-01-card:nth-child(1) { grid-column: 1 / 3; }
.card-01-card:nth-child(2) { grid-column: 3 / 5; }
.card-01-card:nth-child(3) { grid-column: 5 / 7; }
/* Ligne 2 : 2 cards centrées */
.card-01-card:nth-child(4) { grid-column: 1 / 4; }
.card-01-card:nth-child(5) { grid-column: 4 / 7; }

.card-01-card {
    background: var(--warm-light);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-01-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.card-01-title {
    font-family: var(--font-02)!important;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy)!important;
    line-height: 1.3!important;
    margin-bottom: 10px;
    font-style: italic;
}

.card-01-text {
    font-family: var(--font-02);
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
    font-weight: 300;
    text-align: justify;
}
.card-01-text strong {
    color: var(--navy);
    font-weight: 600;
}

}
@media (max-width: 1024px) {
.card-01-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.card-01-card:nth-child(1) { grid-column: 1; }
.card-01-card:nth-child(2) { grid-column: 2; }
.card-01-card:nth-child(3) { grid-column: 1; }
.card-01-card:nth-child(4) { grid-column: 2; }
.card-01-card:nth-child(5) { grid-column: 1 / 3; }

.card-01-card {
    padding: 28px 24px;
}
}

@media (max-width: 980px) {
.card-01-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
.card-01-card:nth-child(n) {
    grid-column: auto !important;
}
.card-01-card {
    padding: 24px 20px;
}
.card-01-title {
    font-size: 18px;
}
.card-01-text {
    font-size: 13px;
}
}


@media (max-width: 400px) {
.card-01-card {
    padding: 20px 16px;
    border-radius: 8px;
}
.card-01-title {
    font-size: 17px;
}
.card-01-text {
    font-size: 12.5px;
    line-height: 1.7;
}
}



/*-------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------- [00. BANNIERE FULLWIDTH N°1] --------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/


.banner-01-section {
    position: relative;
    margin: 0 calc(-1 * clamp(20px, 4vw, 48px));
    height: 383px!important;
    overflow: hidden;
}

/* Image en <picture> — couvre tout le banner */
.banner-01-picture {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
}
.banner-01-img {
    width: 100%;
    height: 383px !important;
    object-fit: cover;
    object-position: center;
}

/* Overlay gradient par-dessus l'image */
.banner-01-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(27, 42, 74, 0.65) 0%,
        rgba(27, 42, 74, 0.25) 60%,
        transparent 70%
    );
    pointer-events: none;
}

/* Contenu texte */
.banner-01-content {
    position: relative;
    z-index: 2;
    font-family: var(--font-02);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
}
.banner-01-inner {
    max-width: 800px;
}
.banner-01-inner h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    color: var(--white) !important;
    line-height: 1.2;
    margin-bottom: 14px;
    font-style: italic;
}
.banner-01-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
.banner-01-content {
    padding-left: 6%;
    padding-right: 6%;
}
}

@media (max-width: 767px) {
.banner-01-section {
    margin-left: 0;
    margin-right: 0;
}
.banner-01-img {
    object-position: 60% center;
}
/* Overlay plus fort sur mobile */
.banner-01-overlay {
    background: linear-gradient(
        to bottom,
        rgba(27, 42, 74, 0.75) 0%,
        rgba(27, 42, 74, 0.40) 50%,
        rgba(27, 42, 74, 0.15) 100%
    );
}
.banner-01-content {
    padding-left: 20px;
    padding-right: 20px;
    align-items: flex-end;
    padding-bottom: 28px;
}
.banner-01-inner h3 {
    font-size: 28px;
}
.banner-01-inner p {
    font-size: 16px;
    margin-bottom: 24px;
}
}

@media (max-width: 400px) {
.banner-01-inner h3 {
    font-size: 20px;
}
.banner-01-inner p {
    font-size: 12px;
    line-height: 1.55;
}
}



/*-------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------- [00. CTA N°5] -----------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/

.cta-05-section {
    background: var(--warm-grey);
    border-radius: 20px;
    padding: clamp(40px, 6vw, 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.cta-05-text h3 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    color: var(--navy) !important;
    line-height: 1.2 !important;
    margin-bottom: 18px;
    font-style: italic;
}
.cta-05-text p {
    font-family: var(--font-02);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 28px;
}
.cta-05-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 32px;
}
.cta-05-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
}
.cta-05-feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--olive);
    flex-shrink: 0;
}
.cta-05-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Image réelle dans le CTA */
.cta-05-visual {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.cta-05-picture {
    display: block;
    width: 100%;
    height: 100%;
}
.cta-05-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
 

@media (max-width: 1280px) {
.cta-05-section {
    border-radius: 0;
}


@media (max-width: 1024px) {
.cta-05-section {
    grid-template-columns: 1fr;
    padding: clamp(32px, 5vw, 48px);
}
.cta-05-visual {
        aspect-ratio: 16/9;
}
}

@media (max-width: 980px) {
.cta-05-section {
    padding: 28px 0 0 0;
}
.cta-05-text h3 {
    text-align: center;
    padding: 20px 30px 0 30px;
}
.cta-05-text p {
    text-align: center;
    padding: 0 5%;
}
.cta-05-features {
    justify-content: center;
    margin-bottom: 40px;
}
.cta-05-visual {
    aspect-ratio: 4/3;
    border-radius: 0;
}
.cta-05-buttons {
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
}

@media (max-width: 400px) {
.cta-05-text h3 {
    font-size: 22px;
}
.cta-05-feat {
    font-size: 12px;
}
}



/*-------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------- [00. NAVIGATION CATEGORIE N°1] ------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/

.nav-cat-01 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    flex-wrap: wrap;
    justify-content: space-around;
}
.nav-cat-01-label {
    font-family: var(--font-03);
    font-size: 19px;
    font-weight: 500;
    color: var(--navy);
    font-style: italic;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cat-01-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nav-cat-01-links a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--white)!important;
    background: var(--graphite);
    border: 1px solid var(--graphite);
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}
.nav-cat-01-links a:hover {
    color: var(--white);
    border: 1px solid var(--navy);
    background: var(--navy);
}

@media (max-width: 1024px) {
.nav-cat-01-label {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-grey);
    width:30%;
    text-align: center;
}
.nav-cat-01-links {
    padding-top: 10px;
}
.nav-cat-01-links {
    gap: 15px;
    justify-content: center;
}
}

@media (max-width: 767px) {
/* Version compacte : empilée */
.nav-cat-01 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.nav-cat-01-links {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.nav-cat-01-links::-webkit-scrollbar {
    display: none;
}
.nav-cat-01-links a {
    flex-shrink: 0;
}
}

@media (max-width: 400px) {
.nav-cat-01-links a {
    padding: 5px 12px;
    font-size: 11px;
}
}