/* Çerez Banner Stilleri - Profesyonel Tasarım */
#cookie-banner {
   position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 24px 32px;
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideUp 0.5s 
ease-out;
    backdrop-filter: blur(10px);
    max-width: 100vw;
    width: 97%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #123a1b 0%, #1e5a2a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 16px rgba(18, 58, 27, 0.3);
}

.cookie-text-content {
    flex: 1;
}

.cookie-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #123a1b;
    line-height: 1.3;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    font-weight: 400;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    background: linear-gradient(135deg, #123a1b 0%, #1e5a2a 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(18, 58, 27, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn:hover {
    background: linear-gradient(135deg, #1e5a2a 0%, #2d7a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 58, 27, 0.4);
}

.cookie-btn.secondary {
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
    box-shadow: none;
}

.cookie-btn.secondary:hover {
    background: #f8f9fa;
    color: #495057;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-close {
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 20px;
    line-height: 1;
}

.cookie-close:hover {
    color: #495057;
    background: #f8f9fa;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    #cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px 24px;
        max-width: none;
        margin: 0;
        transform: none;
        left: 10px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .cookie-content h3 {
        font-size: 16px;
    }

    .cookie-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #cookie-banner {
        padding: 16px 20px;
    }

    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}