/* Çerez Bildirimi Stilleri */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #3498db;
}

/* Show sınıfı - Banner'ı gösterir */
.cookie-banner.show {
    transform: translateY(0);
}

/* Position Stilleri */
.cookie-banner-bottom {
    bottom: 0;
    transform: translateY(100%);
}

.cookie-banner-top {
    top: 0;
    bottom: auto;
    transform: translateY(-100%);
    border-top: none;
    border-bottom: 3px solid #3498db;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner-top.show {
    transform: translateY(0);
}

/* Theme Stilleri */
.cookie-banner-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cookie-banner-light {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    color: #2c3e50;
    border-top-color: #3498db;
}

.cookie-banner-light .cookie-banner-title {
    color: #2c3e50;
}

.cookie-banner-light .cookie-banner-description {
    color: #34495e;
}

.cookie-banner-light .cookie-btn-reject {
    color: #34495e;
    border-color: #7f8c8d;
}

.cookie-banner-bottom.show {
    transform: translateY(0);
}

.cookie-banner-top.show {
    transform: translateY(0);
}

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

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

.cookie-banner-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ecf0f1;
}

.cookie-banner-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin: 0;
}

.cookie-banner-description a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-banner-description a:hover {
    color: #5dade2;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: #bdc3c7;
    border: 2px solid #7f8c8d;
}

.cookie-btn-reject:hover {
    background: #7f8c8d;
    color: white;
    border-color: #7f8c8d;
}

.cookie-btn-settings {
    background: transparent;
    color: #95a5a6;
    border: 2px solid #95a5a6;
}

.cookie-btn-settings:hover {
    background: #95a5a6;
    color: white;
    border-color: #95a5a6;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .cookie-banner-title {
        font-size: 1rem;
    }
    
    .cookie-banner-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 14px;
    }
    
    .cookie-banner-title {
        font-size: 0.95rem;
    }
    
    .cookie-banner-description {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

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

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner.slide-in {
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cookie-banner.slide-out {
    animation: slideOutDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
        border-top-color: #3498db;
    }
    
    .cookie-banner-title {
        color: #ecf0f1;
    }
    
    .cookie-banner-description {
        color: #bdc3c7;
    }
}

