/* Çerez Kullanımı Bilgilendirme Bandı */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--cookie-banner-bg, #1e293b);
    color: var(--cookie-banner-text, #f1f5f9);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.5rem;
    display: none;
    animation: cookieBannerSlideUp 0.35s ease-out;
}

.cookie-consent-banner.is-visible {
    display: block;
}

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

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.cookie-consent-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-consent-link {
    color: var(--cookie-banner-link, #93c5fd);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-link:hover {
    color: var(--cookie-banner-link-hover, #bfdbfe);
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-link-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--cookie-banner-text, #f1f5f9);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.cookie-consent-link-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--cookie-banner-text, #f1f5f9);
}

.cookie-consent-accept-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    background: #f1f5f9;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.cookie-consent-accept-btn:hover {
    background: #e2e8f0;
}

.cookie-consent-accept-btn:active {
    transform: scale(0.98);
}

/* Dark mode uyumu - tema değişkenleri ile uyumlu olabilir */
@media (prefers-color-scheme: dark) {
    .cookie-consent-banner {
        --cookie-banner-bg: #0f172a;
        --cookie-banner-text: #e2e8f0;
        --cookie-banner-link: #7dd3fc;
        --cookie-banner-link-hover: #bae6fd;
    }
}
