
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600&display=swap');

#vsp-widget {
    position: fixed;
    bottom: 40px; /* Under Facebook & Instagram buttons */
    right: 0;
    z-index: 9999;
    text-align: center;
    font-family: 'Cairo', sans-serif;
}

.vsp-label {
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 6px;
    animation: fadeLabel 2s ease-in-out infinite alternate;
    color: var(--vsp-text-color, #000);
}

@keyframes fadeLabel {
    0% { opacity: 0.1; transform: translateY(2px); }
    100% { opacity: 1; transform: translateY(0); }
}

.vsp-toggle {
    background-color: #FFA500 !important;
    color: #fff !important;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50% 0 0 50%;
    cursor: pointer;
    line-height: 56px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsp-items {
    display: none;
    background: white;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 10px;
    padding: 10px;
    width: 160px;
    text-align: right;
}

.vsp-link {
    display: block;
    margin: 8px 0;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-family: 'Cairo', sans-serif;
}
.vsp-link:hover {
    color: #0073aa;
}
