/**
 * WooCommerce Currency Bridge - Frontend Styles
 */

/* Price Display */
.wcb-price-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.wcb-primary-price {
    font-weight: 600;
}

.wcb-alt-price {
    font-size: 0.85em;
    color: #666;
    opacity: 0.9;
}

.wcb-alt-price del {
    opacity: 0.7;
}

.wcb-alt-price ins {
    text-decoration: none;
    font-weight: 600;
    color: #d26e4b;
}

/* Responsive Layout */
@media (min-width: 768px) {
    .wcb-price-wrapper {
        flex-direction: row;
        align-items: baseline;
        gap: 10px;
    }
    
    .wcb-alt-price {
        position: relative;
    }
    
    .wcb-alt-price::before {
        content: '(';
    }
    
    .wcb-alt-price::after {
        content: ')';
    }
}

/* Cart and Checkout */
.woocommerce-cart .wcb-price-wrapper,
.woocommerce-checkout .wcb-price-wrapper {
    justify-content: space-between;
    width: 100%;
}

.woocommerce-cart .wcb-alt-price,
.woocommerce-checkout .wcb-alt-price {
    text-align: right;
}

/* Cart Subtotal Styling */
.wcb-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.wcb-cart-subtotal .wcb-alt-price {
    font-size: 0.9em;
    opacity: 0.8;
}

.wcb-cart-subtotal .wcb-alt-price::before,
.wcb-cart-subtotal .wcb-alt-price::after {
    content: none;
}

/* Product Loop */
.products .product .wcb-price-wrapper {
    justify-content: center;
    text-align: center;
}

/* Mini Cart */
.widget_shopping_cart .wcb-price-wrapper {
    font-size: 0.9em;
}

.widget_shopping_cart .wcb-alt-price {
    display: block;
    margin-top: 2px;
}

/* Tooltips */
.wcb-exchange-info {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: help;
}

.wcb-exchange-info::before {
    content: 'ⓘ';
    font-size: 0.8em;
    color: #999;
}

.wcb-exchange-info .wcb-tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    white-space: nowrap;
    z-index: 1000;
}

.wcb-exchange-info:hover .wcb-tooltip {
    visibility: visible;
}

/* Animations */
.wcb-price-wrapper {
    transition: opacity 0.3s ease;
}

.wcb-price-updating {
    opacity: 0.5;
}

/* Currency Switcher */
.wcb-currency-switcher {
    display: inline-flex;
    gap: 10px;
    margin: 10px 0;
}

.wcb-currency-switcher button {
    padding: 5px 15px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wcb-currency-switcher button:hover {
    background: #e5e5e5;
    border-color: #ccc;
}

.wcb-currency-switcher button.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Cart and Checkout Totals */
.wcb-converted-total {
    background-color: #f7f7f7;
}

.wcb-converted-total th,
.wcb-converted-total td {
    padding: 1em 0.5em;
    border-top: 2px solid #e5e5e5;
}

.wcb-converted-total strong {
    color: #50575e;
    font-size: 1.1em;
}

.wcb-exchange-rate-info {
    display: block;
    margin-top: 0.5em;
    font-size: 0.8em;
    color: #999;
    font-style: italic;
}

/* Checkout specific styles */
.woocommerce-checkout .wcb-converted-total {
    background-color: transparent;
}

.woocommerce-checkout .wcb-converted-total td {
    text-align: right;
}