/* Çerez Bildirimi Stilleri */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 28, 51, 0.95);
    color: #ffffff;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(5px);
    border-top: 2px solid var(--fb-yellow);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--fb-yellow);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--fb-yellow);
    text-decoration: underline;
    transition: all 0.3s;
}

.cookie-text a:hover {
    color: var(--fb-yellow-light);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
    text-align: center;
}

.cookie-accept {
    background-color: var(--fb-yellow);
    color: var(--fb-blue);
}

.cookie-accept:hover {
    background-color: var(--fb-yellow-light);
}

.cookie-decline {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.cookie-decline:hover {
    color: white;
    border-color: white;
}

.cookie-settings {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.cookie-settings:hover {
    color: white;
    border-color: white;
}

@media screen and (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}