/* Cookie Consent Plugin Custom Styles */

/* Cookie consent popup özelleştirmeleri */
.cc-window {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    z-index: 999999;
}

.cc-window.cc-banner {
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin: 10px;
}

.cc-window.cc-floating {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Buton stilleri */
.cc-btn {
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    outline: none;
}

.cc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cc-btn:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Dismiss butonu */
.cc-dismiss {
    background-color: #f1d600;
    color: #000000;
    border: 1px solid #f1d600;
}

.cc-dismiss:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000000;
}

/* Link butonu */
.cc-link {
    color: #ffffff;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
}

.cc-link:hover {
    color: #f1d600;
    text-decoration: none;
}

/* Mesaj metni */
.cc-message {
    margin-bottom: 10px;
    color: #ffffff;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .cc-window.cc-banner {
        margin: 5px;
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .cc-btn {
        padding: 6px 12px;
        font-size: 13px;
        margin-top: 8px;
    }
    
    .cc-message {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .cc-window.cc-banner {
        margin: 5px;
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .cc-btn {
        padding: 5px 10px;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 6px;
    }
}

/* Tema özelleştirmeleri */
.cc-window.cc-theme-block {
    border-radius: 8px;
}

.cc-window.cc-theme-edgeless {
    border-radius: 0;
}

.cc-window.cc-theme-classic {
    border-radius: 4px;
}

.cc-window.cc-theme-wire {
    border: 2px solid #f1d600;
    background: transparent;
}

/* Pozisyon özelleştirmeleri */
.cc-window.cc-bottom {
    bottom: 20px;
}

.cc-window.cc-top {
    top: 20px;
}

.cc-window.cc-bottom-left {
    bottom: 20px;
    left: 20px;
}

.cc-window.cc-bottom-right {
    bottom: 20px;
    right: 20px;
}

.cc-window.cc-top-left {
    top: 20px;
    left: 20px;
}

.cc-window.cc-top-right {
    top: 20px;
    right: 20px;
}

/* Animasyonlar */
.cc-window {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cc-window.cc-top {
    animation: slideInTop 0.5s ease-out;
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .cc-window {
        background-color: #1a1a1a !important;
        color: #ffffff !important;
    }
    
    .cc-message {
        color: #ffffff !important;
    }
    
    .cc-link {
        color: #f1d600 !important;
    }
}

/* Yüksek kontrast modu */
@media (prefers-contrast: high) {
    .cc-window {
        border: 2px solid #ffffff;
    }
    
    .cc-btn {
        border: 2px solid currentColor;
    }
}

/* Animasyonları azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    .cc-window {
        animation: none;
    }
    
    .cc-btn {
        transition: none;
    }
    
    .cc-btn:hover {
        transform: none;
    }
}
