/* Çerez bildirimi - sabit alt bar */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(15, 15, 21, 0.98) 0%, rgba(30, 30, 40, 0.98) 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    animation: cookieBannerSlide 0.4s ease-out;
}

.cookie-banner.is-visible {
    display: flex;
}

@keyframes cookieBannerSlide {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-text {
    flex: 1;
    min-width: 260px;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}

.cookie-btn-details {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-details:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00C2D8, #FF2E88);
    color: #fff;
}

.cookie-btn-accept:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

/* Çerez politikası modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-overlay.is-visible {
    display: flex;
}

.cookie-modal {
    background: #fff;
    color: #1a1a1a;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: #000;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-modal-body p:last-child {
    margin-bottom: 0;
}

.cookie-modal-body strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-text { min-width: 0; }
    .cookie-banner-buttons { width: 100%; justify-content: center; }
}
