/* JavaScript-based Product Popover - Global styles */
.js-product-popover {
    position: fixed;
    z-index: 99999;
    width: 300px;
    max-width: 90vw;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    pointer-events: none;
}

.js-product-popover .popover-image {
    width: 100%;
    max-height: 180px;
    height: auto;
    object-fit: contain;
    background: #f8f9fa;
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.js-product-popover .popover-no-image {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 0.875rem;
    border-bottom: 1px solid #e9ecef;
}

.js-product-popover .popover-details {
    padding: 0.75rem 1rem;
    background: white;
}

.js-product-popover .popover-uin {
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 0.375rem;
}

.js-product-popover .popover-uin strong {
    color: #163a49;
}

.js-product-popover .popover-description {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    word-wrap: break-word;
}

.js-product-popover .popover-description strong {
    color: #163a49;
}
