.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 120px);
    width: min(880px, calc(100% - 32px));
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .45s cubic-bezier(.22, 1, .36, 1)
}

.cookie-banner.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible
}

.cookie-banner.hide {
    transform: translate(-50%, 120px);
    opacity: 0
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .12), 0 6px 20px rgba(37, 99, 235, .08)
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1
}

.cookie-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--card-purple);
    color: #fff;
    box-shadow: 0 15px 35px rgba(37, 99, 235, .28)
}

.cookie-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2
}

.cookie-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main)
}

.cookie-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary)
}

.cookie-desc a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600
}

.cookie-desc a:hover {
    text-decoration: underline
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center
}

.cookie-btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: .3s
}

.cookie-btn svg {
    width: 18px;
    height: 18px
}

.cookie-decline {
    background: #fff;
    color: var(--orange-bright);
    border: 1px solid var(--border-color)
}

.cookie-decline:hover {
    background: var(--bg-soft)
}

.cookie-accept {
    border: none;
    color: #fff;
    background: var(--card-purple);
    box-shadow: 0 18px 35px rgba(37, 99, 235, .28)
}

.cookie-accept:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 24px 40px rgba(37, 99, 235, .35)
}

@media(max-width:768px) {
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 20px)
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        gap: 18px
    }

    .cookie-content {
        width: 100%
    }

    .cookie-actions {
        width: 100%
    }

    .cookie-btn {
        flex: 1
    }
}