/* Add custom CSS styles below */ 
/* Container for the Floating Widget */
#salla-wa-widget {
    position: fixed;
    bottom: 25px;
    left: 25px; /* Best for Arabic stores to avoid clashing with Salla elements */
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999999;
    direction: rtl;
    font-family: sans-serif;
}

/* The WhatsApp Circle */
.wa-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease;
}

/* Pulsing effect to attract attention */
.wa-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

/* Google Reviews Badge Style */
.google-badge {
    background: white;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.google-badge span { color: #fbbc05; font-size: 16px; letter-spacing: 1px; }
.google-badge small { color: #333; font-size: 11px; font-weight: bold; display: block; line-height: 1.2; }

/* Animations */
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.wa-button:hover { transform: scale(1.1); }

/* Mobile Adjustments */
@media (max-width: 768px) {
    #salla-wa-widget { bottom: 15px; left: 15px; gap: 8px; }
    .wa-button { width: 50px; height: 50px; }
    .google-badge { display: none; }
}