/* Çerez bilgilendirme banner'ı (Adım 15) — fixed bottom, site temasıyla uyumlu. */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(13, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(124, 92, 252, 0.3);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent.hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent a {
    background: linear-gradient(135deg, #7C5CFC, #E0457B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: rgba(124, 92, 252, 0.5);
}

.cookie-consent a:hover {
    text-decoration-color: rgba(224, 69, 123, 0.8);
}

.cookie-consent button {
    background: linear-gradient(135deg, #7C5CFC, #E0457B);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.cookie-consent button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 92, 252, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 12px 16px;
    }

    .cookie-consent-content {
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent p {
        font-size: 0.85rem;
    }

    .cookie-consent button {
        width: 100%;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent {
        transition: none;
    }
}
