/* Çerez Banner Stilleri */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    color: var(--text-color);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

.cookie-banner-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-info-link {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-info-link:hover {
    opacity: 0.8;
}

.cookie-accept-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.cookie-accept-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

/* Modal Stilleri */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.cookie-modal h2 {
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 700;
}

.cookie-modal h3 {
    color: var(--primary-color);
    margin: 20px 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-modal p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.cookie-modal ul {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.cookie-modal-close {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.cookie-modal-close:hover {
    background: var(--primary-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 20px;
        padding: 20px;
    }
}