.cookie-consent {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: #fff;
    border: 1px solid #E6E8EC;
    border-radius: 16px;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 20px;
    max-width: 773px;
    width: calc(100% - 32px);
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    font-family: 'Inter', sans-serif;
}

.cookie-consent.is-visible {
    display: flex;
}

.cookie-consent__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.cookie-consent__icon img {
    width: 32px;
    height: 32px;
}

.cookie-consent__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.cookie-consent__text {
    margin: 0;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: #111827;
    flex: 1;
}

.cookie-consent__text a {
    color: #127BE9;
    text-decoration: none;
}

.cookie-consent__text a:hover {
    text-decoration: underline;
}

.cookie-consent__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22px;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cookie-consent__btn:hover {
    opacity: 0.85;
}

.cookie-consent__btn--accept {
    background: #127BE9;
    color: #fff;
    border-radius: 8px;
    padding: 9px 16px;
    font-weight: 500;
}

.cookie-consent__btn--decline {
    background: #F0F2F5;
    color: #111827;
    border-radius: 8px;
    padding: 9px 16px;
    font-weight: 400;
}

/* Mobile */
@media (max-width: 767px) {
    .cookie-consent {
        bottom: 16px;
        border-radius: 12px;
        padding: 16px 20px 16px 16px;
        gap: 16px;
        max-width: 400px;
        flex-direction: row;
        align-items: flex-start;
        box-shadow: 0px -10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .cookie-consent__icon {
        padding: 8px 0;
    }

    .cookie-consent__icon img {
        width: 28px;
        height: 28px;
    }

    .cookie-consent__body {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .cookie-consent__text {
        font-size: 14px;
        line-height: 20px;
    }

    .cookie-consent__btn {
        font-size: 14px;
        line-height: 20px;
    }

    .cookie-consent__btn--accept {
        border-radius: 6px;
        padding: 6px 16px;
    }

    .cookie-consent__btn--decline {
        border-radius: 6px;
        padding: 5px 12px;
    }
}
