/**
 * Estilos para a mensagem de preço oculto
 */

.hpwc-hidden-price {
    display: inline-block;
    font-weight: 600;
    color: #666;
    font-size: 1em;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
    border-left: 3px solid #0073aa;
}

/* Estilo para página de produto único */
.single-product .hpwc-hidden-price {
    font-size: 1.2em;
    padding: 10px 15px;
    margin: 10px 0;
}

/* Estilo para listagem de produtos */
.woocommerce ul.products li.product .hpwc-hidden-price {
    font-size: 0.9em;
}

/* Estilos para carrinho e checkout */
.woocommerce-cart .hpwc-hidden-price,
.woocommerce-checkout .hpwc-hidden-price {
    font-size: 0.95em;
    padding: 5px 10px;
}

/* Total do carrinho com destaque */
.hpwc-cart-total {
    font-size: 1.1em !important;
    font-weight: bold !important;
    color: #0073aa !important;
    background-color: #e6f3ff !important;
    border-left-color: #0073aa !important;
}

/* REMOVIDO v1.9.6: CSS que ocultava TODOS os preços no checkout
   Agora o controle é feito por produto via JavaScript e filtros PHP */

/* Avisos no carrinho/checkout */
.woocommerce-info.hpwc-notice {
    border-top-color: #0073aa;
    background-color: #e6f3ff;
}

.woocommerce-info.hpwc-notice::before {
    color: #0073aa;
}

/* Tabela do carrinho - células com preço oculto */
.woocommerce-cart-form__cart-item .hpwc-hidden-price,
.woocommerce-checkout-review-order-table .hpwc-hidden-price {
    display: block;
    text-align: right;
    margin: 5px 0;
}

/* Totais do carrinho/checkout */
.cart_totals .hpwc-hidden-price,
.woocommerce-checkout-review-order-table .hpwc-hidden-price {
    font-size: 1em;
    padding: 8px 12px;
}

/* Responsivo */
@media (max-width: 768px) {
    .hpwc-hidden-price {
        font-size: 0.9em;
        padding: 5px 8px;
    }
    
    .single-product .hpwc-hidden-price {
        font-size: 1em;
        padding: 8px 12px;
    }
    
    .hpwc-cart-total {
        font-size: 1em !important;
    }
    
    .woocommerce-cart-form__cart-item .hpwc-hidden-price,
    .woocommerce-checkout-review-order-table .hpwc-hidden-price {
        font-size: 0.85em;
        text-align: left;
    }
}
