.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    color: #313132;
    padding: 16px 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #e7e7e9;
    display: none;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Ubuntu", "Droid Sans", "Helvetica Neue", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    line-height: 1.42;
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent__text {
    flex: 1 1 320px;
}

.cookie-consent__text a {
    color: #0479e5;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    display: inline-block;
    border-radius: 4px;
    padding: 10px 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.cookie-consent__btn--accept {
    color: #fff;
    background: #0479e5;
    border: 2px solid #0479e5;
}

.cookie-consent__btn--accept:hover {
    background: #0467c4;
    border-color: #0467c4;
}

.cookie-consent__btn--decline {
    color: #313132;
    background-color: transparent;
    border: 2px solid #e7e7e9;
}

.cookie-consent__btn--decline:hover {
    border-color: #c9c9cc;
}

@media (max-width: 480px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__btn {
        flex: 1 1 0;
    }
}
