/* Sol alt sabit – modern mavi tema */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2147483647;
    display: none;
    /* JS ile gösterilecek */
}

.cookie-consent--show {
    display: block;
    animation: fadeInUp 0.3s ease-out both;
}

.cookie-consent__card {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 18px 22px;
    width: 320px;
    font-family: 'Inter', sans-serif;
}

/* İçerik */
.cookie-consent__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-consent__text {
    font-size: 13px;
    color: #e0f2fe;
    line-height: 1.4;
}

.cookie-consent__link {
    color: #dbeafe;
    text-decoration: underline;
    font-weight: 500;
}

/* Butonlar */
.cookie-consent__actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.cookie-consent__btn {
    background: #1e3a8a;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cookie-consent__btn:hover {
    background: #1d4ed8;
}

.cookie-consent__btn--ghost {
    background: transparent;
    color: #e0e7ff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-consent__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Animasyon */
@keyframes fadeInUp {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}