.simpli-review-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.simpli-review-popup.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image section */
.simpli-review-popup-image {
    /* Image section as background */
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Image section with margin */
.simpli-review-popup-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    /* Added margin */
}

.simpli-review-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Review details */
.simpli-review-popup-content {
    flex: 2;
}

.simpli-review-popup-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.simpli-review-popup-review {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.simpli-review-popup-user {
    font-size: 11px;
    color: #777;
}

/* Star Rating */
.simpli-popup-stars {
    font-size: 14px;
    color: #FFD700;
    /* Gold color */
    margin-bottom: 5px;
}

/* Close button */
.simpli-review-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #888;
}

.simpli-review-popup-close:hover {
    color: #000;
}
