.home2-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99990;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
}

.home2-cookie-banner.is-hidden {
    display: none;
}

.home2-cookie-banner__inner {
    pointer-events: auto;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px 18px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 176, 32, 0.28);
    background: linear-gradient(180deg, rgba(18, 20, 28, 0.98) 0%, rgba(10, 11, 16, 0.98) 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.home2-cookie-banner__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 176, 32, 0.12);
    color: #ffb020;
    flex-shrink: 0;
}

.home2-cookie-banner__icon svg {
    width: 22px;
    height: 22px;
}

.home2-cookie-banner__title {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffb020;
}

.home2-cookie-banner__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.home2-cookie-banner__text a {
    color: #ffb020;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home2-cookie-banner__text a:hover {
    color: #fcd34d;
}

.home2-cookie-banner__actions {
    flex-shrink: 0;
}

.home2-cookie-banner__btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffb020 0%, #f59e0b 100%);
    color: #111;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home2-cookie-banner__btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 176, 32, 0.28);
}

.home2-cookie-banner__btn:disabled {
    opacity: 0.72;
    cursor: wait;
}

body.home2-cookie-banner-visible {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 767px) {
    .home2-cookie-banner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home2-cookie-banner__inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .home2-cookie-banner__actions {
        grid-column: 1 / -1;
    }

    .home2-cookie-banner__btn {
        width: 100%;
    }

    body.home2-cookie-banner-visible {
        padding-bottom: calc(148px + env(safe-area-inset-bottom, 0px));
    }
}
