﻿.cookie-banner {
    position: fixed;
    bottom: -150px; /* başlangıçta gizli */
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: 95%;
    background: rgba(33, 37, 41, 0.95); /* yarı saydam koyu arka plan */
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    padding: 20px 25px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s ease;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
   /*  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;*/ 
}

    .cookie-banner.show {
        bottom: 20px; /* göründüğünde kayar */
    }

.cookie-link {
    color: #ffc107;
    text-decoration: underline;
    margin-left: 5px;
}

    .cookie-link:hover {
        color: #fff176;
    }

.cookie-buttons .btn {
    font-weight: 500;
    transition: all 0.3s ease;
}

    .cookie-buttons .btn:hover {
        transform: scale(1.05);
    }

/* Responsive */
@media (max-width: 576px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }
}

}