.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 999999;
    display: none;
    animation: slideIn 0.3s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border-radius: 12px;
    max-width: 420px;
    width: calc(100% - 40px);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cookie-consent-icon {
    font-size: 24px;
}

.cookie-consent-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.cookie-consent-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
}

.cookie-consent-options {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-consent-options.show {
    display: flex;
}

.cookie-consent-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a73e8;
    flex-shrink: 0;
}

.cookie-consent-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-consent-label {
    cursor: pointer;
    flex: 1;
    font-size: 0.85em;
}

.cookie-consent-label strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.cookie-consent-label small {
    color: #666;
    font-size: 0.9em;
}

.cookie-consent-required {
    color: #28a745;
    font-weight: 500;
    font-size: 0.8em;
}

.cookie-consent-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    font-family: inherit;
    flex: 1;
    min-width: 120px;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

.cookie-consent-btn-accept {
    background: #1a73e8;
    color: white;
}

.cookie-consent-btn-accept:hover {
    background: #1557b0;
}

.cookie-consent-btn-reject {
    background: #e8eaed;
    color: #333;
}

.cookie-consent-btn-reject:hover {
    background: #d2d4d7;
}

.cookie-consent-btn-settings {
    background: transparent;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    flex: 0 0 auto;
    min-width: auto;
    padding: 10px;
}

.cookie-consent-btn-settings:hover {
    background: #e8f0fe;
}

.cookie-consent-link {
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.85em;
    margin-top: 8px;
    display: inline-block;
}

.cookie-consent-link:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 12px 12px 0 0;
        animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .cookie-consent-title {
        font-size: 1em;
    }

    .cookie-consent-description {
        font-size: 0.85em;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
        min-width: auto;
    }
}
