.floating-image-container {
    position: fixed;
    right: 20px;
    bottom: var(--bottom-offset, 80px);
    z-index: 9999;
    width: var(--image-width, 150px);
    transition: all 0.3s ease;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.close-floating-image {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.close-floating-image:hover {
    background: #f44336;
    color: white;
}

@media (max-width: 768px) {
    .floating-image-container {
        width: 120px !important;
        right: 10px;
        bottom: 70px !important;
    }
}