/* =============================== */
/*         PANELS GÉNÉRAUX         */
/* =============================== */

.panel-box {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.panel-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

/* =============================== */
/*         PRICING PANEL           */
/* =============================== */

.pricing-panel {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin-top: 20px;
}

.pricing-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 17px;
}

.pricing-total {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0070ba;
}

.pricing-details {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

/* =============================== */
/*         QUANTITÉ PRODUIT        */
/* =============================== */

.quantity-choice {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-input {
    width: 55px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* =============================== */
/*         CHOIX DYNAMIQUES        */
/* =============================== */

#choixContainer {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* =============================== */
/*         OPTIONS MONTAGE         */
/* =============================== */

.mounting-choice {
    margin-top: 20px;
}

.mounting-options {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.mounting-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mounting-option {
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px;
    width: 110px;
    cursor: pointer;
    transition: 0.2s ease;
}

.mounting-option:hover {
    background: #e2e2e2;
    border-color: #bbb;
}

.mounting-option.active {
    background: #0070ba;
    color: #fff;
    border-color: #005a96;
}

/* =============================== */
/*         RESPONSIVE MOBILE       */
/* =============================== */

@media (max-width: 600px) {
    .mounting-options {
        gap: 14px;
    }

    .mounting-option {
        width: 100px;
        padding: 10px;
    }
}
