
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: 24px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    max-width: 500px;
    margin-left: auto;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-icon {
    color: #3b82f6;
    flex-shrink: 0;
    padding-top: 2px;
}

.cookie-svg {
    width: 24px;
    height: 24px;
}

.cookie-text-container {
    flex: 1;
}

.cookie-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-family: 'Onest', sans-serif;
}

.cookie-description {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    font-family: 'Onest', sans-serif;
}

.cookie-description a {
    color: #3b82f6;
    text-decoration: underline;
}

.cookie-description a:hover {
    color: #60a5fa;
}

.cookie-close {
    background: transparent;
    border: none;
    color: #a3a3a3;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.cookie-close:hover {
    color: white;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Onest', sans-serif;
}

.cookie-accept {
    background-color: #00B2E3; /* Cyan-ish color from your branding */
    color: white;
    border: none;
}

.cookie-accept:hover {
    background-color: #009ac4;
}

@media (max-width: 640px) {
    .cookie-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        margin: 0;
    }
}
