/* ============================= */
/* PRODUCT PAGE GLOBAL */
/* ============================= */

.product-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ============================= */
/* PDF BUTTON */
/* ============================= */

.pdf-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.pdf-btn {
    background: #2780bd;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.pdf-btn:hover {
    background: #0b3dbb;
}

/* ============================= */
/* HERO IMAGE */
/* ============================= */

.product-hero img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 50px;
    border-radius: 6px;
}

/* ============================= */
/* ACCORDION */
/* ============================= */

.accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: #f7f9fc;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: #eef3fb;
}

.accordion-header .icon {
    font-size: 18px;
    font-weight: 700;
}

.accordion-body {
    display: none;
    padding: 20px;
}

.accordion-body img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ============================= */
/* TABLETTE */
/* ============================= */

@media (max-width: 992px) {

    .product-page {
        margin: 40px auto;
    }

    .pdf-wrapper {
        justify-content: center;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

    .page-title-area {
        padding: 60px 20px !important;
    }

    .page-title-area h1 {
        font-size: 22px;
    }

    .product-page {
        margin: 30px auto;
        padding: 0 15px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 14px 16px;
    }

    .accordion-body {
        padding: 15px;
    }
}
