.analytics-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.analytics-consent__content {
    width: min(100%, 760px);
    display: grid;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    color: #f8fafc;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
    pointer-events: auto;
}

.analytics-consent__icon-wrap {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.analytics-consent__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.analytics-consent__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.analytics-consent__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.analytics-consent__btn {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.analytics-consent__btn {
    border: 1px solid transparent;
    cursor: pointer;
}

.analytics-consent__btn--ghost {
    background: transparent;
    color: #f8fafc;
    border-color: rgba(248, 250, 252, 0.28);
}

.analytics-consent__btn--primary {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 640px) {
    .analytics-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .analytics-consent__content {
        padding: 14px;
        border-radius: 16px;
    }

    .analytics-consent__icon-wrap {
        width: 42px;
        height: 42px;
    }

    .analytics-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .analytics-consent__btn {
        width: 100%;
    }
}
