/* ============================================ */
/* ======= DESCRIPTION CATEGORIE ============= */
/* ======= Pyrénées Canin ==================== */
/* ============================================ */

.pc-catdesc {
    max-width: 1024px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Nunito', sans-serif;
    color: #444444;
    line-height: 1.7;
}

/* ── Intro (H1 + chapeau) ── */

.pc-catdesc__intro {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.pc-catdesc__intro h1 {
    font-size: 28px;
    font-weight: 800;
    color: #232323;
    margin: 0 0 16px;
    line-height: 1.3;
}

.pc-catdesc__intro p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Sections de contenu ── */

.pc-catdesc__section {
    margin-bottom: 40px;
}

.pc-catdesc__section h2 {
    font-size: 22px;
    font-weight: 800;
    color: #232323;
    margin: 0 0 24px;
    padding-left: 16px;
    border-left: 4px solid #A0CE4D;
    line-height: 1.3;
}

.pc-catdesc__block {
    margin-bottom: 24px;
}

.pc-catdesc__block h3 {
    font-size: 17px;
    font-weight: 700;
    color: #232323;
    margin: 0 0 10px;
}

.pc-catdesc__block p {
    font-size: 15px;
    color: #555555;
    margin: 0 0 12px;
    line-height: 1.7;
}

.pc-catdesc__block p:last-child {
    margin-bottom: 0;
}

.pc-catdesc__block a {
    color: #7BAE1F;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.pc-catdesc__block a:hover {
    color: #A0CE4D;
    text-decoration: underline;
}

.pc-catdesc__block em {
    font-style: italic;
    color: #444444;
}

/* ── Séparateur entre sections ── */

.pc-catdesc__section+.pc-catdesc__section {
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

/* ── FAQ Accordion ── */

.pc-catdesc__faq {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.pc-catdesc__faq-title {
    font-size: 22px;
    font-weight: 800;
    color: #232323;
    margin: 0 0 24px;
    padding-left: 16px;
    border-left: 4px solid #A0CE4D;
}

.pc-catdesc__faq-item {
    border: 1px solid #eeeeee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.pc-catdesc__faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pc-catdesc__faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    border: none;
    background: #fafafa;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background 0.2s;
}

.pc-catdesc__faq-question:hover {
    background: #f5f5f5;
}

.pc-catdesc__faq-question span {
    font-size: 15px;
    font-weight: 700;
    color: #232323;
    line-height: 1.4;
}

.pc-catdesc__faq-question svg {
    flex-shrink: 0;
    color: #A0CE4D;
    transition: transform 0.3s;
}

.pc-catdesc__faq-item.open .pc-catdesc__faq-question svg {
    transform: rotate(180deg);
}

.pc-catdesc__faq-item.open .pc-catdesc__faq-question {
    background: #f0f9e0;
}

.pc-catdesc__faq-answer {
    display: none;
    padding: 20px 24px;
    background: #ffffff;
}

.pc-catdesc__faq-item.open .pc-catdesc__faq-answer {
    display: block;
}

.pc-catdesc__faq-answer p {
    font-size: 14px;
    color: #555555;
    margin: 0 0 12px;
    line-height: 1.7;
}

.pc-catdesc__faq-answer p:last-child {
    margin-bottom: 0;
}

.pc-catdesc__faq-answer a {
    color: #7BAE1F;
    font-weight: 600;
    text-decoration: none;
}

.pc-catdesc__faq-answer a:hover {
    color: #A0CE4D;
    text-decoration: underline;
}

.pc-catdesc__faq-answer em {
    font-style: italic;
}

/* ── CTA lien (ex: "Voir nos croquettes chat") ── */

.pc-catdesc__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #A0CE4D;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 8px;
}

.pc-catdesc__cta:hover {
    background: #8abb3a;
    color: #ffffff;
    text-decoration: none;
}

.pc-catdesc__cta svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .pc-catdesc {
        margin: 24px auto;
        padding: 0 16px;
    }

    .pc-catdesc__intro {
        margin-bottom: 32px;
        padding-bottom: 28px;
    }

    .pc-catdesc__intro h1 {
        font-size: 22px;
    }

    .pc-catdesc__intro p {
        font-size: 14px;
    }

    .pc-catdesc__section h2 {
        font-size: 19px;
    }

    .pc-catdesc__block h3 {
        font-size: 16px;
    }

    .pc-catdesc__block p,
    .pc-catdesc__faq-answer p {
        font-size: 14px;
    }

    .pc-catdesc__faq-question {
        padding: 14px 18px;
    }

    .pc-catdesc__faq-question span {
        font-size: 14px;
    }

    .pc-catdesc__faq-answer {
        padding: 16px 18px;
    }

    .pc-catdesc__faq-title {
        font-size: 19px;
    }

    .pc-catdesc__section+.pc-catdesc__section {
        padding-top: 28px;
    }

    .pc-catdesc__faq {
        margin-top: 32px;
        padding-top: 28px;
    }
}

.pc-catdesc__faq-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s;
}

.pc-catdesc__faq-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2.5px solid #A0CE4D;
    border-bottom: 2.5px solid #A0CE4D;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.3s;
}

.pc-catdesc__faq-item.open .pc-catdesc__faq-arrow::after {
    transform: translate(-50%, -35%) rotate(-135deg);
}

.blockwhiteecri span {
    color: white !important;
}