.cla-cookie-consent {
    position: fixed;
    z-index: 99999;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
    background: #2B3680;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 576px) {
    .cla-cookie-consent {
        left: auto;
        right: 20px;
        bottom: 20px;
        margin: 0;
    }
}

.cla-cookie-consent--visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.cla-cookie-consent--dismissed {
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
}

.cla-cookie-consent__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.cla-cookie-consent__text a {
    color: #F2D300;
    text-decoration: underline;
}

.cla-cookie-consent__actions {
    display: flex;
    justify-content: flex-end;
}

.cla-cookie-consent__accept {
    appearance: none;
    border: none;
    cursor: pointer;
    background: #F2D300;
    color: #1a1f4d;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 6px;
    transition: filter 0.15s ease;
}

.cla-cookie-consent__accept:hover,
.cla-cookie-consent__accept:focus-visible {
    filter: brightness(1.08);
}
