/* WooCommerce Comptabilité - Frontend Styles */

/* Tax information display styles */
.wcc-tax-info {
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}

.wcc-tax-info .wcc-tax-label {
    font-weight: 600;
    color: #333;
}

.wcc-tax-info .wcc-tax-rate {
    color: #0073aa;
}

/* Checkout tax display */
.wcc-checkout-tax-display {
    margin-bottom: 15px;
}

.wcc-checkout-tax-display .wcc-tax-breakdown {
    font-size: 13px;
    color: #666;
}

.wcc-checkout-tax-display .wcc-tax-breakdown td {
    padding: 2px 0;
}

/* Cart tax information */
.wcc-cart-tax-info {
    margin: 10px 0;
    font-size: 13px;
    color: #666;
}

.wcc-cart-tax-info .wcc-tax-details {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

/* Product tax badge */
.wcc-product-tax-badge {
    display: inline-block;
    padding: 2px 6px;
    background: #e3f2fd;
    color: #1976d2;
    font-size: 11px;
    border-radius: 3px;
    margin-left: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wcc-tax-info {
        font-size: 13px;
    }
    
    .wcc-checkout-tax-display .wcc-tax-breakdown {
        font-size: 12px;
    }
    
    .wcc-cart-tax-info {
        font-size: 12px;
    }
}