.tricone-page {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.page-title {
    color: #0b3bbf;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

/* ================= GRID ================= */

.product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    justify-items: center;
}

.product-card {
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.product-card img {
    width: 160px;
    max-width: 100%;
    border: 1px solid #eee;
    padding: 12px;
    background: #fff;
    transition: transform .3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card p {
    margin-top: 12px;
    font-size: 15px;
    color: #0b3bbf;
    font-weight: 600;
}

/* ================= ACCORDION ================= */

.accordion-item {
    border-top: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    background: #f7f9fc;
    border: none;
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #eef3fb;
}

.accordion-body {
    display: none;
    padding: 30px 0;
}

.accordion-item.active .accordion-body {
    display: block;
}

.icon {
    font-size: 22px;
}

/* ================= TABLE CONTENT ================= */

.content-table {
    width: 100%;
    border-collapse: collapse;
}

.content-table td {
    vertical-align: top;
    padding: 15px;
}

.content-table img {
    max-width: 100%;
    height: auto;
}

/* ================= DATA TABLES ================= */

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.table th,
.table td {
    border: 1px solid #e5e5e5;
    padding: 8px 10px;
    font-size: 13px;
    text-align: left;
}

.table thead {
    background: #f4f6fa;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

/* TABLETTE */
@media (max-width: 992px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .page-title {
        font-size: 22px;
    }

}

/* MOBILE */
@media (max-width: 768px) {

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-title-area {
        padding: 60px 20px !important;
    }

    .page-title-area h1 {
        font-size: 24px;
    }

    .page-title {
        font-size: 20px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 15px;
    }

    /* Content table passe en vertical */
    .content-table tr {
        display: flex;
        flex-direction: column;
    }

    .content-table td {
        width: 100% !important;
        padding: 10px 0;
    }

    /* Scroll horizontal pour grosses tables */
    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

}
