/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    z-index: 5000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content p {
    color: #333;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-content a {
    color: #FF0080;
    text-decoration: none;
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-accept {
    background: linear-gradient(135deg, #FF9966 0%, #FF7744 100%);
    color: #fff;
    border: none;
    padding: 14px 48px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 119, 68, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 119, 68, 0.4);
}