/**
 * TicketMax - Product Form Tooltip CSS
 * Styles for currency tooltip in checkout
 */
/* Tooltip de moneda en checkout - icono inline a la derecha del precio */
.woocommerce-checkout-review-order-table td .ticketmax-currency-tooltip,
.woocommerce-checkout-review-order-table th .ticketmax-currency-tooltip,
.ticketmax-currency-tooltip {
    display: inline;
    margin-left: 5px;
    font-size: 12px;
    color: #999;
    cursor: help;
    position: relative;
}
/* Popup del tooltip - aparece arriba del icono */
.ticketmax-currency-tooltip:hover::after {
    content: attr(title);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 8px);
    padding: 6px 10px;
    background: #333;
    color: #fff;
    font-size: 11px;
    white-space: nowrap;
    border-radius: 4px;
    z-index: 99999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
/* Flecha del tooltip */
.ticketmax-currency-tooltip:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 3px);
    border: 5px solid transparent;
    border-top-color: #333;
    z-index: 99999;
}
