/* Erkan Cookie Consent Plugin Styles */

#cc-banner {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#cc-banner-inner {
    animation: cc-slide-in 0.35s cubic-bezier(.4,2,.6,1) forwards !important;
}

@keyframes cc-slide-in {
    from {
        transform: translateX(-50%) translateY(100px) !important;
        opacity: 0 !important;
    }
    to {
        transform: translateX(-50%) translateY(0) !important;
        opacity: 1 !important;
    }
}

#cc-banner button {
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#cc-banner button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#cc-banner #cc-reject:hover,
#cc-banner #cc-settings:hover,
#cc-banner #cc-close:hover {
    background: #f5f5f5 !important;
    border-color: #d0d0d0 !important;
}

#cc-banner #cc-accept:hover,
#cc-banner #cc-save:hover {
    background: rgb(20, 150, 200) !important;
}

#cc-banner label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    font-size: 0.95rem;
}

#cc-banner label input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

#cc-banner label input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#cc-banner a {
    color: #b79b73;
    text-decoration: underline;
    transition: color 0.2s;
}

#cc-banner a:hover {
    color: #8a7a56;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    #cc-banner-inner {
        width: calc(100vw - 40px) !important;
        padding: 24px 20px !important;
        bottom: 10px !important;
    }
    
    #cc-banner-inner p {
        font-size: 0.9rem !important;
    }
    
    #cc-banner button {
        font-size: 0.85rem !important;
        padding: 10px 14px !important;
    }
    
    #cc-banner-inner > div > div {
        flex-direction: column !important;
    }
    
    #cc-banner button {
        width: 100%;
    }
}

/* Print style */
@media print {
    #cc-banner {
        display: none !important;
    }
}
