#vfp-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: none;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.4s ease;
    z-index: 999999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #f0f0f0;
}

/* Show Popup */
#vfp-popup.vfp-show {
    display: block !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Hide Popup Completely on Mobile */
@media (max-width: 768px) {
    #vfp-popup,
    #vfp-popup.vfp-show {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

.vfp-header {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    letter-spacing: -0.2px;
}

.vfp-booking-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
}

.vfp-img-box {
    flex-shrink: 0;
}

.vfp-img-box img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #f1f1f1;
}

.vfp-content {
    flex: 1;
}

.vfp-booking-details {
    margin-bottom: 8px;
}

.vfp-customer {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
    line-height: 1.3;
}

.vfp-product {
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 4px;
    line-height: 1.3;
}

.vfp-time {
    font-size: 12px;
    color: #718096;
    font-weight: 400;
}

.vfp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #a0aec0;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.vfp-close:hover {
    color: #718096;
    background: #f7fafc;
}
