.igp-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #ffffff;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #e1e1e1;
    animation: igpCookieSlideUp 0.35s ease-out;
}

@keyframes igpCookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.igp-cookie-banner.is-hiding {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease-in, opacity 0.35s ease-in;
}

.igp-cookie-banner__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.igp-cookie-banner__content {
    flex: 1 1 auto;
    min-width: 0;
}

.igp-cookie-banner__title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1.3;
}

.igp-cookie-banner__text {
    margin: 0 0 6px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #595959;
}

.igp-cookie-banner__text:last-child {
    margin-bottom: 0;
}

.igp-cookie-banner__text a {
    color: #C23016;
    text-decoration: underline;
}

.igp-cookie-banner__text a:hover {
    color: #BA0000;
    text-decoration: none;
}

.igp-cookie-banner__actions {
    flex: 0 0 auto;
}

.igp-cookie-banner__accept {
    display: inline-block;
    padding: 14px 38px;
    background: #BA0000;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.igp-cookie-banner__accept:hover,
.igp-cookie-banner__accept:focus {
    background: #C23016;
    outline: none;
}

@media (max-width: 768px) {
    .igp-cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px 16px;
    }

    .igp-cookie-banner__title {
        font-size: 15px;
    }

    .igp-cookie-banner__text {
        font-size: 12px;
    }

    .igp-cookie-banner__accept {
        width: 100%;
        padding: 14px 20px;
    }
}
