/**
 * WhatsApp Integration - Floating Button and Share
 */

/* Floating WhatsApp Button */
.cte-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cte-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.cte-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.cte-whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* WhatsApp Share Button */
.cte-whatsapp-share {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #25D366;
    color: #fff;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cte-whatsapp-share:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    color: #fff;
    text-decoration: none;
}

.cte-whatsapp-share svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cte-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .cte-whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Clear filters button - White with black outline */
.clem-clear {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.clem-clear:hover {
    background: #f5f5f5 !important;
    border-color: #333 !important;
}
