.wpim-popup {
    position: absolute;
    z-index: 9999;
    display: none;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 250px;
    max-width: 90%;
    border-radius: 6px;
    pointer-events: auto;
    transform: translate(-50%,  calc(-100% + -30px));
}

/* Thumbnail image */
.wpim-popup-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
    object-fit: cover;
}

.wpim-popup-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
}

.wpim-popup-content .readmore {
    width: fit-content;
    background: none;
    color: white;
    text-transform: capitalize;
    padding: 10px;
}

.wpim-popup-phone i {
  font-size: 12px;
  color: var(--primary-color1);
}

.wpim-popup-phone {
  display: flex;
  gap: 10px;
  align-items: center;
}

.wpim-readmore {
  display: inline-block;
  padding: 4px 8px;
  background: #0073aa;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
}

.wpim-readmore:hover {
  background: #005177;
}


.wpim-popup:hover {
    display: block !important;
}

.wpim-popup::before {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 50%;
    bottom: -7.5px;
    content: '';
    background: white;
    transform: translateX(-50%) rotate(45deg);
}

.wpim-popup::after {
    position: absolute;
    width: 100%;
    height: 30px;
    top: 100%;
    left: 0px;
    content: '';
}