/* Individual Product Currency Switcher Styles */

.product-price-container {
    --switcher-symbol-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.price-display {
    font-size: inherit;
    font-weight: inherit;
    line-height: var(--line-height-snug);
    color: var(--color-neutral-700);
    text-align: left;
}

.price-display .woocommerce-Price-amount {
    display: inline-block;
    margin-left: 4px;
    color: var(--color-neutral-700);
}

.woocommerce .product .price-display {
    font-weight: 800;
}

.woocommerce .product .price-display .woocommerce-Price-amount {
    color: var(--color-primary-200);
}

.product-currency-switcher-mini {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    width: fit-content;
}

.switcher-btn {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    font-size: var(--switcher-symbol-size);
    line-height: 1;
    font-weight: var(--font-weight-bold, 700);
    cursor: pointer;
    border-radius: var(--border-radius-base);
    transition: all 0.2s ease;
    color: var(--color-neutral-700);
}

.switcher-btn:hover {
    background: var(--color-neutral-50);
}

.switcher-btn.active {
    background: var(--color-neutral-50);
    color: var(--color-neutral-700);
    box-shadow: none;
}

/* Adjustments for WooCommerce layouts if needed */
.products li.product .product-price-container {
    width: 100%;
    align-items: center;
    margin-bottom: 12px;
}

.products li.product .price-display {
    margin-bottom: 0;
    text-align: center;
}

.products li.product .product-currency-switcher-mini {
    margin-left: auto;
    margin-right: auto;
}