/* Cookie Consent Banner Stilleri */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #232629 0%, #2a2d31 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #c29765;
    backdrop-filter: blur(10px);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text p {
    margin: 0;
    color: #e8e8e8;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #c29765 !important;
    color: #ffffff !important;
}

.cookie-btn-accept:hover {
    background-color: #b08856 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 151, 101, 0.4);
}

.cookie-btn-info {
    background-color: transparent !important;
    color: #c29765 !important;
    border: 2px solid #c29765 !important;
}

.cookie-btn-info:hover {
    background-color: #c29765 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent !important;
    color: #999999 !important;
    border: 1px solid #555555 !important;
}

.cookie-btn-decline:hover {
    background-color: #555555 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 15px;
    }

    .cookie-consent-text {
        order: 1;
    }

    .cookie-consent-buttons {
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cookie-consent-buttons .btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 80px;
    }

    .cookie-consent-banner {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-consent-buttons .btn {
        width: 100%;
        max-width: 200px;
    }

    .cookie-consent-text {
        font-size: 13px;
    }
}

/* Cookie Policy Modal Özelleştirmeleri */
#cookiePolicyModal .modal-body h6 {
    color: #c29765;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

#cookiePolicyModal .modal-body h6:first-child {
    margin-top: 0;
}

#cookiePolicyModal .modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

#cookiePolicyModal .modal-body strong {
    color: #232629;
    font-weight: 600;
}

/* Animasyon Efektleri */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner {
    animation: slideUp 0.5s ease-out;
}

/* Dark theme uyumluluğu */
@media (prefers-color-scheme: dark) {
    .cookie-consent-banner {
        background: linear-gradient(135deg, #1a1d20 0%, #232629 100%);
    }
}

/* Print stilleri */
@media print {
    .cookie-consent-banner {
        display: none !important;
    }
}