/* Cookie Consent Popup */
.cookie-consent-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

.cookie-consent-popup.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent-header h2 {
    margin: 0 0 15px 0;
    font-size: 1.5em;
    color: #222;
    font-weight: 600;
}

.cookie-consent-body {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.cookie-consent-body p {
    margin: 0 0 12px 0;
}

.cookie-consent-body a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-consent-body a:hover {
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 140px;
}

.cookie-btn-accept {
    background: #0066cc;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #0052a3;
}

.cookie-btn-essential {
    background: #f0f0f0;
    color: #222;
    border: 2px solid #ddd;
}

.cookie-btn-essential:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

.cookie-btn-reject {
    background: #fff;
    color: #222;
    border: 2px solid #ddd;
}

.cookie-btn-reject:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

/* Cookie Settings Button (Fixed position) */
.cookie-settings-btn {
    display: none;
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.cookie-settings-btn:hover {
    background: #0052a3;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cookie-settings-btn.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-popup {
        padding: 15px;
    }

    .cookie-consent-content {
        padding: 20px;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-settings-btn {
        left: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }
}
