.shop-popup {
    position:absolute;
    top:250px;
    width: 280px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    font-family: Arial, sans-serif;
    display: none; /* JS दिखाएगा */
}
.shop-popup-left {
    left: 10px;
    width:130px;
}
.shop-popup-right {
    right: 10px;
    width:130px;
}
.shop-popup .shop-popup-close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}
.shop-popup .shop-popup-content {
    text-align: center;
    padding: 8px 12px;
}
.shop-popup .shop-product-image img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin: 6px auto;
}
.shop-popup .shop-product-name {
    font-weight: 700;
    margin-top: 8px;
    font-size: 15px;
}
.shop-popup .shop-product-price {
    color: #d9534f;
    margin-top: 6px;
    font-size: 14px;
}
.shop-buy-now-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.shop-popup-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    z-index: 10;
}
.shop-popup-close:hover {
        color: #ff0000;
    }
