/**
 * Module CoeffPrice - Styles Front-Office
 * Encadré rouge pour prix conseillé et coefficient B2B
 */

.coeffprice-box {
    display: inline-block;
    border: 2px solid #c41e3a;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 12px;
    margin-bottom: 12px;
    background-color: #fff;
}

.coeffprice-recommended {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
}

.coeffprice-label {
    color: #212529;
    font-weight: 600;
}

.coeffprice-value {
    color: #212529;
    font-weight: 700;
    margin-left: 5px;
}

.coeffprice-coeff {
    font-size: 0.9rem;
    color: #212529;
}

.coeffprice-coeff-value {
    font-weight: 600;
    margin-left: 5px;
}

/* Version compacte pour les listes produits */
.product-miniature .coeffprice-box {
    padding: 6px 10px;
    margin-top: 8px;
    font-size: 0.85rem;
}

.product-miniature .coeffprice-recommended {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.product-miniature .coeffprice-coeff {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .coeffprice-box {
        padding: 8px 12px;
    }
    
    .coeffprice-recommended {
        font-size: 0.9rem;
    }
    
    .coeffprice-coeff {
        font-size: 0.85rem;
    }
}
