.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9999;
    background: #fff;
    border: 1px solid rgba(18, 24, 40, 0.10);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(91, 92, 240, 0.15);
    padding: 1.25rem 1.25rem 1rem;
    max-width: min(340px, calc(100vw - 3rem));
    width: calc(100vw - 3rem);
}

.cookie-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner__text {
    flex: 1;
    min-width: 240px;
    font-size: 0.875rem;
    color: #667085;
    margin: 0;
}

.cookie-banner__text a {
    color: #5b5cf0;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
}

.cookie-btn--accept {
    background: #5b5cf0;
    color: #fff;
}

.cookie-btn--accept:hover {
    background: #4748d8;
}

.cookie-btn--reject {
    background: transparent;
    color: #667085;
    border: 1px solid rgba(18, 24, 40, 0.15);
}

.cookie-btn--reject:hover {
    background: rgba(18, 24, 40, 0.05);
}
