/**
 * Estilos Frontend - Condições de Preço
 *
 * @package Chagas_Theme
 * @subpackage WooCommerce_Conditions
 */

/* ============================================
   TABELA DE ESCALAS
   ============================================ */
.chagas-scale-prices {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.chagas-scale-prices h4 {
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.chagas-scale-table {
    width: 100%;
    border-collapse: collapse;
}

.chagas-scale-table th,
.chagas-scale-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.chagas-scale-table th {
    background: #f0f0f0;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
}

.chagas-scale-table tbody tr:last-child td {
    border-bottom: none;
}

.chagas-scale-table tbody tr:hover {
    background: #f5f5f5;
}

/* ============================================
   PREÇO COM CONDIÇÕES
   ============================================ */
.chagas-condition-price {
    display: inline-block;
}

.chagas-condition-price del {
    color: #999;
    font-size: 0.85em;
    margin-right: 8px;
}

.chagas-condition-price ins {
    text-decoration: none;
    font-weight: 600;
    color: #77a464;
}

/* ============================================
   DESCONTOS NO CARRINHO
   ============================================ */
.chagas-condition-row th {
    color: #77a464;
    font-weight: normal;
}

.chagas-condition-row td {
    color: #77a464;
}

/* ============================================
   BADGE DE DESCONTO
   ============================================ */
.chagas-discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    margin-left: 8px;
}

/* ============================================
   TOOLTIP DE CONDIÇÕES
   ============================================ */
.chagas-conditions-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.chagas-conditions-tooltip .tooltip-content {
    visibility: hidden;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.chagas-conditions-tooltip .tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.chagas-conditions-tooltip:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* ============================================
   CALCULADORA DE QUANTIDADE
   ============================================ */
.chagas-quantity-calculator {
    margin: 15px 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.chagas-quantity-calculator label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.chagas-quantity-calculator input {
    width: 100px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.chagas-quantity-calculator .calculated-price {
    margin-top: 10px;
    font-size: 16px;
}

.chagas-quantity-calculator .calculated-price strong {
    color: #77a464;
}

/* ============================================
   LISTA DE CONDIÇÕES APLICADAS
   ============================================ */
.chagas-applied-conditions {
    margin: 15px 0;
    padding: 15px;
    background: #f0f9f0;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}

.chagas-applied-conditions h5 {
    margin: 0 0 10px;
    font-size: 13px;
    color: #155724;
}

.chagas-applied-conditions ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chagas-applied-conditions li {
    padding: 5px 0;
    font-size: 13px;
    color: #155724;
    display: flex;
    justify-content: space-between;
}

.chagas-applied-conditions li .condition-value {
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .chagas-scale-prices {
        padding: 10px;
    }
    
    .chagas-scale-table th,
    .chagas-scale-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .chagas-conditions-tooltip .tooltip-content {
        left: 0;
        transform: none;
        white-space: normal;
        min-width: 200px;
    }
}
