/**
 * Dual Currency Module - Styles
 * BGN price display alongside EUR
 */

.dual-currency-bgn {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.78em;
    line-height: 1.2;
    margin: 6px 0;
    padding: 4px 8px;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    max-width: 100%;
    box-sizing: border-box;
}

.dual-currency-bgn__label {
    color: #555;
    font-weight: 400;
    white-space: nowrap;
}

.dual-currency-bgn__price {
    color: #222;
    font-weight: 700;
    font-size: 1.1em;
    white-space: nowrap;
}

.dual-currency-bgn__icon {
    cursor: help;
    display: inline-flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.dual-currency-bgn__icon:hover {
    opacity: 1;
}

/* Product price context */
.dual-currency-bgn--product_price {
    display: flex;
}

/* Omnibus context - inline, same style as surrounding text */
.dual-currency-bgn--omnibus {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

/* Price history modal context - same style as price info above */
.dual-currency-bgn--modal {
    display: flex;
    justify-content: flex-end;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: inherit;
}

.dual-currency-bgn--modal .dual-currency-bgn__label {
    color: inherit;
    font-weight: 400;
}

.dual-currency-bgn--modal .dual-currency-bgn__price {
    color: inherit;
    font-weight: 700;
    font-size: inherit;
}

/* Product miniature context */
.product-miniature .dual-currency-bgn {
    font-size: 0.75em;
    padding: 3px 6px;
    margin: 4px 0;
}

.product-miniature .dual-currency-bgn__label {
    display: none;
}

/* Main product page */
.tax-shipping-delivery-label .dual-currency-bgn {
    margin: 8px 0;
}

/* Price history info - inline with price */
.price-history-product__info .dual-currency-bgn--omnibus {
    display: inline;
}

/* Mobile styles */
@media (max-width: 576px) {
    .dual-currency-bgn {
        font-size: 0.8em;
        padding: 4px 8px;
        gap: 3px 5px;
    }

    .dual-currency-bgn__price {
        font-size: 1.05em;
    }

    .dual-currency-bgn__icon svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 400px) {
    .dual-currency-bgn {
        font-size: 0.75em;
        padding: 3px 6px;
    }

    .dual-currency-bgn__label {
        font-size: 0.95em;
    }
}
