/* Modern Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow: hidden;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-popup-header {
    display: flex;
    align-items: center;
    padding: 20px 20px 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.cookie-icon i {
    font-size: 20px;
    color: white;
}

.cookie-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cookie-content {
    padding: 15px 20px;
}

.cookie-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px 20px;
}

.cookie-accept-btn {
    flex: 1;
    background: white;
    color: #25d366;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cookie-accept-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

.cookie-decline-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cookie-decline-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-popup {
        width: calc(100% - 40px);
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
}

/* Animation for cookie icon */
.cookie-icon {
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* WhatsApp button styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 28px;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hide cookie popup when declined */
.cookie-popup.hidden {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-button i {
        font-size: 24px;
    }
} 