.iy-cookie-consent {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 99999;
    display: flex;
    gap: 16px;
    align-items: center;
    width: min(620px, calc(100vw - 32px));
    padding: 16px;
    color: #333;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    font-size: 14px;
    line-height: 1.45;
    box-sizing: border-box;
}

.iy-cookie-consent *,
.iy-cookie-consent *::before,
.iy-cookie-consent *::after {
    box-sizing: border-box;
}

.iy-cookie-consent__text {
    flex: 1 1 auto;
}

.iy-cookie-consent__text a {
    color: #e95f45;
    font-weight: 600;
    text-decoration: none;
}

.iy-cookie-consent__text a:hover {
    text-decoration: underline;
}

.iy-cookie-consent__actions {
    display: flex;
    flex: 0 0 150px;
    flex-direction: column;
    gap: 8px;
}

.iy-cookie-consent__button {
    width: 100%;
    min-height: 40px;
    padding: 9px 14px;
    color: #fff;
    background: #4d82ee;
    border: 1px solid #4d82ee;
    border-radius: 4px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
}

.iy-cookie-consent__button:hover {
    background: #e95f45;
    border-color: #e95f45;
}

.iy-cookie-consent__button--secondary {
    color: #555;
    background: #fff;
    border-color: #d8d8d8;
    font-weight: 600;
}

.iy-cookie-consent__button--secondary:hover {
    color: #333;
    background: #f7f7f7;
    border-color: #bbb;
}

@media (max-width: 640px) {
    .iy-cookie-consent {
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: none;
        padding: 14px 16px 16px;
        border-radius: 0;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
    }

    .iy-cookie-consent__actions {
        flex-basis: auto;
    }

    .iy-cookie-consent__button {
        min-height: 42px;
    }
}
