/* Cookie Consent Styles for AiSash */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: rgba(11, 17, 33, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    z-index: 100000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: none;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.cookie-consent-banner h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    color: #00ccff;
}

.cookie-consent-banner p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-consent-banner p a {
    color: #00ccff;
    text-decoration: none;
}

.cookie-consent-banner p a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00ccff, #0088cc);
    color: #0b1121;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3);
}

/* Reject button — same visual weight as Accept (DSGVO requirement) */
.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.cookie-btn-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 13px;
    padding: 10px 12px;
}

.cookie-btn-settings:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Settings panel */
.cookie-settings-panel {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-category {
    margin-bottom: 14px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ccff;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: default;
}

.cookie-toggle-label {
    user-select: none;
}

.cookie-category-desc {
    margin: 4px 0 0 26px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.cookie-settings-panel .cookie-btn {
    margin-top: 12px;
    width: 100%;
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 20px;
    }
    .cookie-consent-buttons {
        flex-direction: column;
    }
}
